13 lines
186 B
Bash
Executable File
13 lines
186 B
Bash
Executable File
#!/bin/sh
|
|
|
|
mkdir -p ${BUILDROOT}/sysroot/boot/grub
|
|
|
|
cat > ${BUILDROOT}/sysroot/boot/grub/grub.cfg << EOF
|
|
set timeout=1
|
|
set default=0
|
|
|
|
menuentry "mittos64" {
|
|
multiboot2 /kernel
|
|
}
|
|
|
|
EOF |