mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-29 01:59:02 +00:00
e0f06ddc23
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>
23 lines
509 B
Makefile
23 lines
509 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Copyright (C) 2017 Yousong Zhou <yszhou4tech@gmail.com>
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
BOARD:=armvirt
|
|
BOARDNAME:=QEMU ARM Virtual Machine
|
|
FEATURES:=fpu pci pcie rtc usb boot-part rootfs-part
|
|
FEATURES+=cpiogz ext4 ramdisk squashfs targz
|
|
|
|
KERNEL_PATCHVER:=5.15
|
|
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))
|