mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-18 09:51:26 +00:00
* add freeradius wrapper package for gateway images * pass version and hash in the firmware field * update ucode to latest HEAD Signed-off-by: John Crispin <john@phrozen.org>
10 lines
243 B
Bash
Executable File
10 lines
243 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
START=80
|
|
|
|
boot() {
|
|
HASH=$(cat /etc/openwrt_release | grep DISTRIB_TIP= | cut -d\' -f2)
|
|
VERSION=$(cat /etc/openwrt_release | grep DISTRIB_TIP_VERSION= | cut -d\' -f2)
|
|
echo "$VERSION-$HASH" > /tmp/ucentral.version
|
|
}
|