89 lines
1.9 KiB
Bash
Executable File
89 lines
1.9 KiB
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
START=12
|
|
|
|
|
|
SETUP_MODE_ADDR=192.168.1.1
|
|
SETUP_MODE_NETMASK=255.255.255.0
|
|
|
|
SETUP_MODE_DHCP_RANGE=192.168.1.2,192.168.1.254
|
|
|
|
|
|
delete_interface() {
|
|
[ "$1" = 'loopback' ] || uci_remove network "$1"
|
|
}
|
|
|
|
|
|
check_enable() {
|
|
config_get enabled "$1" enabled
|
|
config_get configured "$1" configured
|
|
|
|
if [ "$enabled" = 1 -o "$configured" != 1 ]; then
|
|
export enable=1
|
|
fi
|
|
}
|
|
|
|
setup_network() {
|
|
(
|
|
export UCI_CONFIG_DIR=/var/gluon/setup-mode/config
|
|
|
|
mkdir -p "$UCI_CONFIG_DIR"
|
|
|
|
cp /etc/config/network "$UCI_CONFIG_DIR"
|
|
|
|
config_load network
|
|
config_foreach delete_interface interface
|
|
|
|
uci_add network interface setup
|
|
uci_set network setup ifname "$(lua -e 'print(require("gluon.sysconfig").setup_ifname)')"
|
|
uci_set network setup type 'bridge'
|
|
uci_set network setup proto 'static'
|
|
uci_set network setup ipaddr "$SETUP_MODE_ADDR"
|
|
uci_set network setup netmask "$SETUP_MODE_NETMASK"
|
|
|
|
uci_commit network
|
|
|
|
SERVICE_DAEMONIZE=1
|
|
SERVICE_WRITE_PID=1
|
|
service_start /sbin/netifd -c "$UCI_CONFIG_DIR"
|
|
|
|
setup_switch() { return 0; }
|
|
|
|
include /lib/network
|
|
setup_switch
|
|
)
|
|
}
|
|
|
|
start() {
|
|
enable=0
|
|
config_load gluon-setup-mode
|
|
config_foreach check_enable setup_mode
|
|
|
|
if [ "$enable" = '1' ]; then
|
|
lua -luci -e 'require "luci.model.uci"; uci_state=luci.model.uci.cursor_state(); uci_state:section("gluon-setup-mode", "setup_mode", nil, { running = "1" }); uci_state:save("gluon-setup-mode")'
|
|
uci set 'gluon-setup-mode.@setup_mode[0].enabled=0'
|
|
uci commit gluon-setup-mode
|
|
|
|
setup_network
|
|
|
|
/usr/sbin/telnetd -l /lib/gluon/setup-mode/ash-login
|
|
/etc/init.d/dropbear start
|
|
|
|
/usr/sbin/uhttpd -h /lib/gluon/setup-mode/www -x /cgi-bin -A 1 -R -p 0.0.0.0:80
|
|
|
|
/usr/sbin/dnsmasq -p 0 -F $SETUP_MODE_DHCP_RANGE -l /tmp/dhcp.leases -O option:router
|
|
|
|
/etc/init.d/led start
|
|
|
|
# correctly finish firstboot
|
|
/etc/init.d/done boot
|
|
|
|
. /etc/diag.sh
|
|
get_status_led
|
|
status_led_set_timer 1000 300
|
|
|
|
# block further boot
|
|
while true; do sleep 1; done
|
|
fi
|
|
}
|