aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-bsp
diff options
context:
space:
mode:
authorRadu Moisan <radu.moisan@intel.com>2012-07-19 14:59:52 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-07-19 17:02:55 +0100
commite18c59eb5a61f265b9cad6de68359fa1430b0e58 (patch)
treef0050e4f22977f8eb479daecb06f945ebd7bfbe6 /meta/recipes-bsp
parent71907775f601f0a48b995cc3277b61645d2e5068 (diff)
downloadopenembedded-core-e18c59eb5a61f265b9cad6de68359fa1430b0e58.tar.gz
Add console kernel options
Live image installer did not preserve BSP specified console= kernel parameter. This patch updates the init scripts that are responsible for grub.cfg creation so that options like console= are passed allong from installer to installed img [YOCTO #2426] Signed-off-by: Radu Moisan <radu.moisan@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp')
-rwxr-xr-xmeta/recipes-bsp/grub/grub-1.99/40_custom2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-bsp/grub/grub-1.99/40_custom b/meta/recipes-bsp/grub/grub-1.99/40_custom
index 0d80854778..ba488308b6 100755
--- a/meta/recipes-bsp/grub/grub-1.99/40_custom
+++ b/meta/recipes-bsp/grub/grub-1.99/40_custom
@@ -5,5 +5,5 @@ exec tail -n +3 $0
# the 'exec tail' line above.
menuentry "Linux" {
set root=(hd0,1)
- linux /boot/vmlinuz root=__ROOTFS__ rw __VIDEO_MODE__ __VGA_MODE__ quiet
+ linux /boot/vmlinuz root=__ROOTFS__ rw __CONSOLE__ __VIDEO_MODE__ __VGA_MODE__ quiet
}