summaryrefslogtreecommitdiff
path: root/package/grub/files/grub.cfg
blob: 8d20ab24351803957f14383b19eca5e3ef08eb4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1
terminal_input serial
terminal_output serial

set default=0
set timeout=3

menuentry "OpenADK" {
  insmod part_msdos
  insmod ext2
  set root='hd0,msdos1'
  echo "Loading OpenADK"
  linux16 /boot/kernel root=/dev/sda1 rootfstype=ext4 rootwait panic=10
}