2009-05-03 19:58:06 +03:00
|
|
|
#
|
2011-03-18 15:25:32 +02:00
|
|
|
# Copyright (C) 2006-2011 OpenWrt.org
|
2006-07-20 21:42:12 +03:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
2007-02-28 20:25:14 +02:00
|
|
|
include $(INCLUDE_DIR)/host.mk
|
2006-07-20 21:42:12 +03:00
|
|
|
|
2007-02-28 20:25:14 +02: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 01:11:02 +02:00
|
|
|
BOARD:=uml
|
|
|
|
BOARDNAME:=User Mode Linux
|
2010-11-22 14:12:39 +02:00
|
|
|
FEATURES:=ext4 audio
|
2011-05-06 15:37:36 +03:00
|
|
|
MAINTAINER:=Florian Fainelli <florian@openwrt.org>
|
2006-11-12 01:11:02 +02:00
|
|
|
|
2012-06-05 09:57:51 +03:00
|
|
|
LINUX_VERSION:=3.3.8
|
2007-06-28 08:52:00 +03:00
|
|
|
|
2007-09-08 22:55:42 +03:00
|
|
|
include $(INCLUDE_DIR)/target.mk
|
2007-03-03 03:22:09 +02:00
|
|
|
|
2011-04-18 00:47:49 +03:00
|
|
|
LINUX_TARGET_CONFIG:=$(CURDIR)/config/$(ARCH)
|
|
|
|
|
2010-01-23 19:21:18 +02:00
|
|
|
DEFAULT_PACKAGES += wpad-mini kmod-mac80211-hwsim
|
2009-01-12 11:57:02 +02:00
|
|
|
|
2007-02-28 20:25:14 +02:00
|
|
|
endif
|
|
|
|
|
2007-09-08 22:55:42 +03:00
|
|
|
$(eval $(call BuildTarget))
|