9
0
Fork 0
barebox/arch/ppc/boards/geip-da923rc/env/bin/init

27 lines
393 B
Bash

#!/bin/sh
export PATH=/env/bin
source /env/config
#Define a 26MB partition in flash starting at offset 0x20000
addpart -n /dev/nor0 0x1a00000@0x20000(boot)
ubiattach /dev/boot
if [ $? -ne 0 ]; then
echo "Fail to attach UBI device"
exit 1;
fi
mkdir /mnt
mount -t ubifs /dev/ubi0.boot /mnt
echo
echo -n "Hit ctrl-c to stop autoboot: "
timeout -c 5
if [ $? -ne 0 ]; then
exit 0
fi
boot