32David

Config file example

Feb 20th, 2023
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | Source Code | 0 0
  1. # Runtime settings (see below)
  2. timeout: 5
  3.  
  4. # Example of a basic entry
  5. name: Arch Linux
  6. path: EFI\Arch\vmlinuz-linux
  7. initrd: EFI\Arch\intel-ucode.img
  8. initrd: EFI\Arch\initramfs-linux.img
  9. args: root=UUID=4ec51638-9069-4a28-9b85-6f2352991ee5 rw loglevel=3
  10.  
  11. # Example usage of kerneldir
  12. # the kernel name is 'vmlinuz-5.15.7-gentoo', and the initramfs is 'initramfs-5.15.7-gentoo.img'
  13. name: Gentoo
  14. kerneldir: EFI\Gentoo
  15. initrd: EFI\Gentoo\intel-uc.img
  16. initrd: EFI\Gentoo\initramfs-%v-gentoo.img
  17. args: root=UUID=cf2aba83-e914-4613-89fd-9667bb734779 rw loglevel=3
  18.  
  19. # This path is the same on every system with Windows 10, so you can copy this path and use it to boot Windows
  20. name: Windows
  21. path: EFI\Microsoft\Boot\bootmgfw.efi
  22.  
  23. # The boot manager can also load any UEFI app and not just operating systems
  24. name: Some UEFI App
  25. path: \path\to\UEFI\app
  26. args: arg1
  27. args: arg2
  28. args: arg3 arg4 arg5....
Advertisement
Add Comment
Please, Sign In to add comment