1
0
mirror of https://github.com/lxsang/meta-rpi-diya.git synced 2024-09-19 16:46:38 +02:00
meta-rpi-diya/recipes-diya/diya-overlay/files/confd

44 lines
1.3 KiB
Plaintext
Raw Normal View History

2021-12-17 20:30:04 +01:00
#!/bin/sh
PATH=/sbin:/bin:/usr/sbin:/usr/bin
DESC="Auto deployment configuration from media"
case "$1" in
start)
echo -n "Start $DESC: "
2023-07-09 18:28:04 +02:00
# for some reason the LCD backlight is turned off
# need to turn it on manually
echo 0 > /sys/class/backlight/backlight/bl_power
2021-12-17 20:30:04 +01:00
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"
2023-07-10 11:47:22 +02:00
umount /dev/mmcblk0p4
2023-07-10 11:47:05 +02:00
yes | mkfs.ext4 /dev/mmcblk0p4
mount /dev/mmcblk0p4 /home
2023-07-10 11:38:42 +02:00
mkdir -p /home/diya
chown -R diya:diya /home/diya
2021-12-17 20:30:04 +01:00
rm /boot/home_partition_should_be_formated
fi
2023-07-10 09:32:40 +02:00
if [ -e "/boot/wpa_supplicant.conf" ];then
install -m 0644 /boot/wpa_supplicant.conf /var/etc/network
rm /boot/wpa_supplicant.conf
2021-12-17 20:30:04 +01:00
reboot
fi
# display information
# disable wifi power save
/usr/sbin/iw wlan0 set power_save off
/sbin/ip a
2021-12-17 20:30:04 +01:00
;;
*)
N=/etc/init.d/$NAME
echo "Usage: $N {start}" >&2
exit 1
;;
esac
exit 0