沒有載入根檔案系統
-------------------------------------------
問題:
Please append a correct "root=" boot option
Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(1,0)
Warning: unable to open an initial console.
-------------------------------------------
在ramdisk中建立console和null即可
# mount -o loop ramdisk /mnt
# mkdir /mnt/dev
# cd /mnt/dev
# mknod -m 660 console c 5 1
# mknod -m 660 null c 1 3
Starting pid 750, console /dev/console: '/etc/init.d/rcS'
Bummer, could not run '/etc/init.d/rcS': No such file or directory
Bummer, could not run '/etc/init.d/rcS': No such file or directory
-------------------------------------------
ramdisk的製作不完善!
# mount -o loop ramdisk /mnt/
# mkdir /mnt/etc/
# cp -r busybox-1.1.2/examples/bootfloppy/etc/init.d/ /mnt/etc/