Advertisement
theroot

skc.conf

Jul 23rd, 2013
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.73 KB | None | 0 0
  1. # secure kernel copy configuration
  2.  
  3. sbdir=''
  4.  
  5. # directory containing all keys and certificate files
  6. certdir='/usr/local/share/efitools/'
  7.  
  8. # directory for boot files
  9. bootdir='/boot'
  10.  
  11. # dont change me
  12. kernelver=${2}
  13.  
  14. # absolute standard path for kernel source location
  15. kernelsrc="/usr/src/linux-${kernelver}-gentoo"
  16.  
  17. # bzimage or vmzlinux file inside of the above kernelsrc directory
  18. vmzfile="/arch/x86_64/boot/bzImage"
  19.  
  20. # where to copy boot file
  21. bootfile="${bootdir}/kernel-signed-${kernelver}"
  22.  
  23. # should we rebuild boot config file after kernel is signed and copied
  24. rebuildboot="yes"
  25.  
  26. # command to rebuild boot manager config
  27. bconfig="grub2-mkconfig"
  28.  
  29. # output file for boot config
  30. bconfigfile="/boot/grub2/grub.cfg"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement