diff options
author | Chris Larson <clarson@kergoth.com> | 2004-09-23 16:16:49 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-09-23 16:16:49 +0000 |
commit | 172dc9c3f14d6e4bed1e34555cde13812eb05ec8 (patch) | |
tree | 6a25fd196c29ac2d00dd508dbba6149c794e9d4f | |
parent | a9776df791f31788c0af6a63bd9a638e28c6f4ca (diff) |
Merge
2004/09/20 15:01:22+09:30 (none)!rwhitby
Change the order of CMDLINE_ROOT and CMDLINE_CONSOLE to match the stock Linksys CMDLINE.
BKrev: 4152f6f1TH_1wqXUZJV7x_5lhiSAoA
-rw-r--r-- | linux/linux-nslu2_2.4.22.oe | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/linux-nslu2_2.4.22.oe b/linux/linux-nslu2_2.4.22.oe index 6d45ad1540..f3fb4962bf 100644 --- a/linux/linux-nslu2_2.4.22.oe +++ b/linux/linux-nslu2_2.4.22.oe @@ -21,9 +21,9 @@ inherit kernel ARCH = "arm" KERNEL_IMAGETYPE = "zImage" -CMDLINE_CONSOLE ?= "ttyS0,115200n8" +CMDLINE_CONSOLE ?= "ttyS0,115200" CMDLINE_ROOT = "root=/dev/ram0 initrd=0x01000000,10M mem=32M@0x00000000" -CMDLINE = "${CMDLINE_ROOT} ${CMDLINE_CONSOLE}" +CMDLINE = "${CMDLINE_CONSOLE} ${CMDLINE_ROOT}" do_configure_prepend() { install -m 0644 ${WORKDIR}/defconfig ${S}/.config |