|
Revision 207, 1.0 KB
(checked in by root, 6 years ago)
|
|
Add svn link to 3.0 and development trees.
|
| Line | |
|---|
| 1 | |
|---|
| 2 | # $Id: Readme,v 1.3 2004/08/31 18:03:24 thomasez Exp $ |
|---|
| 3 | |
|---|
| 4 | Step by step on how to create your own floppyfw development filesyetem: |
|---|
| 5 | |
|---|
| 6 | 1) chroot into the file system |
|---|
| 7 | |
|---|
| 8 | 2) run ./initroot.sh |
|---|
| 9 | |
|---|
| 10 | 3) Edit /etc/resolv.conf to point at your name server. |
|---|
| 11 | |
|---|
| 12 | 4) Want a different keymap? they are in /usr/lib/Keymaps/i386 |
|---|
| 13 | |
|---|
| 14 | loadkmap < /usr/lib/Keymaps/i386/qwerty/no-latin1.bmap |
|---|
| 15 | |
|---|
| 16 | Change the keymap to something to your liking. |
|---|
| 17 | |
|---|
| 18 | Building: |
|---|
| 19 | |
|---|
| 20 | For the development version (HEAD or trunk): |
|---|
| 21 | |
|---|
| 22 | svn co http://www.zelow.no/svn/floppyfw |
|---|
| 23 | |
|---|
| 24 | If you want to work on the 3.0 series: |
|---|
| 25 | |
|---|
| 26 | svn co http://www.zelow.no/svn/floppyfw-3.0 |
|---|
| 27 | |
|---|
| 28 | cd floppyfw |
|---|
| 29 | |
|---|
| 30 | make |
|---|
| 31 | |
|---|
| 32 | and then; |
|---|
| 33 | |
|---|
| 34 | floppy: |
|---|
| 35 | |
|---|
| 36 | make floppyimage |
|---|
| 37 | |
|---|
| 38 | ISO/CD: |
|---|
| 39 | |
|---|
| 40 | make isoimage |
|---|
| 41 | |
|---|
| 42 | USB/FLash: |
|---|
| 43 | |
|---|
| 44 | make flashimage |
|---|
| 45 | |
|---|
| 46 | Soekris: |
|---|
| 47 | |
|---|
| 48 | make soekrisimage |
|---|
| 49 | |
|---|
| 50 | Complete release: |
|---|
| 51 | |
|---|
| 52 | make release |
|---|
| 53 | |
|---|
| 54 | If you feel like having your own special kernel config, give it another name in the config and then do a "make linux-menuconfig" and you will be able to make the config and it will replace the existing one. |
|---|
| 55 | |
|---|
| 56 | Have fun. |
|---|
| 57 | Thomas. |
|---|