diff options
| author | Sebastian Pflieger | 2023-09-18 12:04:09 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2023-09-24 16:16:40 +0000 |
| commit | 2970d4b6cc5c7dd23fcde884ed82b27f1b8d9363 (patch) | |
| tree | 98d61eaaab948737d2b3c3f7c144ec34d71e5711 | |
| parent | 0250e4e4bc334fd5539cde5127f07eef616f72cd (diff) | |
| download | openwrt-2970d4b6cc5c7dd23fcde884ed82b27f1b8d9363.tar.gz | |
sunxi: generalize top-level BOARDNAME and update suported SoCs
Allwinner created to may SoC variants to list them all at top-level.
Signed-off-by: Sebastian Pflieger <sebastian@pflieger.email>
| -rw-r--r-- | target/linux/sunxi/Makefile | 3 | ||||
| -rw-r--r-- | target/linux/sunxi/cortexa53/target.mk | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/target/linux/sunxi/Makefile b/target/linux/sunxi/Makefile index acca20f123..74caebd7b1 100644 --- a/target/linux/sunxi/Makefile +++ b/target/linux/sunxi/Makefile @@ -6,7 +6,7 @@ include $(TOPDIR)/rules.mk ARCH:=arm BOARD:=sunxi -BOARDNAME:=Allwinner A1x/A20/A3x/H3/H5/R40 +BOARDNAME:=Allwinner ARM SoCs FEATURES:=fpu usb ext4 display rootfs-part rtc squashfs SUBTARGETS:=cortexa8 cortexa7 cortexa53 @@ -21,6 +21,7 @@ KERNELNAME:=zImage dtbs # A80: octa Cortex-A15/A7 # H3: quad Cortex-A7 # R40: quad Cortex-A7 +# A64/H5/H6/H616: quad Cortex-A53 include $(INCLUDE_DIR)/target.mk diff --git a/target/linux/sunxi/cortexa53/target.mk b/target/linux/sunxi/cortexa53/target.mk index 9e3a4064be..771e07d29f 100644 --- a/target/linux/sunxi/cortexa53/target.mk +++ b/target/linux/sunxi/cortexa53/target.mk @@ -5,6 +5,6 @@ include $(TOPDIR)/rules.mk ARCH:=aarch64 -BOARDNAME:=Allwinner A64/H5 +BOARDNAME:=Allwinner A64/H5/H6/H616 CPU_TYPE:=cortex-a53 KERNELNAME:=Image dtbs |