summaryrefslogtreecommitdiff
path: root/packages/kexecboot/kexecboot-0.4/graphical-no-devices.patch
diff options
context:
space:
mode:
authorFrans Meulenbroeks <fransmeulenbroeks@gmail.com>2009-01-27 23:59:57 +0100
committerFrans Meulenbroeks <fransmeulenbroeks@gmail.com>2009-01-27 23:59:57 +0100
commit11ce1c84e98a594caf7b501d8428c06a42c8e3c7 (patch)
treeb1c105ac5ce3a8657b5e5c2fa46a40f24a7bd49b /packages/kexecboot/kexecboot-0.4/graphical-no-devices.patch
parentb4ce41c571c04d324e5bf67a1647277c467f5b99 (diff)
parentffee230ed0b6c49ef4a0b23bc850b843c429f19a (diff)
Merge branch 'org.openembedded.dev' of git@git.openembedded.net:openembedded into org.openembedded.dev
Diffstat (limited to 'packages/kexecboot/kexecboot-0.4/graphical-no-devices.patch')
-rw-r--r--packages/kexecboot/kexecboot-0.4/graphical-no-devices.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/packages/kexecboot/kexecboot-0.4/graphical-no-devices.patch b/packages/kexecboot/kexecboot-0.4/graphical-no-devices.patch
new file mode 100644
index 0000000000..b2cb214894
--- /dev/null
+++ b/packages/kexecboot/kexecboot-0.4/graphical-no-devices.patch
@@ -0,0 +1,20 @@
+--- a/kexecboot.c
++++ b/kexecboot.c
+@@ -66,8 +66,15 @@ void display_menu(FB *fb, struct bootlist *bl, int current)
+ LOGO_IMG_WIDTH,
+ LOGO_IMG_HEIGHT,
+ LOGO_IMG_BYTES_PER_PIXEL, LOGO_IMG_RLE_PIXEL_DATA);
+- fb_draw_text (fb, LOGO_IMG_WIDTH + margin, margin, 0, 0, 0, &radeon_font,
+- "Make your choice by selecting\nan item with the cursor keys\nand press OK to continue");
++ /* If no devices found print a message */
++ if (0 == bl->size) {
++ fb_draw_text (fb, LOGO_IMG_WIDTH + margin, margin, 0, 0, 0, &radeon_font,
++ "No bootable devices found.\nInsert bootable device\nand press 'R' to reboot.");
++ } else {
++ fb_draw_text (fb, LOGO_IMG_WIDTH + margin, margin, 0, 0, 0, &radeon_font,
++ "Make your choice by selecting\nan item with the cursor keys\nand press OK to continue.\nPress 'R' to reboot.");
++ }
++
+ if(current < firstslot)
+ firstslot=current;
+ if(current > firstslot + slots -1)