netlogic: add basic user-space support
Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 43038
This commit is contained in:
parent
c6285fd82f
commit
7166fbbb67
4 changed files with 90 additions and 0 deletions
5
target/linux/netlogic/base-files.mk
Normal file
5
target/linux/netlogic/base-files.mk
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
define Package/base-files/install-target
|
||||||
|
rm -f $(1)/etc/config/network
|
||||||
|
endef
|
||||||
|
|
||||||
|
|
28
target/linux/netlogic/base-files/etc/uci-defaults/02_network
Executable file
28
target/linux/netlogic/base-files/etc/uci-defaults/02_network
Executable file
|
@ -0,0 +1,28 @@
|
||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# Copyright (C) 2014 OpenWrt.org
|
||||||
|
#
|
||||||
|
|
||||||
|
[ -e /etc/config/network ] && exit 0
|
||||||
|
|
||||||
|
touch /etc/config/network
|
||||||
|
|
||||||
|
. /lib/functions/uci-defaults.sh
|
||||||
|
. /lib/netlogic.sh
|
||||||
|
|
||||||
|
ucidef_set_interface_loopback
|
||||||
|
|
||||||
|
case "$board_name" in
|
||||||
|
"xlp-evp" |\
|
||||||
|
"xlp-fvp" |\
|
||||||
|
"xlp-gvp" |\
|
||||||
|
"xlp-svp" |\
|
||||||
|
*)
|
||||||
|
ucidef_set_interface_lan "eth0"
|
||||||
|
;;
|
||||||
|
|
||||||
|
esac
|
||||||
|
|
||||||
|
uci commit network
|
||||||
|
|
||||||
|
exit 0
|
48
target/linux/netlogic/base-files/lib/netlogic.sh
Executable file
48
target/linux/netlogic/base-files/lib/netlogic.sh
Executable file
|
@ -0,0 +1,48 @@
|
||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# Copyright (C) 2014 OpenWrt.org
|
||||||
|
#
|
||||||
|
|
||||||
|
NETLOGIC_BOARD_NAME=
|
||||||
|
NETLOGIC_MODEL=
|
||||||
|
|
||||||
|
netlogic_board_detect() {
|
||||||
|
local machine
|
||||||
|
local name
|
||||||
|
|
||||||
|
machine=$(awk 'BEGIN{FS="[ \t:/]+"} /machine/ {print $2}' /proc/cpuinfo)
|
||||||
|
|
||||||
|
case "$machine" in
|
||||||
|
*"netlogic,XLP-EVP")
|
||||||
|
name="xlp-evp"
|
||||||
|
;;
|
||||||
|
*"netlogic,XLP-FVP")
|
||||||
|
name="xlp-fvp"
|
||||||
|
;;
|
||||||
|
*"netlogic,XLP-GVP")
|
||||||
|
name="xlp-gvp"
|
||||||
|
;;
|
||||||
|
*"netlogic,XLP-SVP")
|
||||||
|
name="xlp-svp"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
[ -z "$name" ] && name="unknown"
|
||||||
|
|
||||||
|
[ -z "$NETLOGIC_BOARD_NAME" ] && NETLOGIC_BOARD_NAME="$name"
|
||||||
|
[ -z "$NETLOGIC_MODEL" ] && NETLOGIC_MODEL="$machine"
|
||||||
|
|
||||||
|
[ -e "/tmp/sysinfo/" ] || mkdir -p "/tmp/sysinfo/"
|
||||||
|
|
||||||
|
echo "$NETLOGIC_BOARD_NAME" > /tmp/sysinfo/board_name
|
||||||
|
echo "$NETLOGIC_MODEL" > /tmp/sysinfo/model
|
||||||
|
}
|
||||||
|
|
||||||
|
netlogic_board_name() {
|
||||||
|
local name
|
||||||
|
|
||||||
|
[ -f /tmp/sysinfo/board_name ] && name=$(cat /tmp/sysinfo/board_name)
|
||||||
|
[ -z "$name" ] && name="unknown"
|
||||||
|
|
||||||
|
echo "$name"
|
||||||
|
}
|
9
target/linux/netlogic/base-files/lib/preinit/03_do_netlogic.sh
Executable file
9
target/linux/netlogic/base-files/lib/preinit/03_do_netlogic.sh
Executable file
|
@ -0,0 +1,9 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
do_netlogic() {
|
||||||
|
. /lib/netlogic.sh
|
||||||
|
|
||||||
|
netlogic_board_detect
|
||||||
|
}
|
||||||
|
|
||||||
|
boot_hook_add preinit_main do_netlogic
|
Loading…
Add table
Add a link
Reference in a new issue