summaryrefslogtreecommitdiff
path: root/recipes/kexecboot/kexecboot-0.4/graphical-no-devices.patch
diff options
context:
space:
mode:
authorAndrea Adami <andrea.adami@gmail.com>2009-11-08 01:58:43 +0100
committerAndrea Adami <andrea.adami@gmail.com>2009-11-08 01:58:43 +0100
commitaa814443c5477aded386290ccfe2f5bd70a235df (patch)
treeb88b9f78ba65f2c6a2f406997849ab8d744c2ebb /recipes/kexecboot/kexecboot-0.4/graphical-no-devices.patch
parent80a57617033422d16377b417825cbbaa183ebab0 (diff)
kexecboot: remove older releases incompatible with new boot.cfg.
Diffstat (limited to 'recipes/kexecboot/kexecboot-0.4/graphical-no-devices.patch')
-rw-r--r--recipes/kexecboot/kexecboot-0.4/graphical-no-devices.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/recipes/kexecboot/kexecboot-0.4/graphical-no-devices.patch b/recipes/kexecboot/kexecboot-0.4/graphical-no-devices.patch
deleted file mode 100644
index b2cb214894..0000000000
--- a/recipes/kexecboot/kexecboot-0.4/graphical-no-devices.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- 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)