2021-02-10 21:52:34 +08:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2009-05-04 00:58:06 +08:00
|
|
|
#
|
2021-10-20 11:41:08 +08:00
|
|
|
# Copyright (C) 2006-2021 OpenWrt.org
|
2021-02-10 21:52:34 +08:00
|
|
|
|
2006-07-21 02:42:12 +08:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2007-03-01 02:25:14 +08:00
|
|
|
# UML only makes sense on linux
|
|
|
|
ifeq ($(HOST_OS),Linux)
|
2021-10-20 11:41:08 +08:00
|
|
|
ifeq ($(HOST_ARCH),x86_64)
|
2007-03-01 02:25:14 +08:00
|
|
|
|
2021-10-20 11:41:08 +08:00
|
|
|
ARCH:=x86_64
|
2006-11-12 07:11:02 +08:00
|
|
|
BOARD:=uml
|
|
|
|
BOARDNAME:=User Mode Linux
|
2022-01-22 08:26:52 +08:00
|
|
|
FEATURES:=audio ext4 rootfs-part squashfs
|
2006-11-12 07:11:02 +08:00
|
|
|
|
2022-01-04 20:05:13 +08:00
|
|
|
KERNEL_PATCHVER:=5.10
|
2007-06-28 13:52:00 +08:00
|
|
|
|
2007-09-09 03:55:42 +08:00
|
|
|
include $(INCLUDE_DIR)/target.mk
|
2007-03-03 09:22:09 +08:00
|
|
|
|
2020-07-27 18:30:41 +08:00
|
|
|
DEFAULT_PACKAGES += wpad-basic-wolfssl kmod-mac80211-hwsim mkf2fs e2fsprogs
|
2009-01-12 17:57:02 +08:00
|
|
|
|
2021-10-20 11:41:08 +08:00
|
|
|
endif
|
2007-03-01 02:25:14 +08:00
|
|
|
endif
|
|
|
|
|
2007-09-09 03:55:42 +08:00
|
|
|
$(eval $(call BuildTarget))
|