aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/armvirt/Makefile
diff options
context:
space:
mode:
authorMathew McBride <matt@traverse.com.au>2022-01-19 02:25:23 +0000
committerPetr Štetiar <ynezz@true.cz>2023-06-02 11:36:05 +0200
commite0f06ddc23b2503a1791ae7e97b02e2647e8a70d (patch)
tree803540679be5eb9e2ca7163ad459ed8df99bc940 /target/linux/armvirt/Makefile
parent16a20512d852f6ecebf8c57cd7fa2572a06a9d0b (diff)
downloadupstream-e0f06ddc23b2503a1791ae7e97b02e2647e8a70d.tar.gz
upstream-e0f06ddc23b2503a1791ae7e97b02e2647e8a70d.tar.bz2
upstream-e0f06ddc23b2503a1791ae7e97b02e2647e8a70d.zip
armvirt: add EFI support
EFI booting is used on newer machines compatible with the Arm SystemReady specifications. This commit restructures armvirt into a more 'generic' target similar to x86. See https://github.com/openwrt/openwrt/pull/4956 for a history of this port. Signed-off-by: Mathew McBride <matt@traverse.com.au>
Diffstat (limited to 'target/linux/armvirt/Makefile')
-rw-r--r--target/linux/armvirt/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/target/linux/armvirt/Makefile b/target/linux/armvirt/Makefile
index 3acf84e5c97..36c91a077fa 100644
--- a/target/linux/armvirt/Makefile
+++ b/target/linux/armvirt/Makefile
@@ -6,7 +6,7 @@ include $(TOPDIR)/rules.mk
BOARD:=armvirt
BOARDNAME:=QEMU ARM Virtual Machine
-FEATURES:=fpu pci rtc usb
+FEATURES:=fpu pci pcie rtc usb boot-part rootfs-part
FEATURES+=cpiogz ext4 ramdisk squashfs targz
KERNEL_PATCHVER:=5.15
@@ -15,5 +15,8 @@ KERNEL_TESTING_PATCHVER:=6.1
include $(INCLUDE_DIR)/target.mk
DEFAULT_PACKAGES += mkf2fs e2fsprogs
+# blkid used for resolving PARTUUID
+# in sysupgrade
+DEFAULT_PACKAGES += blkid
$(eval $(call BuildTarget))