Author: jow Date: 2015-12-03 22:13:12 +0100 (Thu, 03 Dec 2015) New Revision: 47730
Added: trunk/target/linux/ipq806x/base-files/etc/board.d/ trunk/target/linux/ipq806x/base-files/etc/board.d/00_model trunk/target/linux/ipq806x/base-files/etc/board.d/01_leds trunk/target/linux/ipq806x/base-files/etc/board.d/02_network Removed: trunk/target/linux/ipq806x/base-files/etc/uci-defaults/ Log: ipq806x: switch from uci-defaults to board.d Signed-off-by: Jo-Philipp Wich <[email protected]> Copied: trunk/target/linux/ipq806x/base-files/etc/board.d/00_model (from rev 47729, trunk/target/linux/mvebu/base-files/etc/board.d/00_model) =================================================================== --- trunk/target/linux/ipq806x/base-files/etc/board.d/00_model (rev 0) +++ trunk/target/linux/ipq806x/base-files/etc/board.d/00_model 2015-12-03 21:13:12 UTC (rev 47730) @@ -0,0 +1,13 @@ +#!/bin/sh +# Copyright (C) 2015 OpenWrt.org + +. /lib/functions/uci-defaults-new.sh + +board_config_update + +ucidef_set_board_id "$(cat /tmp/sysinfo/board_name)" +ucidef_set_model_name "$(cat /tmp/sysinfo/model)" + +board_config_flush + +exit 0 Copied: trunk/target/linux/ipq806x/base-files/etc/board.d/01_leds (from rev 47729, trunk/target/linux/ipq806x/base-files/etc/uci-defaults/leds) =================================================================== --- trunk/target/linux/ipq806x/base-files/etc/board.d/01_leds (rev 0) +++ trunk/target/linux/ipq806x/base-files/etc/board.d/01_leds 2015-12-03 21:13:12 UTC (rev 47730) @@ -0,0 +1,28 @@ +#!/bin/sh +# +# Copyright (C) 2015 OpenWrt.org +# + +. /lib/functions/uci-defaults-new.sh +. /lib/ipq806x.sh + +board_config_update + +board=$(ipq806x_board_name) + +case "$board" in +r7500) + ucidef_set_led_usbdev "usb1" "USB 1" "r7500:white:usb1" "1-1" + ucidef_set_led_usbdev "usb2" "USB 2" "r7500:white:usb3" "3-1" + ucidef_set_led_netdev "wan" "WAN" "r7500:white:wan" "eth0" + ucidef_set_led_ide "esata" "eSATA" "r7500:amber:esata" + ucidef_set_led_default "wps" "WPS" "r7500:white:wps" "0" + ucidef_set_led_default "rfkill" "rfkill" "r7500:white:rfkill" "0" + ;; +*) + ;; +esac + +board_config_flush + +exit 0 Added: trunk/target/linux/ipq806x/base-files/etc/board.d/02_network =================================================================== --- trunk/target/linux/ipq806x/base-files/etc/board.d/02_network (rev 0) +++ trunk/target/linux/ipq806x/base-files/etc/board.d/02_network 2015-12-03 21:13:12 UTC (rev 47730) @@ -0,0 +1,34 @@ +#!/bin/sh +# +# Copyright (c) 2015 The Linux Foundation. All rights reserved. +# Copyright (c) 2011-2015 OpenWrt.org +# + +. /lib/functions/uci-defaults-new.sh +. /lib/ipq806x.sh + +board_config_update + +ucidef_set_interface_loopback + +board=$(ipq806x_board_name) + +case "$board" in +ap148 |\ +r7500) + ucidef_add_switch "switch0" \ + "1:lan" "2:lan" "3:lan" "4:lan" "6@eth1" "5:wan" "0@eth0" + ;; +db149) + ucidef_set_interface_lan "eth1 eth2 eth3" + ucidef_add_switch "switch0" \ + "1:lan" "2:lan" "3:lan" "4:lan" "6@eth1" "5:wan" "0@eth0" + ;; +*) + echo "Unsupported hardware. Network interfaces not intialized" + ;; +esac + +board_config_flush + +exit 0 _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
