root/floppyfw/devkitstuff/Readme.devkit

Revision 214, 1.3 KB (checked in by root, 5 years ago)

Made sure make from scratch works.

Line 
1
2# $Id: Readme,v 1.3 2004/08/31 18:03:24 thomasez Exp $
3
4Step by step on how to create your own floppyfw development filesyetem:
5
61) chroot into the file system
7
8# chroot .
9
10If you get a new prompt, it worked. you should now have the devkit
11directory as the root.
12
132) run
14
15# ./initroot.sh
16
173) Edit /etc/resolv.conf to point at your name server.
18
194) Want a different keymap? they are in /usr/lib/Keymaps/i386
20
21# loadkmap < /usr/lib/Keymaps/i386/qwerty/no-latin1.bmap
22
23Change the keymap to something to your liking.
24
25--
26
27Building:
28
29For the development version (HEAD or trunk):
30
31# svn co http://www.zelow.no/svn/floppyfw
32
33# cd floppyfw
34
35If you want to work on the 3.0 series:
36
37# svn co http://www.zelow.no/svn/floppyfw-3.0
38
39# cd floppyfw-3.0
40
41On the new dev series, do:
42
43# make menuconfig
44
45and find out if it looks OK to you or needs to be changed.
46
47If you want to change something on the 3.0 series you can edit the Makefile.
48
49So, start building:
50
51# make
52
53and then;
54
55floppy:
56
57# make floppyimage
58
59ISO/CD:
60
61# make isoimage
62
63USB/FLash:
64
65# make flashimage
66
67Soekris:
68
69# make soekrisimage
70
71Complete release (basically everything):
72
73# make release
74
75If you feel like having your own special kernel config, give it another name in the config directory and then do a "make linux-menuconfig" and you will be able to make the config and it will replace the existing one.
76
77Have fun.
78Thomas.
Note: See TracBrowser for help on using the browser.