prakashgd / burg

Automatically exported from code.google.com/p/burg
0 stars 0 forks source link

Hide message "GRUB loading." #29

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Hello, could change 4 lines, compile and update the application to not display 
the message "GRUB loading." when you start the computer.

"./boot/i386/pc/boot.S" line 382:
OLD -> notification_string: .asciz "GRUB "
NEW -> notification_string: .asciz ""

"./boot/i386/pc/diskboot.S" line 323:
OLD -> notification_string: .asciz "loading"
NEW -> notification_string: .asciz ""

"./boot/i386/pc/diskboot.S" line 325:
OLD -> notification_step: .asciz "."
NEW -> notification_step: .asciz ""

"./boot/i386/pc/diskboot.S" line 326:
OLD -> notification_done: .asciz "\r\n"
NEW -> notification_done: .asciz ""

Thanks. (Sorry my English-Google)

Original issue reported on code.google.com by carloss...@gmail.com on 3 Jan 2011 at 2:37

GoogleCodeExporter commented 8 years ago
I cannot find this file in Ubuntu 11.10. Did the name change or am I doing 
something wrong?

Original comment by wiranv...@gmail.com on 20 Jan 2012 at 2:44

GoogleCodeExporter commented 8 years ago
You can find this files in source code of burg. 

http://code.google.com/p/burg/downloads/detail?name=burg-bzr-1832.zip

After making the changes:
# .configure
# make
# make install

and reinstall burg with burg-install.

Original comment by carloss...@gmail.com on 20 Jan 2012 at 4:55