aboutsummaryrefslogtreecommitdiffstats
path: root/docs/network.tex
Commit message (Collapse)AuthorAgeFilesLines
* update switch documentationLuka Perkov2012-10-121-1/+22
| | | | SVN-Revision: 33733
* update VLAN tag exampleLuka Perkov2012-10-121-2/+4
| | | | SVN-Revision: 33732
* fix styleLuka Perkov2012-10-121-13/+11
| | | | SVN-Revision: 33731
* kamikaze has been released long agoImre Kaloz2011-02-111-1/+1
| | | | SVN-Revision: 25464
* configure the IPv6 from /etc/config/network and remove 6scripts's prefix ↵Florian Fainelli2009-07-051-3/+0
| | | | | | option to set an IPv6 address on the LAN (#5450) SVN-Revision: 16683
* comment and fix some parts of the documentation, thanks to Harsh TrivediFlorian Fainelli2009-06-081-2/+33
| | | | SVN-Revision: 16387
* document a little bit more the rationale of the 6bridge scriptFlorian Fainelli2009-04-021-0/+2
| | | | SVN-Revision: 15079
* Document a bit more about IPv6 configurationFlorian Fainelli2008-07-211-2/+19
| | | | SVN-Revision: 11891
* Allow specifying static IPv6 gateways (#2710)Florian Fainelli2007-11-161-0/+1
| | | | SVN-Revision: 9569
* Document the IPv6 connectivity with OpenWrt.Florian Fainelli2007-10-261-0/+46
| | | | SVN-Revision: 9452
* Fix the option dns usages (#2174)Florian Fainelli2007-08-061-0/+2
| | | | SVN-Revision: 8350
* Add some more documentationFlorian Fainelli2007-08-031-0/+10
| | | | SVN-Revision: 8330
* add support for static routes - based on the patch from #1365Felix Fietkau2007-03-021-0/+18
| | | | SVN-Revision: 6457
* some basic cleanup, stylistic change for config files, and slight fixesTim Yardley2006-11-061-9/+9
| | | | SVN-Revision: 5455
* add initial version of our new documentation - not too pretty yet, but will ↵Felix Fietkau2006-10-131-0/+86
be improved SVN-Revision: 5060
n class="k">for the N516 e-book reader CONFIG:=n516_nand endef UBOOTS:=qi_lb60 n516 avt2 sakc define Package/uboot/template define Package/uboot-xburst-$(1) SECTION:=boot CATEGORY:=Boot Loaders DEPENDS:=@TARGET_xburst TITLE:=$(2) URL:=http://www.denx.de/wiki/U-Boot VARIANT:=$(1) endef endef define BuildUbootPackage $(eval $(uboot/Default)) $(eval $(uboot/$(1))) $(call Package/uboot/template,$(1),$(TITLE)) endef ifdef BUILD_VARIANT $(eval $(call uboot/$(BUILD_VARIANT))) UBOOT_CONFIG:=$(if $(CONFIG),$(CONFIG),$(BUILD_VARIANT)) UBOOT_IMAGE:=$(if $(IMAGE),$(IMAGE),openwrt-$(BOARD)-$(BUILD_VARIANT)-u-boot.bin) endif define Build/Prepare $(call Build/Prepare/Default) $(CP) ./files/* $(PKG_BUILD_DIR) find $(PKG_BUILD_DIR) -name .svn | $(XARGS) rm -rf endef define Build/Configure $(MAKE) -C $(PKG_BUILD_DIR) \ $(UBOOT_CONFIG)_config endef define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \ CROSS_COMPILE=$(TARGET_CROSS) endef define Package/uboot/install/template define Package/uboot-xburst-$(1)/install $(INSTALL_DIR) $$(1) $(CP) $(PKG_BUILD_DIR)/u-boot-nand.bin $(BIN_DIR)/$(2) endef endef $(foreach u,$(UBOOTS), \ $(eval $(call Package/uboot/install/template,$(u),openwrt-$(BOARD)-$(u)-u-boot.bin)) \ ) $(foreach u,$(UBOOTS), \ $(eval $(call BuildUbootPackage,$(u))) \ $(eval $(call BuildPackage,uboot-xburst-$(u))) \ )