Newer
Older
barebox / defaultenv / bin / init
@Jean-Christophe PLAGNIOL-VILLARD Jean-Christophe PLAGNIOL-VILLARD on 12 Oct 2010 552 bytes defaultenv/update: merge update_rootfs and update_kernel
#!/bin/sh

PATH=/env/bin
export PATH

. /env/config
if [ -e /dev/nor0 ]; then
	addpart /dev/nor0 $nor_parts
fi

if [ -e /dev/disk0 ]; then
	addpart /dev/disk0 $disk_parts
fi

if [ -e /dev/nand0 ]; then
	addpart /dev/nand0 $nand_parts

	# Uh, oh, hush first expands wildcards and then starts executing
	# commands. What a bug!
	source /env/bin/hush_hack
fi

if [ -f /env/bin/init_board ]; then
	/env/bin/init_board
fi

echo
echo -n "Hit any key to stop autoboot: "
timeout -a $autoboot_timeout
if [ $? != 0 ]; then
	echo
	update -h
	echo
	exit
fi

boot