Skip to content

Commit

Permalink
Fix grub config snippets in manual-install-on-linux.md
Browse files Browse the repository at this point in the history
At least with Fedora's grub the `set SOURCE_NAME="blissos"` and the `search --set=root ...` lines need to be on 2 separate lines for things to work.

These are clearly 2 separate commands so I would not be surprised if other grub builds need this on 2 separate lines too.
  • Loading branch information
jwrdegoede authored May 20, 2024
1 parent cb4bf04 commit a4eba38
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions Installation/manual-install-on-linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,29 @@ Create a directory at / as /blissos

```
menuentry "BlissOS (Default) w/ FFMPEG" {
set SOURCE_NAME="blissos" search --set=root --file /$SOURCE_NAME/kernel
set SOURCE_NAME="blissos"
search --set=root --file /$SOURCE_NAME/kernel
linux /$SOURCE_NAME/kernel FFMPEG_CODEC=1 FFMPEG_PREFER_C2=1 quiet root=/dev/ram0 SRC=/$SOURCE_NAME
initrd /$SOURCE_NAME/initrd.img
}
menuentry "BlissOS (Intel) w/ FFMPEG" {
set SOURCE_NAME="blissos" search --set=root --file /$SOURCE_NAME/kernel
set SOURCE_NAME="blissos"
search --set=root --file /$SOURCE_NAME/kernel
linux /$SOURCE_NAME/kernel HWC=drm_minigbm_celadon GRALLOC=minigbm FFMPEG_CODEC=1 FFMPEG_PREFER_C2=1 quiet root=/dev/ram0 SRC=/$SOURCE_NAME
initrd /$SOURCE_NAME/initrd.img
}
menuentry "BlissOS PC-Mode (Default) w/ FFMPEG" {
set SOURCE_NAME="blissos" search --set=root --file /$SOURCE_NAME/kernel
set SOURCE_NAME="blissos"
search --set=root --file /$SOURCE_NAME/kernel
linux /$SOURCE_NAME/kernel quiet root=/dev/ram0 SRC=/$SOURCE_NAME
initrd /$SOURCE_NAME/initrd.img
}
menuentry "BlissOS PC-Mode (Intel) w/ FFMPEG" {
set SOURCE_NAME="blissos" search --set=root --file /$SOURCE_NAME/kernel
set SOURCE_NAME="blissos"
search --set=root --file /$SOURCE_NAME/kernel
linux /$SOURCE_NAME/kernel PC_MODE=1 HWC=drm_minigbm_celadon GRALLOC=minigbm FFMPEG_CODEC=1 FFMPEG_PREFER_C2=1 quiet root=/dev/ram0 SRC=/$SOURCE_NAME
initrd /$SOURCE_NAME/initrd.img
}
Expand Down

0 comments on commit a4eba38

Please sign in to comment.