Makefile 494 B

1234567891011121314151617181920212223242526
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Copyright (C) 2006-2021 OpenWrt.org
  4. include $(TOPDIR)/rules.mk
  5. # UML only makes sense on linux
  6. ifeq ($(HOST_OS),Linux)
  7. ifeq ($(HOST_ARCH),x86_64)
  8. ARCH:=x86_64
  9. BOARD:=uml
  10. BOARDNAME:=User Mode Linux
  11. FEATURES:=audio ext4 rootfs-part squashfs
  12. KERNEL_PATCHVER:=6.1
  13. KERNEL_TESTING_PATCHVER:=6.6
  14. include $(INCLUDE_DIR)/target.mk
  15. DEFAULT_PACKAGES += wpad-basic-mbedtls kmod-mac80211-hwsim mkf2fs e2fsprogs
  16. endif
  17. endif
  18. $(eval $(call BuildTarget))