summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/skov-imx6/env/init/automount
blob: bc9ff48a0afb954b2f109a6c75afb1cd8732e2ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

if [ "$1" = menu ]; then
	init-menu-add-entry "$0" "Automountpoints"
	exit
fi

# development support
mkdir -p /mnt/tftp
automount /mnt/tftp 'ifup eth0 && mount -t tftp $eth0.serverip /mnt/tftp'

# regular SD card based boot procedure
mkdir -p /mnt/sd
automount -d /mnt/sd 'mmc2.probe=1 && mount -t ext4 /dev/mmc2.0 /mnt/sd'