slackbuilds

My Slackbuilds
git clone git://git.server.ky/slackcoder/slackbuilds
Log | Files | Refs | README

README (599B)


      1 efi-sync is a program which will update your efi when your kernel or its
      2 related files are updated.
      3 
      4 To have efi-sync to start and stop with your host, add to the beginning of
      5 /etc/rc.d/rc.local:
      6 
      7   if [ -x /etc/rc.d/rc.efi-sync ]; then
      8     /etc/rc.d/rc.efi-sync start
      9   fi
     10 
     11 and to /etc/rc.d/rc.local_shutdown (creating it if needed):
     12 
     13   if [ -x /etc/rc.d/rc.efi-sync ]; then
     14     /etc/rc.d/rc.efi-sync stop
     15   fi
     16 
     17 Also ensure your EFI is mounted on boot by having its entry configured in
     18 /etc/fstab. For more instructions, refer to the project's README in this
     19 packages documentation under /usr/doc.