9
0
Fork 0
barebox/arch/arm/boards/efika-mx-smartbook/env/boot/hd-internal

18 lines
290 B
Bash

#!/bin/sh
if [ "$1" = menu ]; then
boot-menu-add-entry "$0" "internal harddisk"
exit
fi
path="/mnt/internal-hd0.0"
global.bootm.image="${path}/linuximage"
oftree=${path}/oftree
if [ -f $oftree ]; then
global.bootm.oftree="$oftree"
fi
global.linux.bootargs.dyn.root="root=/dev/sda2"