aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* tools/e2fsprogs: update to version 1.41.14Alexandros C. Couloumbis2010-12-292-28/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24851 3c298f89-4303-0410-b956-a3cf2f4a3e73
* generic: add CONFIG_DEBUG_ICEDCC symbolGabor Juhos2010-12-295-0/+5
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24850 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [brcm63xx] multiple SPI driver fixesFlorian Fainelli2010-12-291-36/+29
| | | | | | | | | | | - fix platform device registration - fix chipselect, command register defines, add missing clock - make slave select proper - fix multibytes transferts Signed-off-by: Tanguy Bouzéloc <tanguy.bouzeloc@efixo.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24849 3c298f89-4303-0410-b956-a3cf2f4a3e73
* package/e2fsprogs: update to version 1.41.14Alexandros C. Couloumbis2010-12-291-2/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24848 3c298f89-4303-0410-b956-a3cf2f4a3e73
* target/linux: sync to kernel 2.6.37-rc8, refresh patchesAlexandros C. Couloumbis2010-12-2921-91/+60
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24847 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [tools] missing-macros: add as-ac-expand.m4Jo-Philipp Wich2010-12-293-1/+50
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24846 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [brcm63xx] patches-2.6.35: mtd flashmap: Really fixed sparelen and ↵Daniel Dickinson2010-12-281-17/+5
| | | | | | rootfslen. The real rootfslen for OpenWRT images comes from a bigendian uint32_t in reserved1 of the bcm_tag, which is now used to correctly calculate the rootfslen (and thus the sparelen). git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24843 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [brcm63xx] patches-2.6.36: Fix flashmap spare length calculation from ↵Daniel Dickinson2010-12-281-2/+2
| | | | | | previous commit (for rootfs and rootfs_data mtd partitions). Apparently the interruption in working on it resulted in an incorrect memory of getting it working. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24842 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [brcm63xx] spi driver: remove bcm_rset usageFlorian Fainelli2010-12-281-62/+74
| | | | | | | | | | Since bcm636x platform embeds two spi master device, the attached patch removes static bcm_rset usage, replaced by "bs->regs" field for all I/O operation. Signed-off-by: Miguel Gaio <miguel.gaio@efixo.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24840 3c298f89-4303-0410-b956-a3cf2f4a3e73
* gemini: enable GPIO sysfs interfaceGabor Juhos2010-12-271-0/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24839 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Added OpenWRT-specific field to imagetag so that we can record the real root ↵Daniel Dickinson2010-12-264-35/+11
| | | | | | | | length, so that when the CRC fixup is applied and the root length is recorded as zero we can still calculate the rootfs mtd partition size. Signed-off-by: Daniel Dickinson <daniel@cshore.neomailbox.net> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24838 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mtd: Added trx_fixup for brcm63xx imagetag, and made references to fix_trx ↵Daniel Dickinson2010-12-262-6/+77
| | | | | | | | use the weak reference rather than the brcm47xx ifdef. This fixes a bug in which sysupgrade failed due to changing bad CRC on reboot. Signed-off-by: Daniel Dickinson <daniel@cshore.neomailbox.net> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24837 3c298f89-4303-0410-b956-a3cf2f4a3e73
* base-files: Added uci-defaults script to run mtd fixtrx on firstboot for ↵Daniel Dickinson2010-12-261-0/+20
| | | | | | | | devices that need it. Signed-off-by: Daniel Dickinson <daniel@cshore.neomailbox.net> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24836 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mtd: Added fixtrx for brcm63xx imagetag. This allows brcm63xx boards which ↵Daniel Dickinson2010-12-264-1/+247
| | | | | | | | experience a CRC on second boot due to the JFFS2 creation / DEADC0DE deletion to work correctly when mtd fixtrx is run on first boot Signed-off-by: Daniel Dickinson <daniel@cshore.neomailbox.net> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24835 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mtd flashmap: Switched to calculating the rootfs size rather than depending ↵Daniel Dickinson2010-12-261-5/+52
| | | | | | | | on being given the size in the imagetag. This is because solving the problem of second boot CRC errors requires changeing the rootfs size in the image to zero. Signed-off-by: Daniel Dickinson <daniel@cshore.neomailbox.net> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24834 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mtd: Changed mtd_fixtrx and related functions to be weak references. The ↵Daniel Dickinson2010-12-263-115/+120
| | | | | | | | weak references only lead to actual functions for brcm47xx Signed-off-by: Daniel Dickinson <daniel@cshore.neomailbox.net> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24833 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [include] autotools.mk: introduce PKG_MACRO_PATHS and HOST_MACRO_PATHS which ↵Jo-Philipp Wich2010-12-261-4/+7
| | | | | | default to ./m4, add LIBTOOL to AM_TOOL_PATHS git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24830 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] uhttpd: allow lowercase http header fields (#8513)Jo-Philipp Wich2010-12-242-3/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24823 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ath9k: add back the interrupt mitigation tweak and reduce the rx interrupt ↵Felix Fietkau2010-12-241-0/+13
| | | | | | mitigation times further git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24819 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ath9k: add pending fixes for revision checks and handling of the hw ↵Felix Fietkau2010-12-241-1/+43
| | | | | | workaround register git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24818 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [at91] Import an experimental ADC driverClaudio Mignanti2010-12-235-0/+460
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24814 3c298f89-4303-0410-b956-a3cf2f4a3e73
* package/mac80211: fix issue when CONFIG_MAC80211_LEDS is not set.Alexandros C. Couloumbis2010-12-231-0/+35
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24813 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ar71xx: add support for TL-WR740N v1Gabor Juhos2010-12-233-0/+25
| | | | | | | | | Same as TL-WR741ND but with different hardware ID and without detachable antenna. Signed-off-by: Paul Fertser <fercerpav@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24811 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [target/avr32]: upgrade u-boot to v2010.12Imre Kaloz2010-12-231-2/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24810 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [tools/mkimage]: use u-boot v2010.12Imre Kaloz2010-12-232-7/+7
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24809 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: add config option added in kernel 2.6.37-rc7 to generic and run make ↵Hauke Mehrtens2010-12-222-50/+19
| | | | | | kernel_oldconfig for brcm47xx. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24805 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: refresh patches with kernel 2.6.37-rc7Hauke Mehrtens2010-12-225-7/+7
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24804 3c298f89-4303-0410-b956-a3cf2f4a3e73
* brcm47xx: refresh patches with kernel 2.6.37-rc7Hauke Mehrtens2010-12-227-454/+1
| | | | | | | The deleted patches went upstream in 2.6.37-rc7 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24803 3c298f89-4303-0410-b956-a3cf2f4a3e73
* uml: this patch went upstreamHauke Mehrtens2010-12-221-38/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24802 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: add CONFIG_ATH5K_PCI only when not on aterhos targetHauke Mehrtens2010-12-222-0/+12
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24801 3c298f89-4303-0410-b956-a3cf2f4a3e73
* adm5120: make patches apply again and refresh them Hauke Mehrtens2010-12-2221-63/+63
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24800 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: use tab in front of ledtrig-netdev.o and refresh kernelHauke Mehrtens2010-12-2216-20/+20
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24798 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: rmove unused config symbols.Hauke Mehrtens2010-12-221-5/+0
| | | | | | | CONFIG_RT2800PCI_PCI and CONFIG_RT2800PCI_SOC were removed some time ago and CONFIG_IWLWIFI was replaced by CONFIG_COMPAT_IWLWIFI in compat wireless git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24794 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: activate ahb bud for ath5k driver if on atheros target.Hauke Mehrtens2010-12-221-2/+5
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24793 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [tools] missing-macros: extend fake-gtk-doc-check.m4 (fixes autoreconf in ↵Jo-Philipp Wich2010-12-224-2/+29
| | | | | | orbit2), provide fake-intltool.m4 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24787 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [tools] missing-macros: add xmms.m4, from libflacJo-Philipp Wich2010-12-223-1/+156
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24784 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] base-files: implement "reqopts" parameter for dhcp interfaces to ↵Jo-Philipp Wich2010-12-222-2/+4
| | | | | | specify additional dhcp options to request git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24780 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] busybox: implement ms static routes option in udhcpc (#6435)Jo-Philipp Wich2010-12-221-0/+22
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24779 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] base-files: the busybox update to v1.15.3 completely broke udhcpc ↵Jo-Philipp Wich2010-12-221-73/+14
| | | | | | route option handling, repair default.script to work with the new format (#6435) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24778 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [tools] missing-macros: add missing serial numbers, split acc.m4 into ↵Jo-Philipp Wich2010-12-229-363/+367
| | | | | | mfx_acc.m4, mfx_cppflags.m4 and mfx_limits.m4 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24763 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [tools] missing-macros: fix a bunch of underquoted definition warnings in ↵Jo-Philipp Wich2010-12-223-16/+16
| | | | | | various 3rd party macros git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24761 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [tools] missing-macros: add more m4 macros from gettext, ossp-js, libmikmod, ↵Jo-Philipp Wich2010-12-2216-1/+1088
| | | | | | libdnet git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24757 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [tools] missing-macros: add acc.m4, used by ucl and lzoJo-Philipp Wich2010-12-223-1/+368
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24756 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [tools] add missing makefile in previous commitJo-Philipp Wich2010-12-221-0/+31
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24755 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [tools] package mm-common, this provides missing m4 macros for glibmm, ↵Jo-Philipp Wich2010-12-221-1/+2
| | | | | | gtkmm, cairomm and other Gnome C++ bindings git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24754 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [tools] introduce missing-macros meta package, this will supply needed m4 ↵Jo-Philipp Wich2010-12-216-1/+1146
| | | | | | macros which are used but not shipped by various packages in feeds git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24753 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [tools] libtool: extend all ltmain.m4sh patches to cover ltmain.sh as well, ↵Jo-Philipp Wich2010-12-215-7/+96
| | | | | | prevent configure from embedding host library paths git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24752 3c298f89-4303-0410-b956-a3cf2f4a3e73
* toolchain/gcc: fix r24746Alexandros C. Couloumbis2010-12-213-5/+5
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24751 3c298f89-4303-0410-b956-a3cf2f4a3e73
* brcm47xx: wgt634u mac address fixHauke Mehrtens2010-12-212-0/+40
| | | | | | | | | The Netgear wgt634u uses minus between the hex digest of the mac address and all other broadcom devices are using colons between the hex digest. Now the mac address is correctly parsed also when minus is used. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24749 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [toolchain]: add gcc 4.5.2 (replaces 4.5.1)Imre Kaloz2010-12-2112-2/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24746 3c298f89-4303-0410-b956-a3cf2f4a3e73