diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2010-07-21 11:20:53 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2010-07-21 11:20:53 +0000 |
commit | 766cb6b7094816cae5dc7eedeffc5d86b6a77435 (patch) | |
tree | ce5d36d1490a49f1a75c8b8aae051f7c1e077ac8 /target/linux/cns3xxx/Makefile | |
parent | fab8c7e5b1e2851c1722b73f5080bd281be3e85f (diff) | |
download | master-187ad058-766cb6b7094816cae5dc7eedeffc5d86b6a77435.tar.gz master-187ad058-766cb6b7094816cae5dc7eedeffc5d86b6a77435.tar.bz2 master-187ad058-766cb6b7094816cae5dc7eedeffc5d86b6a77435.zip |
add support for the Gateworks Laguna family (Cavium Networks Econa CNS3xxx)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22323 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/cns3xxx/Makefile')
-rw-r--r-- | target/linux/cns3xxx/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/target/linux/cns3xxx/Makefile b/target/linux/cns3xxx/Makefile new file mode 100644 index 0000000000..45faa103c1 --- /dev/null +++ b/target/linux/cns3xxx/Makefile @@ -0,0 +1,26 @@ +# +# 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 -funit-at-a-time + +LINUX_VERSION:=2.6.31.14 + +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)) |