Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
set timeout=0
set timeout=5

# The use of mariner.media=CDROM is a workaround that our installer does not require
# but it is observed to be needed to boot on some hardware/SoCs.
menuentry "Edge Microvisor Toolkit" {
search --label CDROM --set root
linux /isolinux/vmlinuz root=/dev/ram0 mariner.media=CDROM lockdown=integrity sysctl.kernel.unprivileged_bpf_disabled=1 console=tty0 console=ttyS0,115200n8
linux /isolinux/vmlinuz root=/dev/ram0 mariner.media=CDROM lockdown=integrity sysctl.kernel.unprivileged_bpf_disabled=1 sysctl.vm.overcommit_memory=1 rd.parallel=1
initrd /isolinux/initrd.img
}
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
#!/bin/sh

mount -t proc proc /proc
/lib/systemd/systemd
mount -t sysfs sysfs /sys
mount -t devtmpfs devtmpfs /dev

exec /lib/systemd/systemd
Loading