mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 13:48:06 +00:00
ipq806x: add db149 support to OpenWrt init scripts
DB149 is a IPQ8064 based platform. This patch adds the init scripts to detect it, configure the network accordingly, and generate a flashable image for it. Signed-off-by: Mathieu Olivari <mathieu@codeaurora.org> SVN-Revision: 45537
This commit is contained in:
parent
0fd202f3e5
commit
0ddebefc74
@ -22,6 +22,12 @@ ap148)
|
|||||||
ucidef_add_switch_vlan "switch0" "1" "6 1 2 3 4"
|
ucidef_add_switch_vlan "switch0" "1" "6 1 2 3 4"
|
||||||
ucidef_add_switch_vlan "switch0" "2" "0 5"
|
ucidef_add_switch_vlan "switch0" "2" "0 5"
|
||||||
;;
|
;;
|
||||||
|
db149)
|
||||||
|
ucidef_set_interfaces_lan_wan "eth1 eth2 eth3" "eth0"
|
||||||
|
ucidef_add_switch "switch0" "1" "1"
|
||||||
|
ucidef_add_switch_vlan "switch0" "1" "6 1 2 3 4"
|
||||||
|
ucidef_add_switch_vlan "switch0" "2" "0 5"
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
echo "Unsupported hardware. Network interfaces not intialized"
|
echo "Unsupported hardware. Network interfaces not intialized"
|
||||||
;;
|
;;
|
||||||
|
@ -17,6 +17,9 @@ ipq806x_board_detect() {
|
|||||||
*"AP148")
|
*"AP148")
|
||||||
name="ap148"
|
name="ap148"
|
||||||
;;
|
;;
|
||||||
|
*"DB149")
|
||||||
|
name="db149"
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
[ -z "$name" ] && name="unknown"
|
[ -z "$name" ] && name="unknown"
|
||||||
|
@ -22,6 +22,7 @@ endef
|
|||||||
define Image/BuildKernel
|
define Image/BuildKernel
|
||||||
$(CP) $(LINUX_DIR)/vmlinux $(BIN_DIR)/$(IMG_PREFIX)-vmlinux.elf
|
$(CP) $(LINUX_DIR)/vmlinux $(BIN_DIR)/$(IMG_PREFIX)-vmlinux.elf
|
||||||
$(call Image/BuildKernel/FIT,qcom-ipq8064-ap148)
|
$(call Image/BuildKernel/FIT,qcom-ipq8064-ap148)
|
||||||
|
$(call Image/BuildKernel/FIT,qcom-ipq8064-db149)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Image/Build/squashfs
|
define Image/Build/squashfs
|
||||||
|
Loading…
Reference in New Issue
Block a user