summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/highbank/env/boot/mmc-boot
blob: 93cd99b68421938e6ce90bab384626698c40e053 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh

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

path="/mnt/mmc-boot"

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

. /env/data/oftree

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"