aboutsummaryrefslogtreecommitdiffstats
path: root/tools/wrt350nv2-builder/Makefile
Commit message (Expand)AuthorAgeFilesLines
* tools: remove static linking supportJo-Philipp Wich2015-02-061-1/+1
* wrt350nv2-builder: don't use internal zlib macro OF() in ioapi.h, it breaks w...Jo-Philipp Wich2012-08-141-0/+1
* use HOST_STATIC_LINKING instead of hardcoding -staticJo-Philipp Wich2012-08-121-1/+1
* wrt350nv2-builder: link staticallyJo-Philipp Wich2012-08-101-2/+3
* update wrt350nv2-builder to v2.4 and use new functionality for target orion_g...Florian Fainelli2012-04-041-2/+2
* the url isn't valid for some timeImre Kaloz2011-02-111-1/+1
* update wrt350nv2 builder to v2.3 (#7580)Florian Fainelli2010-08-101-1/+1
* Update to v2.2 fixed checksum byte calculation for other versions than 0x2019...Travis Kemen2010-02-171-1/+1
* Update to v2.1 Stays closer to the stock firmware by using wrt350n.bin for th...Travis Kemen2010-02-121-2/+8
* add wrt350n v2 image building code from #5970 (thx, maddes)Felix Fietkau2009-12-121-0/+33
bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#
# Copyright (C) 2012 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:=mcs814x
BOARDNAME:=Moschip MCS814x
FEATURES:=pci usb squashfs jffs2
CFLAGS=-Os -pipe -march=armv5te -mtune=arm926ej-s -fno-caller-saves
MAINTAINER:=Florian Fainelli <florian@openwrt.org>

LINUX_VERSION:=3.3.8

DEVICE_TYPE:=other

include $(INCLUDE_DIR)/target.mk

DEFAULT_PACKAGES := $(filter-out ppp%,$(DEFAULT_PACKAGES)) \
		  kmod-usb-core kmod-usb2 kmod-usb-ohci \
		  kmod-usb-storage kmod-fs-vfat \
		  kmod-nls-cp437 kmod-nls-iso8859-1 kmod-nls-iso8859-15 \
		  kmod-nls-utf8 \
		  kmod-mcs814x-wdt kmod-ledtrig-usbdev

KERNELNAME:="zImage dtbs"

$(eval $(call BuildTarget))