Ticket #4425: InstallerFinish.diff

File InstallerFinish.diff, 705 bytes (added by BeSman, 14 years ago)

This is a patch to InstallerFinish script which allow ask to install our boot manager after installation

  • data/system/boot/InstallerFinishScript

     
    1919rm -f "$target/home/Desktop/Installer"
    2020
    2121makebootable "$target"
     22
     23
     24# Now ask to install the boot manager
     25
     26alert --warning --modal "Would you like to install the Haiku boot manager?
     27
     28The Haiku boot manager will allow you to choose which operating system to boot when your computer starts up.
     29
     30You should not do this if you have another boot manager such as GRUB installed on your system." "Yes" "No"
     31_retval=$?
     32[ $_retval -eq 0 ] && bootman
     33