summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [toolchain] gcc: only enable/disable TLS support in final stage (closes: #6788)nico2010-03-061-5/+8
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20018 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [ar7] move netdev_ops conversion, previous hunk was not correctflorian2010-03-061-7/+17
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20016 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [ar7] update acx-mac80211 to a newer snapshot and fix its compilation wrt ↵florian2010-03-068-371/+176
| | | | | | new includes path git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20015 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [ar7] migrate acx to netdev_ops, required for later kernelsflorian2010-03-061-0/+41
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20014 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: enable debugfs support by default - having access to the rate ↵nbd2010-03-061-0/+1
| | | | | | control statistics is very useful for figuring out the real quality of a link git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20011 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix missing symbols for kernel 2.6.33, closes #6803 thanks Maddesthepeople2010-03-051-0/+24
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20010 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix missing symbols for kernel 2.6.32, closes #6802 thanks Maddesthepeople2010-03-051-0/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20009 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add missing symbolthepeople2010-03-051-0/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20008 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ar71xx: don't init PCI irqs on the AR7240 if the PCIe subsystem are in resetjuhosg2010-03-051-0/+7
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20007 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ar71xx: fix sysupgrade on the WRT400N (thanks to chuljin)juhosg2010-03-051-1/+1
| | | | | | | * closes #6782 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20006 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ar71xx: fix status led detection on the RB4xx boardsjuhosg2010-03-052-4/+16
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20005 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ar71xx: ag71xx: move calling ag71xx_phy_stop out from spinlockjuhosg2010-03-051-3/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20004 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ar71xx: ag71xx: move link update functionjuhosg2010-03-053-104/+105
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20003 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ar71xx: ag71xx: don't use dev->trans_startjuhosg2010-03-052-3/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20002 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ar71xx: ag71xx: use dma_unmap_single to unmap framesjuhosg2010-03-052-5/+14
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20001 3c298f89-4303-0410-b956-a3cf2f4a3e73
* this patch fixes package/Makefile.thepeople2010-03-051-2/+4
| | | | | | -Raphael git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20000 3c298f89-4303-0410-b956-a3cf2f4a3e73
* this patch fixes uboot-envtools so that it is no longer broken.thepeople2010-03-053-17/+132
| | | | | | -Raphael git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19999 3c298f89-4303-0410-b956-a3cf2f4a3e73
* there are quite a lot of package using ln -sf in their Makefile, sothepeople2010-03-051-1/+2
| | | | | | | | | | | | | this patch adds LN:=ln -sf to rules.mk -Raphael git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19998 3c298f89-4303-0410-b956-a3cf2f4a3e73
* this patch uses PKG_INSTALL:=1 and simplifies the Makefile,thepeople2010-03-051-33/+21
| | | | | | | | | | | | separates the menuconfig options in a separates Config.in file, adds a new patch to disable man pages (there was an error with QUILT=1 without this patch, as ln was used without -f), renames patches to be more explicit (and 1xx for Makefile patches and 2xx for source patches) -Raphael git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19997 3c298f89-4303-0410-b956-a3cf2f4a3e73
* The attached patch replaces $(1) install by $(if $(1), $(1),thepeople2010-03-051-1/+1
| | | | | | | | | | | | | | | | | | | install) in the definition, in order to be able to specify an install rule, which is not always called install (example: trunk/package/ncurses/Makefile has rules called install.libs and install.data). Then its possible to do this in ncurses Makefile: define Build/Install $(call Build/Install/Default, install.libs install.data) endef This patch does not affect anything else, as if no parameter is given, it will use install as before. -Raphael git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19996 3c298f89-4303-0410-b956-a3cf2f4a3e73
* this patch fixes toolchain parallel build, which reduces build time.thepeople2010-03-052-3/+3
| | | | | | | | | | | | | | | In order to enable parallel build, change line 21 of include/host-build.mk from: override MAKEFLAGS= to: override MAKEFLAGS=$(MAKE_JOBS) -Raphael git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19995 3c298f89-4303-0410-b956-a3cf2f4a3e73
* this patch simplifies the Makefile by using PKG_INSTALL:=1 and fixesthepeople2010-03-051-25/+22
| | | | | | | | parallel build. -Raphael git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19994 3c298f89-4303-0410-b956-a3cf2f4a3e73
* this patch simplifies the Makefile by using PKG_INSTALL:=1, and it alsothepeople2010-03-051-29/+23
| | | | | | | | fixes parallel build. -Raphael git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19993 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add build logs directory to 'svn:ignore' propertynico2010-03-050-0/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19990 3c298f89-4303-0410-b956-a3cf2f4a3e73
* remove bison requirement (see [10398] & [14900])nico2010-03-051-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19989 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [xburst] Add support for the n516lars2010-03-0511-3/+2467
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19987 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [xburst] Add subtarget for each devicelars2010-03-057-23/+57
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19986 3c298f89-4303-0410-b956-a3cf2f4a3e73
* image.mk: Adjust ubifs build behaviour to that of others image typeslars2010-03-051-1/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19985 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [xburst] jz4740 pm: Fix gpio suspend/resume. Turn pll off while in suspend ↵lars2010-03-056-20/+52
| | | | | | | | | and gate clocks off which arn't handeld by their subsystems yet. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19984 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [xburst] gpio.h: Add proper parenthesis to JZ_GPIO_PORTX macroslars2010-03-051-4/+4
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19983 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [xburst] jz4740_fb: Add support for parallel displays, improve power consumptionlars2010-03-053-106/+295
| | | | | | | and some minor bugfixes git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19982 3c298f89-4303-0410-b956-a3cf2f4a3e73
* include kernel-defaults.mk and use $(KERNEL_MAKEOPTS)nico2010-03-051-7/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19981 3c298f89-4303-0410-b956-a3cf2f4a3e73
* firstboot: detect mtd, rom & jffs parts first, fix jffs mounted testnico2010-03-051-5/+5
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19980 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [rdc] fix watchdog driver unregistering, patch by Bernhard Loosflorian2010-03-041-3/+12
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19979 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [xburst] jz4740_udc: Implement suspend/resumelars2010-03-041-9/+39
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19978 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [rdc] rework reboot mechanism with the new watchdog fixesflorian2010-03-043-2/+46
| | | | | | | | The fixing of the watchdog driver makes it generate a NMI so the reboot_fixup can no longer be called from NMI context, instead, override the machine_retart callback with our southrbridge reboot mechanism. Patch by Bernhard Loos. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19977 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [rdc] enable the required packages to use a gpio-based reset buttonflorian2010-03-041-1/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19976 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [rdc] remove now unused rdc321x_gpio.h fileflorian2010-03-041-16/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19975 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [rdc] improve sitecom device supportflorian2010-03-042-9/+14
| | | | | | | Add support for the 3 GPIO LEDs, reset button and switch to the gpio-buttons driver. Patch by Bernhard Loos. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19974 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [rdc] select ARCH_REQUIRE_GPIOLIB which is required for our gpiolib driverflorian2010-03-041-0/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19973 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [rdc] add a new southbridge driver which registers the gpio and watchdog ↵florian2010-03-045-97/+493
| | | | | | | | | platform devices This also fixes the watchdog logic and abstracts the access to the RDC321x southbridge PCI configuration register space. Based on a patch by Bernhard Loos. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19972 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [au1000] merge the two patches applying to the same file in a single patchflorian2010-03-042-10/+9
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19971 3c298f89-4303-0410-b956-a3cf2f4a3e73
* revert r19964 for now, there are issues with opkg/ipkg.py generating the ↵thepeople2010-03-041-3/+2
| | | | | | status db git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19970 3c298f89-4303-0410-b956-a3cf2f4a3e73
* brcm47xx: add CONFIG_CMDLINE againhauke2010-03-032-1/+3
| | | | | | | | Fix for r19955 this patch was suggested by tripolar git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19967 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ar71xx: restore command line on 2.6.33juhosg2010-03-031-0/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19966 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ar71xx: sync 2.6.33 configjuhosg2010-03-031-11/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19965 3c298f89-4303-0410-b956-a3cf2f4a3e73
* grab all config files for installed packages, closes #3718thepeople2010-03-031-2/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19964 3c298f89-4303-0410-b956-a3cf2f4a3e73
* 2.6.33 fixes for atheros and madwifimatteo2010-03-033-50/+628
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19963 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [toolchain] cleanup the 2.6.33 and later kernels kernel-headers installationflorian2010-03-031-5/+7
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19962 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: fix m25p80 patches for 2.6.33juhosg2010-03-033-15/+15
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19961 3c298f89-4303-0410-b956-a3cf2f4a3e73