mirror of
https://github.com/cjdelisle/openwrt.git
synced 2025-03-16 08:31:01 +00:00
Files
docs
include
package
scripts
target
imagebuilder
linux
adm5120
adm8668
amazon
ar7
ar71xx
at91
atheros
au1000
avr32
brcm47xx
brcm63xx
cns21xx
cns3xxx
image
patches
patches-2.6.31
Makefile
config-default
cobalt
coldfire
ep93xx
etrax
gemini
generic
goldfish
imx21
iop32x
ixp4xx
kirkwood
lantiq
leon
malta
mpc52xx
mpc83xx
mpc85xx
octeon
omap24xx
omap35xx
orion
ppc40x
ppc44x
ps3
pxa
pxcab
ramips
rb532
rdc
realview
s3c24xx
sibyte
sparc
ubicom32
uml
x86
xburst
Makefile
sdk
toolchain
Config.in
Makefile
toolchain
tools
.gitignore
BSDmakefile
Config.in
LICENSE
Makefile
README
feeds.conf.default
rules.mk
28 lines
645 B
Makefile
28 lines
645 B
Makefile
#
|
|
# Copyright (C) 2010 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
ARCH:=arm
|
|
BOARD:=cns3xxx
|
|
BOARDNAME:=Cavium Networks Econa CNS3xxx
|
|
FEATURES:=squashfs fpu gpio
|
|
CFLAGS:=-Os -pipe -march=armv6k -mtune=mpcore -mfloat-abi=softfp -mfpu=vfp -fno-caller-saves
|
|
MAINTAINER:=Imre Kaloz <kaloz@openwrt.org>
|
|
|
|
LINUX_VERSION:=2.6.39
|
|
|
|
include $(INCLUDE_DIR)/target.mk
|
|
|
|
define Target/Description
|
|
Build images for Cavium Networks Econa CNS3xxx based boards,
|
|
eg. the Gateworks Laguna family
|
|
endef
|
|
|
|
KERNELNAME:="uImage"
|
|
|
|
$(eval $(call BuildTarget))
|