aboutsummaryrefslogtreecommitdiff
path: root/misc/grub.cfg
diff options
context:
space:
mode:
authorRiley Beckett <rbeckettvt@gmail.com>2026-07-19 00:55:06 -0400
committerRiley Beckett <rbeckettvt@gmail.com>2026-07-19 00:55:06 -0400
commit31576c7379e1326c8cb17802db08641f2ae71570 (patch)
treee94350fbb4b3f55f629a44586ed505a2ceda9205 /misc/grub.cfg
parentac7457804a54b772a7d30d4cd8a5ca5863de9601 (diff)
things
Diffstat (limited to 'misc/grub.cfg')
-rwxr-xr-xmisc/grub.cfg20
1 files changed, 20 insertions, 0 deletions
diff --git a/misc/grub.cfg b/misc/grub.cfg
new file mode 100755
index 0000000..1ab43d5
--- /dev/null
+++ b/misc/grub.cfg
@@ -0,0 +1,20 @@
+set timeout=1
+set default=0
+set fallback=1
+
+if [ "$grub_platform" = "efi" ]; then
+ set debug=video
+ insmod efi_gop
+ insmod efi_uga
+ insmod font
+ if loadfont ${prefix}/unicode.pf2; then
+ insmod gfxterm
+ set gfxmode=auto
+ set gfxpayload=keep
+ terminal_output gfxterm
+ fi
+fi
+
+menuentry "rasde/Linux" {
+ linux /vmlinuz-7.0.14 root=/dev/vda2 init=/bin/bash rw
+}