mirror of
https://github.com/lxsang/meta-rpi-diya.git
synced 2024-11-08 06:28:23 +01:00
45 lines
1.3 KiB
Bash
45 lines
1.3 KiB
Bash
#!/bin/sh
|
|
|
|
PATH=/sbin:/bin:/usr/sbin:/usr/bin
|
|
DESC="Auto deployment configuration from media"
|
|
|
|
case "$1" in
|
|
start)
|
|
echo -n "Start $DESC: "
|
|
# for some reason the LCD backlight is turned off
|
|
# need to turn it on manually
|
|
echo 0 > /sys/class/backlight/backlight/bl_power
|
|
if [ -f "/boot/fs_resize" ]; then
|
|
/usr/bin/expandfs.sh
|
|
touch /boot/home_partition_should_be_formated
|
|
rm /boot/fs_resize
|
|
reboot
|
|
fi
|
|
if [ -f "/boot/home_partition_should_be_formated" ]; then
|
|
echo "Trying to format the home partition"
|
|
umount /dev/mmcblk0p3
|
|
yes | mkfs.ext4 /dev/mmcblk0p3
|
|
mount /dev/mmcblk0p3 /home
|
|
mkdir -p /home/diya/etc/network
|
|
mkdir -p /home/diya/etc/dropbear
|
|
chown -R diya:diya /home/diya
|
|
rm /boot/home_partition_should_be_formated
|
|
fi
|
|
if [ -e "/boot/install" ];then
|
|
cp -rf /boot/install/* /home/diya
|
|
rm -rf /boot/install
|
|
reboot
|
|
fi
|
|
# display information
|
|
# disable wifi power save
|
|
/usr/sbin/iw wlan0 set power_save off
|
|
/sbin/ip a
|
|
;;
|
|
*)
|
|
N=/etc/init.d/$NAME
|
|
echo "Usage: $N {start}" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
exit 0 |