Newer
Older
barebox / arch / arm / boards / at91sam9m10ihd / env / boot / mmc
@Jean-Christophe PLAGNIOL-VILLARD Jean-Christophe PLAGNIOL-VILLARD on 25 Jan 2013 359 bytes at91: add at91sam9m10ihd tablet support
#!/bin/sh

if [ "$1" = menu ]; then
	boot-menu-add-entry "$0" "MMC slot"
	exit
fi

path="/mnt/mmc"

global.bootm.image="${path}/zimage"

oftree=${path}/oftree
if [ -f $oftree ]; then
	global.bootm.oftree="$oftree"
fi

# The rootdevice may actually be mmcblk1p2 if a card
# is inserted to the back MMC slot
global.linux.bootargs.dyn.root="root=/dev/mmcblk0p2"