diff options
author | Andrea Adami <andrea.adami@gmail.com> | 2010-11-01 16:56:37 +0100 |
---|---|---|
committer | Andrea Adami <andrea.adami@gmail.com> | 2010-11-01 16:56:37 +0100 |
commit | 28f78abeed4e1e98b1395d87300f63ce0d4129ae (patch) | |
tree | 1831d1b4b8ea2c0bad6fdc064b47d32bc2ba594b /recipes/linux/linux-kexecboot.inc | |
parent | 515c1ce1fcad8d83c74d75cff000df59c77e0139 (diff) | |
download | openembedded-28f78abeed4e1e98b1395d87300f63ce0d4129ae.tar.gz |
linux-kexecboot.inc: define explicitely the custom defconfig for this kernel
* set master console on serial
* add the quiet/debug command line tag
* (all could be just done in the defconfig, is left here as example)
Diffstat (limited to 'recipes/linux/linux-kexecboot.inc')
-rw-r--r-- | recipes/linux/linux-kexecboot.inc | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/recipes/linux/linux-kexecboot.inc b/recipes/linux/linux-kexecboot.inc index 5f2aaf0a25..32d6f4b5ae 100644 --- a/recipes/linux/linux-kexecboot.inc +++ b/recipes/linux/linux-kexecboot.inc @@ -1,5 +1,5 @@ # We set INC_PR here, since a change in the kexecboot recipe will need to get picked up by *all* the kernels: -INC_PR = "r23" +INC_PR = "r24" LOGO_SIZE ?= "." SRC_URI = "file://${LOGO_SIZE}/logo_linux_clut224.ppm.bz2" @@ -10,12 +10,13 @@ require linux.inc INITRAMFS_IMAGE = "initramfs-kexecboot-klibc-image" # here we set master console on serial -CMDLINE = "console=tty1 console=ttyS0,115200n8" -CMDLINE_poodle = "console=tty1 console=ttyS0,115200n8 fbcon=rotate:1" -CMDLINE_akita = "console=tty1 console=ttyS0,115200n8 fbcon=rotate:1" -CMDLINE_collie = "console=tty1 console=ttySA0,115200n8 fbcon=rotate:1 mem=64M" -CMDLINE_spitz = "console=tty1 console=ttyS0,115200n8 fbcon=rotate:1" -CMDLINE_hx4700 = "console=tty1 console=ttyS0,115200n8 fbcon=rotate:1" +CMDLINE_c7x0 = "console=tty1 console=ttyS0,115200n8 ${CMDLINE_DEBUG}" +CMDLINE_tosa = "console=tty1 console=ttyS0,115200n8 ${CMDLINE_DEBUG}" +CMDLINE_poodle = "console=tty1 console=ttyS0,115200n8 fbcon=rotate:1 ${CMDLINE_DEBUG}" +CMDLINE_akita = "console=tty1 console=ttyS0,115200n8 fbcon=rotate:1 ${CMDLINE_DEBUG}" +CMDLINE_collie = "console=tty1 console=ttySA0,115200n8 fbcon=rotate:1 mem=64M ${CMDLINE_DEBUG}" +CMDLINE_spitz = "console=tty1 console=ttyS0,115200n8 fbcon=rotate:1 ${CMDLINE_DEBUG}" +CMDLINE_hx4700 = "console=tty1 console=ttyS0,115200n8 fbcon=rotate:1 ${CMDLINE_DEBUG}" PACKAGES = "" PROVIDES = "" |