2006-07-20 21:42:12 +03:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# 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
|
2007-07-18 16:01:32 +03:00
|
|
|
FEATURES:=broken ext2
|
2007-02-28 20:25:14 +02:00
|
|
|
LINUX_CONFIG:=$(CURDIR)/config/$(ARCH)
|
2006-11-12 01:11:02 +02:00
|
|
|
|
2007-08-21 13:06:01 +03:00
|
|
|
LINUX_VERSION:=2.6.22.4
|
2007-06-28 08:52:00 +03:00
|
|
|
|
2006-07-20 21:42:12 +03:00
|
|
|
include $(INCLUDE_DIR)/kernel-build.mk
|
2007-03-03 03:22:09 +02:00
|
|
|
|
|
|
|
# include the profiles
|
|
|
|
-include profiles/*.mk
|
|
|
|
|
2007-02-28 20:25:14 +02:00
|
|
|
endif
|
|
|
|
|
2006-10-19 09:20:55 +03:00
|
|
|
$(eval $(call BuildKernel))
|