mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 23:37:29 +02:00
d7ba81230a
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27349 3c298f89-4303-0410-b956-a3cf2f4a3e73
34 lines
856 B
Makefile
34 lines
856 B
Makefile
#
|
|
# Copyright (C) 2006-2011 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
ARCH:=cris
|
|
BOARD:=etrax
|
|
MAINTAINER:=Claudio Mignanti <c.mignanti@gmail.com>
|
|
BOARDNAME:=Axis ETRAX 100LX
|
|
FEATURES:=squashfs jffs2 usb broken
|
|
LINUX_VERSION:=2.6.32.33
|
|
DEVICE_TYPE=
|
|
|
|
include $(INCLUDE_DIR)/target.mk
|
|
|
|
KERNELNAME:="zImage"
|
|
|
|
define Target/Description
|
|
Build firmware images for the FOXBOARD made by acmesystems.it
|
|
endef
|
|
|
|
define Kernel/Prepare
|
|
$(call Kernel/Prepare/Default)
|
|
mkdir -p $(LINUX_DIR)/include/asm-cris
|
|
$(CP) $(LINUX_DIR)/arch/cris/include/asm/*.h $(LINUX_DIR)/include/asm-cris
|
|
mkdir -p $(LINUX_DIR)/include/asm-cris/arch
|
|
$(CP) $(LINUX_DIR)/arch/cris/include/arch-v10/arch/*.h $(LINUX_DIR)/include/asm-cris/arch
|
|
endef
|
|
|
|
$(eval $(call BuildTarget))
|