2009-05-04 00:58:06 +08:00
|
|
|
#
|
2010-05-03 00:33:34 +08:00
|
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
2006-07-21 02:42:12 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
2007-03-01 02:25:14 +08:00
|
|
|
include $(INCLUDE_DIR)/host.mk
|
2006-07-21 02:42:12 +08:00
|
|
|
|
2007-03-01 02:25:14 +08:00
|
|
|
# UML only makes sense on linux
|
|
|
|
ifeq ($(HOST_OS),Linux)
|
|
|
|
|
|
|
|
ARCH:=$(shell uname -m | sed \
|
|
|
|
-e 's/i[3-9]86/i386/' \
|
|
|
|
-e 's/mipsel/mips/' \
|
|
|
|
-e 's/mipseb/mips/' \
|
|
|
|
-e 's/powerpc/ppc/' \
|
|
|
|
-e 's/sh[234]/sh/' \
|
|
|
|
-e 's/armeb/arm/' \
|
|
|
|
)
|
2006-11-12 07:11:02 +08:00
|
|
|
BOARD:=uml
|
|
|
|
BOARDNAME:=User Mode Linux
|
2010-11-22 20:12:39 +08:00
|
|
|
FEATURES:=ext4 audio
|
2007-03-01 02:25:14 +08:00
|
|
|
LINUX_CONFIG:=$(CURDIR)/config/$(ARCH)
|
2006-11-12 07:11:02 +08:00
|
|
|
|
2010-11-25 02:50:11 +08:00
|
|
|
LINUX_VERSION:=2.6.32.26
|
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
|
|
|
|
2010-01-24 01:21:18 +08:00
|
|
|
DEFAULT_PACKAGES += wpad-mini kmod-mac80211-hwsim
|
2009-01-12 17:57:02 +08:00
|
|
|
|
2007-03-01 02:25:14 +08:00
|
|
|
endif
|
|
|
|
|
2007-09-09 03:55:42 +08:00
|
|
|
$(eval $(call BuildTarget))
|