Advertisement
devinteske

Disable beastie for EFI boot

Apr 25th, 2014
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 1.82 KB | None | 0 0
  1. Index: beastie.4th
  2. ===================================================================
  3. --- beastie.4th (revision 264956)
  4. +++ beastie.4th (working copy)
  5. @@ -242,6 +242,11 @@ variable logoY
  6.  ;
  7.  
  8.  : beastie-start ( -- ) \ starts the menu
  9. +       s" console" getenv dup -1 <> if
  10. +               s" efi" 2swap contains? if
  11. +                       s" set beastie_disable=YES" evaluate
  12. +               then
  13. +       else drop then
  14.         s" beastie_disable" getenv
  15.         dup -1 <> if
  16.                 s" YES" compare-insensitive 0= if
  17. Index: beastie.4th.8
  18. ===================================================================
  19. --- beastie.4th.8       (revision 264956)
  20. +++ beastie.4th.8       (working copy)
  21. @@ -24,7 +24,7 @@
  22.  .\"
  23.  .\" $FreeBSD$
  24.  .\"
  25. -.Dd May 16, 2011
  26. +.Dd April 27, 2014
  27.  .Dt BEASTIE.4TH 8
  28.  .Os
  29.  .Sh NAME
  30. @@ -119,6 +119,8 @@ Sets the desired row position of the logo. Default
  31.  If set to
  32.  .Dq YES ,
  33.  the beastie boot menu will be skipped.
  34. +The beastie boot menu is always skipped if booting [U]EFI or running non-x86
  35. +hardware.
  36.  .It Va loader_delay
  37.  If set to a number higher than zero, introduces a delay before starting the
  38.  beastie boot menu. During the delay the user can press either Ctrl-C to skip
  39. Index: loader.conf.5
  40. ===================================================================
  41. --- loader.conf.5       (revision 264956)
  42. +++ loader.conf.5       (working copy)
  43. @@ -23,7 +23,7 @@
  44.  .\" SUCH DAMAGE.
  45.  .\"
  46.  .\" $FreeBSD$
  47. -.Dd October 18, 2013
  48. +.Dd April 27, 2014
  49.  .Dt LOADER.CONF 5
  50.  .Os
  51.  .Sh NAME
  52. @@ -236,6 +236,8 @@ be displayed.
  53.  If set to
  54.  .Dq YES ,
  55.  the beastie boot menu will be skipped.
  56. +The beastie boot menu is always skipped if booting [U]EFI or running non-x86
  57. +hardware.
  58.  .It Va loader_logo Pq Dq Li orbbw
  59.  Selects a desired logo in the beastie boot menu.
  60.  Possible values are:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement