aboutsummaryrefslogtreecommitdiffstats
path: root/toolchain/kernel-headers/Makefile
blob: 011ec959c866081ebcf2ce2c3ef93eaccbf473e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# 
# 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

KERNEL_BUILD_DIR := $(BUILD_DIR_TOOLCHAIN)
BUILD_DIR := $(KERNEL_BUILD_DIR)

STAGING_DIR_HOST:=$(TOOLCHAIN_DIR)
BUILD_DIR_HOST:=$(BUILD_DIR_TOOLCHAIN)
override QUILT:=

include $(INCLUDE_DIR)/kernel.mk
include $(INCLUDE_DIR)/kernel-version.mk

PKG_NAME:=linux
PKG_VERSION:=$(LINUX_VERSION)
PKG_SOURCE:=$(LINUX_SOURCE)
PKG_SOURCE_URL:=$(LINUX_SITE)
PKG_BUILD_DIR := $(KERNEL_BUILD_DIR)/linux-$(LINUX_VERSION)
PKG_MD5SUM:=$(LINUX_KERNEL_MD5SUM)
LINUX_DIR := $(PKG_BUILD_DIR)

include $(INCLUDE_DIR)/host-build.mk
include $(INCLUDE_DIR)/kernel-defaults.mk

define Build/Prepare/cris
	mkdir -p $(BUILD_DIR_TOOLCHAIN)
	bzcat $(DL_DIR)/$(PKG_SOURCE) | $(HOST_TAR) -C $(BUILD_DIR_TOOLCHAIN) $(TAR_OPTIONS)
	$(PATCH) $(PKG_BUILD_DIR) $(TOPDIR)/target/linux/etrax-2.6/patches/generic_2.6
	$(PATCH) $(PKG_BUILD_DIR) $(TOPDIR)/target/linux/etrax-2.6/patches/cris
	ln -sf arch-v10 $(PKG_BUILD_DIR)/include/asm-cris/arch
	ln -sf arch-v10 $(PKG_BUILD_DIR)/arch/cris/arch
endef

define Build/Configure/powerpc
	$(CP) $(PKG_BUILD_DIR)/include/asm-ppc/* $(PKG_BUILD_DIR)/include/asm-powerpc/
	rm -rf $(PKG_BUILD_DIR)/include/asm-ppc
	mv $(PKG_BUILD_DIR)/include/asm-powerpc $(PKG_BUILD_DIR)/include/asm-ppc
endef

ifneq (,$(findstring uml,$(BOARD)))
  LINUX_KARCH:=$(ARCH)
endif

KMAKE := $(MAKE) -C $(PKG_BUILD_DIR) \
	ARCH=$(LINUX_KARCH) \
	CONFIG_SHELL=$(BASH)

define Build/Prepare
	$(if $(Build/Prepare/$(ARCH)),$(Build/Prepare/$(ARCH)),$(call Kernel/Prepare/Default))
	$(SED) 's/@expr length/@-expr length/' $(PKG_BUILD_DIR)/Makefile
	ln -sf linux-$(LINUX_VERSION) $(LINUX_HEADERS_DIR)
	yes '' | $(KMAKE) oldconfig
	$(KMAKE) include/linux/version.h include/asm
	$(call Build/Configure/$(ARCH))
endef

define Build/Configure
endef

define Build/Compile
endef

define Build/Install
endef

$(eval $(call HostBuild))
class="n">COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* $Id$ */ #if (__GNUC__ < 3) || (__GNUC__ == 3 && __GNUC_MINOR__ < 3) #error "GCC version >= 3.3 required" #endif /* #include IOSYMFILE #include "macros.inc" */ #include <avr/io.h> //#include <avr/pgmspace.h> #ifdef __AVR_HAVE_JMP_CALL__ #define XJMP jmp #else #define XJMP rjmp #endif #define XCALL rcall .macro vector name .weak \name .set \name, __init XJMP \name .endm .section .vectors,"ax",@progbits .global __vectors .global __bad_interrupt .func __vectors __bad_interrupt: __vectors: XJMP __init ; vector __vector_1 ; vector __vector_2 ; vector __vector_3 .endfunc /* Handle unexpected interrupts (enabled and no handler), which usually indicate a bug. Jump to the __vector_default function if defined by the user, otherwise jump to the reset address. This must be in a different section, otherwise the assembler will resolve "rjmp" offsets and there will be no relocs. */ .section .init0,"ax",@progbits .weak __init ; .func __init __init: .weak __stack .set __stack, RAMEND /* By default, malloc() uses the current value of the stack pointer minus __malloc_margin as the highest available address. In some applications with external SRAM, the stack can be below the data section (in the internal SRAM - faster), and __heap_end should be set to the highest address available for malloc(). */ .weak __heap_end .set __heap_end, 0 .section .init2,"ax",@progbits clr R1 out 0x3f,r1 ldi r28,lo8(__stack) ldi r29,hi8(__stack) out 0x3d, r28 out 0x3e, r29 .section .init9,"ax",@progbits ; rcall main ; XJMP __vectors-2 XJMP main ; .endfunc