Changes between Version 1 and Version 2 of howto/Embedded
- Timestamp:
- 04/14/10 14:24:06 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
howto/Embedded
v1 v2 33 33 bzImage initrd.gz install.iso 34 34 35 [Syn-3] root@kantoor2.datux.nl /home/shares/tftp# cat boot.txt 36 37 _/_/_/ _/ _/ _/ _/ _/_/_/ 38 _/ _/ _/ _/_/ _/ _/ 39 _/_/ _/ _/ _/ _/ _/_/_/_/_/ _/_/ 40 _/ _/ _/ _/_/ _/ 41 _/_/_/ _/ _/ _/ _/_/_/ 42 43 ENTERPRISE LINUX 44 Network boot 45 46 Please choose your boot method below: 47 embedded Boot installer for embedded devices (serial 38400,8,n,1) 48 normal Boot installer for normal pc's 49 bko Boot via http://boot.kernel.org 50 35 51 }}} 36 52 … … 41 57 Zorg dat guest/guest-account bij tftp samba share kan. 42 58 59 Via SCC dhcp aanpassen zodat hij bootp doet en pxelinux.0 laad. 43 60 61 Pas grub aan na 1e boot 62 {{{ 63 [Syn-3] root@darkstar.example.net /boot/grub# cat menu.lst 64 serial --unit=0 --speed=38400 65 terminal serial 66 timeout 10 67 default saved 44 68 69 title Normal boot 70 root (hd0,0) 71 savedefault 0 72 kernel /bzImage console=ttyS0,38400 root=/dev/ram0 init=/linuxrc ramdisk_size=64000 73 initrd /initrd.gz 45 74 75 title Test new kernel 76 root (hd0,0) 77 savedefault 0 78 kernel /bzImage.test console=ttyS0,38400 root=/dev/ram0 init=/linuxrc ramdisk_size=64000 79 initrd /initrd.gz.test 46 80 81 title Use safemode kernel (use with caution!) 82 root (hd0,0) 83 savedefault 0 84 kernel /bzImage.safe console=ttyS0,38400 root=/dev/ram0 init=/linuxrc ramdisk_size=64000 85 initrd /initrd.gz.safe 86 }}} 47 87 48