diff options
author | Jan Lübbe <jluebbe@debian.org> | 2008-01-18 02:48:44 +0000 |
---|---|---|
committer | Jan Lübbe <jluebbe@debian.org> | 2008-01-18 02:48:44 +0000 |
commit | 9e11b73d7e75114f625b2348fdbf91faf37309c8 (patch) | |
tree | a8998ff2ffe0f2588d1bef843840299e1c1858f2 /packages/linux | |
parent | 58948b0f9e5b8694748e1f1f1019290eb56c102f (diff) |
chumby-kernel: allow booting from USB disks (/dev/sda1)
Diffstat (limited to 'packages/linux')
-rw-r--r-- | packages/linux/chumby-kernel/defconfig | 4 | ||||
-rw-r--r-- | packages/linux/chumby-kernel_2.6.16-chumby-1.2.bb | 9 |
2 files changed, 6 insertions, 7 deletions
diff --git a/packages/linux/chumby-kernel/defconfig b/packages/linux/chumby-kernel/defconfig index db836c1561..9606510d9f 100644 --- a/packages/linux/chumby-kernel/defconfig +++ b/packages/linux/chumby-kernel/defconfig @@ -1004,8 +1004,8 @@ CONFIG_USB_MON=y # # File systems # -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set +CONFIG_EXT2_FS=y +CONFIG_EXT3_FS=y # CONFIG_REISERFS_FS is not set # CONFIG_JFS_FS is not set # CONFIG_FS_POSIX_ACL is not set diff --git a/packages/linux/chumby-kernel_2.6.16-chumby-1.2.bb b/packages/linux/chumby-kernel_2.6.16-chumby-1.2.bb index 89546e0bf9..37fe9f1a4e 100644 --- a/packages/linux/chumby-kernel_2.6.16-chumby-1.2.bb +++ b/packages/linux/chumby-kernel_2.6.16-chumby-1.2.bb @@ -17,13 +17,12 @@ COMPATIBLE_HOST = 'arm.*-linux' ARCH = "arm" -#CMDLINE_CONSOLE ?= "ttyS0,115200n8" -#CMDLINE_ROOT = "root=/dev/slug rootfstype=ext2,jffs2 initrd=0x01000000,10M mem=32M@0x00000000" -#CMDLINE_ROOT = "root=/dev/ram0 rw rootfstype=ext2,jffs2 initrd=0x01000000,10M init=/linuxrc mem=32M@0x00000000" -#CMDLINE_ROOT = "root=/dev/mtdblock2 rootfstype=jffs2 console=ttyS0,115200 mem=64M" -#CMDLINE = "${CMDLINE_ROOT} ${CMDLINE_CONSOLE}" +# Use this CMDLINE for booting from RootFS 1 on the internal flash (22MB) CMDLINE = "console=ttyS0,38400 root=/dev/mtdblock5 rootfstype=jffs2 psplash=false" +# Use this CMDLINE for booting from the first partition of an USB disk +#CMDLINE = "console=ttyS0,38400 root=/dev/sda1 rootfstype=ext2 rootdelay=8 psplash=false" + COMPATIBLE_MACHINE = "chumby" module_autoload_chumby_accel = "chumby_accel" |