forked from ccrisan/motionpie
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
grub: align splashscreen handling with iso9660 code
This commit aligns the Grub handling of the splash screen with what is done in the ISO9660 code. Signed-off-by: Thomas Petazzoni <[email protected]> Acked-by: "Yann E. MORIN" <[email protected]>
- Loading branch information
1 parent
e962b2a
commit 5cab919
Showing
2 changed files
with
17 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,16 @@ | ||
default=0 | ||
timeout=5 | ||
#splashimage=(hd0,0)/boot/grub/splash.xpm.gz | ||
hiddenmenu | ||
default 0 | ||
timeout 10 | ||
|
||
# Used when no splashimage is used | ||
color cyan/blue white/blue | ||
|
||
# Gets enabled/disabled depending on Grub support for splashimage | ||
splashimage (hd0,0)/boot/grub/splash.xpm.gz | ||
|
||
# Used when a splashimage is enabled | ||
foreground 000000 | ||
background cccccc | ||
|
||
title Buildroot | ||
root (hd0,0) | ||
kernel /boot/bzImage rw root=/dev/sda1 |