mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2024-12-11 17:34:57 +00:00
7b7bbec453
Add the latest default Kernel for testing. This step is required to keep UML in tree for the next release. Signed-off-by: Paul Spooren <mail@aparcar.org>
27 lines
483 B
Makefile
27 lines
483 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Copyright (C) 2006-2021 OpenWrt.org
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
# UML only makes sense on linux
|
|
ifeq ($(HOST_OS),Linux)
|
|
ifeq ($(HOST_ARCH),x86_64)
|
|
|
|
ARCH:=x86_64
|
|
BOARD:=uml
|
|
BOARDNAME:=User Mode Linux
|
|
FEATURES:=squashfs ext4 audio
|
|
|
|
KERNEL_PATCHVER:=5.4
|
|
KERNEL_TESTING_PATCHVER:=5.10
|
|
|
|
include $(INCLUDE_DIR)/target.mk
|
|
|
|
DEFAULT_PACKAGES += wpad-basic-wolfssl kmod-mac80211-hwsim mkf2fs e2fsprogs
|
|
|
|
endif
|
|
endif
|
|
|
|
$(eval $(call BuildTarget))
|