1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-19 05:58:53 +02:00

brcm2708: add Raspberry Pi Compute Module support

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>

SVN-Revision: 46403
This commit is contained in:
John Crispin 2015-07-17 12:49:27 +00:00
parent f7ac790356
commit 08a416e3b9
2 changed files with 10 additions and 0 deletions

@ -28,3 +28,11 @@ define Profile/RaspberryPi_BPlus/Description
Raspberry Pi Model B+
endef
$(eval $(call Profile,RaspberryPi_BPlus))
define Profile/RaspberryPi_CM
NAME:=Raspberry Pi Compute Module
endef
define Profile/RaspberryPi_CM/Description
Raspberry Pi Model Compute Module
endef
$(eval $(call Profile,RaspberryPi_CM))

@ -73,6 +73,8 @@ ifeq ($(SUBTARGET),bcm2708)
$(eval $(call add_bcm2708,RaspberryPi_B,rpi-b,bcm2708-rpi-b))
# Raspberry Pi Model B+
$(eval $(call add_bcm2708,RaspberryPi_BPlus,rpi-b-plus,bcm2708-rpi-b-plus))
# Raspberry Pi Compute Module
$(eval $(call add_bcm2708,RaspberryPi_CM,rpi-cm,bcm2708-rpi-cm))
endif
### BCM2709/BCM2836 ###