mirror of https://github.com/hak5/openwrt.git
at91: Add SAMA5D2 device
Add support for SAMA5D2 with target device as at91-sama5d2_xplained in SAMA5 subtarget and build images for SAMA5D2 Xplained board. Signed-off-by: Sandeep Sheriker Mallikarjun <sandeepsheriker.mallikarjun@microchip.com>openwrt-18.06
parent
d7a679a036
commit
fdaaa923dd
|
@ -43,6 +43,9 @@ at91_board_detect() {
|
||||||
*"SAMA5D3 Xplained")
|
*"SAMA5D3 Xplained")
|
||||||
name="sama5d3_xplained"
|
name="sama5d3_xplained"
|
||||||
;;
|
;;
|
||||||
|
*"SAMA5D2 Xplained")
|
||||||
|
name="sama5d2_xplained"
|
||||||
|
;;
|
||||||
*"CalAmp LMU5000")
|
*"CalAmp LMU5000")
|
||||||
name="lmu5000"
|
name="lmu5000"
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -5,3 +5,11 @@ define Device/at91-sama5d3_xplained
|
||||||
SUBPAGESIZE := 2048
|
SUBPAGESIZE := 2048
|
||||||
endef
|
endef
|
||||||
TARGET_DEVICES += at91-sama5d3_xplained
|
TARGET_DEVICES += at91-sama5d3_xplained
|
||||||
|
|
||||||
|
define Device/at91-sama5d2_xplained
|
||||||
|
$(Device/evaluation-dtb)
|
||||||
|
DEVICE_TITLE := Microchip(Atmel AT91) SAMA5D2 Xplained
|
||||||
|
KERNEL_SIZE := 6144k
|
||||||
|
SUBPAGESIZE := 2048
|
||||||
|
endef
|
||||||
|
TARGET_DEVICES += at91-sama5d2_xplained
|
||||||
|
|
Loading…
Reference in New Issue