diff options
author | John Crispin <john@openwrt.org> | 2015-11-22 08:04:37 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-11-22 08:04:37 +0000 |
commit | cd9d0ee0d0b56e5bec8d7bc594bdbd6180632b28 (patch) | |
tree | 91ef3306b6e5a2bdb1413e7d76469d04a1c18f2d /target/linux/brcm2708/base-files/etc/board.d | |
parent | deff5fb6c89b58b193bb57ab129cbe441a4404b4 (diff) | |
download | upstream-cd9d0ee0d0b56e5bec8d7bc594bdbd6180632b28.tar.gz upstream-cd9d0ee0d0b56e5bec8d7bc594bdbd6180632b28.tar.bz2 upstream-cd9d0ee0d0b56e5bec8d7bc594bdbd6180632b28.zip |
brcm2708: add device detection and use it for network, leds and preinit
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
SVN-Revision: 47572
Diffstat (limited to 'target/linux/brcm2708/base-files/etc/board.d')
-rwxr-xr-x | target/linux/brcm2708/base-files/etc/board.d/02_network | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/target/linux/brcm2708/base-files/etc/board.d/02_network b/target/linux/brcm2708/base-files/etc/board.d/02_network new file mode 100755 index 0000000000..e85eb11f88 --- /dev/null +++ b/target/linux/brcm2708/base-files/etc/board.d/02_network @@ -0,0 +1,25 @@ +#!/bin/sh +# Copyright (C) 2014-2015 OpenWrt.org + +. /lib/functions/uci-defaults-new.sh +. /lib/brcm2708.sh +. /lib/functions.sh +. /lib/functions/system.sh + +board_config_update + +ucidef_set_interface_loopback + +board=$(brcm2708_board_name) + +case "$board" in +rpi-b |\ +rpi-b-plus |\ +rpi-2-b) + ucidef_set_interface_lan "eth0" + ;; +esac + +board_config_flush + +exit 0 |