mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-21 22:47:56 +00:00
7198185e3a
Now that the armvirt target supports real hardware, not just
VMs, thanks to the addition of EFI, rename it to something
more appropriate.
'armsr' (Arm SystemReady) was chosen after the name of
the Arm standards program.
The 32 and 64 bit targets have also been renamed
armv7 and armv8 respectively, to allow future profiles
where required (such as armv9).
See https://developer.arm.com/documentation/102858/0100/Introduction
for more information.
Signed-off-by: Mathew McBride <matt@traverse.com.au>
(23.05 version of commit 40b02a2301
)
22 lines
490 B
Makefile
22 lines
490 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Copyright (C) 2017 Yousong Zhou <yszhou4tech@gmail.com>
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
BOARD:=armsr
|
|
BOARDNAME:=Arm SystemReady (EFI) compliant
|
|
FEATURES:=fpu pci pcie rtc usb boot-part rootfs-part
|
|
FEATURES+=cpiogz ext4 ramdisk squashfs targz vmdk
|
|
|
|
KERNEL_PATCHVER:=5.15
|
|
|
|
include $(INCLUDE_DIR)/target.mk
|
|
|
|
DEFAULT_PACKAGES += mkf2fs e2fsprogs
|
|
# blkid used for resolving PARTUUID
|
|
# in sysupgrade
|
|
DEFAULT_PACKAGES += blkid
|
|
|
|
$(eval $(call BuildTarget))
|