|
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 | |
|---|
| 4 | Step by step on how to create your own floppyfw development filesyetem: |
|---|
| 5 | |
|---|
| 6 | 1) chroot into the file system |
|---|
| 7 | |
|---|
| 8 | # chroot . |
|---|
| 9 | |
|---|
| 10 | If you get a new prompt, it worked. you should now have the devkit |
|---|
| 11 | directory as the root. |
|---|
| 12 | |
|---|
| 13 | 2) run |
|---|
| 14 | |
|---|
| 15 | # ./initroot.sh |
|---|
| 16 | |
|---|
| 17 | 3) Edit /etc/resolv.conf to point at your name server. |
|---|
| 18 | |
|---|
| 19 | 4) Want a different keymap? they are in /usr/lib/Keymaps/i386 |
|---|
| 20 | |
|---|
| 21 | # loadkmap < /usr/lib/Keymaps/i386/qwerty/no-latin1.bmap |
|---|
| 22 | |
|---|
| 23 | Change the keymap to something to your liking. |
|---|
| 24 | |
|---|
| 25 | -- |
|---|
| 26 | |
|---|
| 27 | Building: |
|---|
| 28 | |
|---|
| 29 | For the development version (HEAD or trunk): |
|---|
| 30 | |
|---|
| 31 | # svn co http://www.zelow.no/svn/floppyfw |
|---|
| 32 | |
|---|
| 33 | # cd floppyfw |
|---|
| 34 | |
|---|
| 35 | If 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 | |
|---|
| 41 | On the new dev series, do: |
|---|
| 42 | |
|---|
| 43 | # make menuconfig |
|---|
| 44 | |
|---|
| 45 | and find out if it looks OK to you or needs to be changed. |
|---|
| 46 | |
|---|
| 47 | If you want to change something on the 3.0 series you can edit the Makefile. |
|---|
| 48 | |
|---|
| 49 | So, start building: |
|---|
| 50 | |
|---|
| 51 | # make |
|---|
| 52 | |
|---|
| 53 | and then; |
|---|
| 54 | |
|---|
| 55 | floppy: |
|---|
| 56 | |
|---|
| 57 | # make floppyimage |
|---|
| 58 | |
|---|
| 59 | ISO/CD: |
|---|
| 60 | |
|---|
| 61 | # make isoimage |
|---|
| 62 | |
|---|
| 63 | USB/FLash: |
|---|
| 64 | |
|---|
| 65 | # make flashimage |
|---|
| 66 | |
|---|
| 67 | Soekris: |
|---|
| 68 | |
|---|
| 69 | # make soekrisimage |
|---|
| 70 | |
|---|
| 71 | Complete release (basically everything): |
|---|
| 72 | |
|---|
| 73 | # make release |
|---|
| 74 | |
|---|
| 75 | If 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 | |
|---|
| 77 | Have fun. |
|---|
| 78 | Thomas. |
|---|