mirror of
https://github.com/LuckfoxTECH/luckfox-pico.git
synced 2026-01-19 09:52:31 +01:00
project:cfg:BoardConfig_IPC:overlay:Fix permission errors and naming issues in overlay files.
Signed-off-by: luckfox-eng29 <eng29@luckfox.com>
This commit is contained in:
@@ -10,6 +10,7 @@ check_hciconfig() {
|
||||
else
|
||||
echo "hci0 not found or not available."
|
||||
fi
|
||||
ifconfig wlan0 up && udhcpc -i wlan0 > /dev/null 2>&1
|
||||
else
|
||||
echo "aic8800_fdrv not found."
|
||||
fi
|
||||
@@ -18,7 +19,7 @@ check_hciconfig() {
|
||||
|
||||
case $1 in
|
||||
start)
|
||||
check_hciconfig
|
||||
check_hciconfig &
|
||||
;;
|
||||
*)
|
||||
exit 1
|
||||
|
||||
@@ -6,7 +6,9 @@ load_luckfoxconfig() {
|
||||
fi
|
||||
if [ "$(cat /proc/device-tree/model)" == "Luckfox Pico Ultra" ] ||
|
||||
[ "$(cat /proc/device-tree/model)" == "Luckfox Pico Ultra W" ]; then
|
||||
luckfox_switch_rgb_resolution &
|
||||
if [ -f /usr/bin/luckfox_switch_rgb_resolution ]; then
|
||||
luckfox_switch_rgb_resolution &
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
@@ -1,9 +1,30 @@
|
||||
#!/bin/bash
|
||||
|
||||
USB_KEYWORD="android_work: sent uevent USB_STATE="
|
||||
USB_MODE_PATH="/proc/device-tree/usbdrd/usb@ffb00000/dr_mode"
|
||||
|
||||
usb_reset() {
|
||||
while true; do
|
||||
last_line=$(dmesg | grep "$USB_KEYWORD" | tail -n 1)
|
||||
|
||||
if [[ "$last_line" == *"DISCONNECTED" ]]; then
|
||||
echo "Detected USB DISCONNECTED."
|
||||
/etc/init.d/S50usbdevice restart
|
||||
fi
|
||||
sleep 5
|
||||
done
|
||||
}
|
||||
|
||||
/usr/bin/filesystem_resize.sh
|
||||
/usr/bin/wifi_bt_init.sh
|
||||
/usr/bin/luckfox_switch_rgb_resolution &
|
||||
|
||||
usb_mode="$(cat $USB_MODE_PATH)"
|
||||
/etc/init.d/S50usbdevice start
|
||||
if [ "$usb_mode" = "peripheral" ];then
|
||||
usb_reset &
|
||||
fi
|
||||
|
||||
luckfox-config load
|
||||
if [ -n "$(hwclock | grep "invalid")" ]; then
|
||||
date -s 2024-01-01
|
||||
|
||||
0
project/cfg/BoardConfig_IPC/overlay/overlay-luckfox-ubuntu-ultra/etc/udhcpd.conf
Normal file → Executable file
0
project/cfg/BoardConfig_IPC/overlay/overlay-luckfox-ubuntu-ultra/etc/udhcpd.conf
Normal file → Executable file
@@ -2,6 +2,12 @@
|
||||
|
||||
if [ "$(cat /proc/device-tree/model)" == "Luckfox Pico Ultra W" ]; then
|
||||
systemctl stop wpa_supplicant
|
||||
|
||||
if [ "$1" = "stop" ] ;then
|
||||
pkill -f "udhcpc -i wlan0"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -d /oem/usr/ko ]; then
|
||||
cd /oem/usr/ko
|
||||
if [ -z "$(ifconfig | grep "wlan0")" ]; then
|
||||
@@ -31,6 +37,7 @@ if [ "$(cat /proc/device-tree/model)" == "Luckfox Pico Ultra W" ]; then
|
||||
wpa_supplicant -B -i wlan0 -c /etc/wpa_supplicant.conf >/dev/null
|
||||
chmod a+x /usr/share/udhcpc/default.script
|
||||
fi
|
||||
|
||||
else
|
||||
echo "This Luckfox Pico model don't support WIFI!"
|
||||
fi
|
||||
|
||||
21
project/cfg/BoardConfig_IPC/overlay/overlay-luckfox-ubuntu/etc/rc.local
Normal file → Executable file
21
project/cfg/BoardConfig_IPC/overlay/overlay-luckfox-ubuntu/etc/rc.local
Normal file → Executable file
@@ -1,7 +1,28 @@
|
||||
#!/bin/bash
|
||||
|
||||
USB_KEYWORD="android_work: sent uevent USB_STATE="
|
||||
USB_MODE_PATH="/proc/device-tree/usbdrd/usb@ffb00000/dr_mode"
|
||||
|
||||
usb_reset() {
|
||||
while true; do
|
||||
last_line=$(dmesg | grep "$USB_KEYWORD" | tail -n 1)
|
||||
|
||||
if [[ "$last_line" == *"DISCONNECTED" ]]; then
|
||||
echo "Detected USB DISCONNECTED."
|
||||
/etc/init.d/S50usbdevice restart
|
||||
fi
|
||||
sleep 5
|
||||
done
|
||||
}
|
||||
|
||||
/usr/bin/filesystem_resize.sh
|
||||
|
||||
usb_mode="$(cat $USB_MODE_PATH)"
|
||||
/etc/init.d/S50usbdevice start
|
||||
if [ "$usb_mode" = "peripheral" ];then
|
||||
usb_reset &
|
||||
fi
|
||||
|
||||
luckfox-config load
|
||||
if [ -n "$(hwclock | grep "invalid")" ]; then
|
||||
date -s 2024-01-01
|
||||
|
||||
Reference in New Issue
Block a user