diff -pruN grub-1.99.orig/grub-core/boot/i386/pc/boot.S grub-1.99/grub-core/boot/i386/pc/boot.S
old
|
new
|
LOCAL(general_error):
|
379 | 379 | LOCAL(stop): |
380 | 380 | jmp LOCAL(stop) |
381 | 381 | |
382 | | notification_string: .asciz "GRUB " |
| 382 | /* notification_string: .asciz "GRUB " */ |
| 383 | notification_string: .asciz "" |
383 | 384 | geometry_error_string: .asciz "Geom" |
384 | 385 | hd_probe_error_string: .asciz "Hard Disk" |
385 | 386 | read_error_string: .asciz "Read" |
diff -pruN grub-1.99.orig/grub-core/boot/i386/pc/diskboot.S grub-1.99/grub-core/boot/i386/pc/diskboot.S
old
|
new
|
LOCAL(general_error):
|
320 | 320 | /* go here when you need to stop the machine hard after an error condition */ |
321 | 321 | LOCAL(stop): jmp LOCAL(stop) |
322 | 322 | |
323 | | notification_string: .asciz "loading" |
| 323 | /* notification_string: .asciz "loading" */ |
| 324 | notification_string: .asciz "" |
324 | 325 | |
325 | | notification_step: .asciz "." |
326 | | notification_done: .asciz "\r\n" |
| 326 | /* notification_step: .asciz "." */ |
| 327 | notification_step: .asciz "" |
| 328 | |
| 329 | /* notification_done: .asciz "\r\n" */ |
| 330 | notification_done: .asciz "" |
327 | 331 | |
328 | 332 | geometry_error_string: .asciz "Geom" |
329 | 333 | read_error_string: .asciz "Read" |
diff -pruN grub-1.99.orig/grub-core/kern/main.c grub-1.99/grub-core/kern/main.c
old
|
new
|
grub_main (void)
|
175 | 175 | |
176 | 176 | /* Hello. */ |
177 | 177 | grub_setcolorstate (GRUB_TERM_COLOR_HIGHLIGHT); |
178 | | grub_printf ("Welcome to GRUB!\n\n"); |
| 178 | /* grub_printf ("Welcome to GRUB!\n\n"); */ |
179 | 179 | grub_setcolorstate (GRUB_TERM_COLOR_STANDARD); |
180 | 180 | |
181 | 181 | /* Load pre-loaded modules and free the space. */ |