diff options
author | Oyvind Repvik <nail@nslu2-linux.org> | 2005-07-19 15:10:57 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-07-19 15:10:57 +0000 |
commit | 9de11cb504b6552a72c135a6d221fd24235884f4 (patch) | |
tree | 98ae0480b772ede5f633b686734a3a72c52e7461 /packages/linux | |
parent | 01c623131aff75c317c40d4c3aaabcfb1e264d99 (diff) | |
parent | b992eedcc577867859d8ae2757a2a06f1b7b6460 (diff) |
merge of 71af6d6609e0de2507d7cd21adfb7e2c18454ef4
and fd2bac75affd95bc23ea64c23ecb07ebd31313e8
Diffstat (limited to 'packages/linux')
-rw-r--r-- | packages/linux/nslu2-kernel.inc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/packages/linux/nslu2-kernel.inc b/packages/linux/nslu2-kernel.inc index 44f466ef49..f5d7135c88 100644 --- a/packages/linux/nslu2-kernel.inc +++ b/packages/linux/nslu2-kernel.inc @@ -211,10 +211,12 @@ inherit kernel ARCH = "arm" KERNEL_IMAGETYPE = "zImage" -# To specify the console set KERNEL_CONSOLE in the .bb -# file. The default is currently set in machine/nslu2.conf +# To specify the console set KERNEL_CONSOLE in the .bb file. +# CMDLINE_ROOT contains the boot options CMDLINE_ROOT ?= "root=/dev/mtdblock4 rw rootfstype=jffs2 mem=32M@0x00000000 init=/linuxrc reboot=s" -CMDLINE = "${CMDLINE_ROOT} ${CMDLINE_CONSOLE}" +# Add distro specific debug (or non-debug) options to this +CMDLINE_DEBUG ?= "" +CMDLINE = "${CMDLINE_ROOT} ${CMDLINE_DEBUG} ${CMDLINE_CONSOLE}" # Add the architecture compiler flags to KERNEL_CC and KERNEL_LD as # required. Notice that this has to be done for each separately built |