diff options
author | Tom Zanussi <tom.zanussi@intel.com> | 2011-09-14 13:44:29 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-09-15 11:21:44 +0100 |
commit | ccd2148e686f93518dc1a80376f7ddb24587a3da (patch) | |
tree | 312fef935498f949517e10aef4278945ff7c0099 /meta/recipes-bsp/grub/grub-1.99/40_custom | |
parent | c67d03eb3684acab89e5972609e397087727e74e (diff) | |
download | openembedded-core-ccd2148e686f93518dc1a80376f7ddb24587a3da.tar.gz openembedded-core-ccd2148e686f93518dc1a80376f7ddb24587a3da.tar.bz2 openembedded-core-ccd2148e686f93518dc1a80376f7ddb24587a3da.zip |
grub2: new recipe
This adds the grub-1.98 from meta-intel while upgrading it to 1.99.
Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
Diffstat (limited to 'meta/recipes-bsp/grub/grub-1.99/40_custom')
-rwxr-xr-x | meta/recipes-bsp/grub/grub-1.99/40_custom | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/meta/recipes-bsp/grub/grub-1.99/40_custom b/meta/recipes-bsp/grub/grub-1.99/40_custom new file mode 100755 index 0000000000..0d80854778 --- /dev/null +++ b/meta/recipes-bsp/grub/grub-1.99/40_custom @@ -0,0 +1,9 @@ +#!/bin/sh +exec tail -n +3 $0 +# This file provides an easy way to add custom menu entries. Simply type the +# menu entries you want to add after this comment. Be careful not to change +# the 'exec tail' line above. +menuentry "Linux" { + set root=(hd0,1) + linux /boot/vmlinuz root=__ROOTFS__ rw __VIDEO_MODE__ __VGA_MODE__ quiet +} |