summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [scripts] ext-toolchain.sh: CONFIG_NLS -> CONFIG_BUILD_NLSjow2012-01-191-2/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29782 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [scripts] ext-toolchain.sh: fix typojow2012-01-191-2/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29781 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [scripts] ext-toolchain.sh: add option to write .configjow2012-01-181-3/+137
| | | | | | | | | | | | Add a new --config option to generate a .config from a given toolchain, this allows for easy integration of external toolchains, e.g. ./scripts/ext-toolchain.sh --toolchain /opt/mips-2011.03 --cflags "-muclibc" --config atheros to setup a ready-to-compile atheros target using the external CodeSourcery toolchain. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29780 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] mtd: external toolchains usually do not know about MTDREFRESH, so ↵jow2012-01-181-1/+1
| | | | | | search in $(LINUX_DIR)/include first, fixes compilation with external CodeSourcery toolchain git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29779 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] iptables: pass --disable-ipv6 if CONFIG_IPV6 is off, fixes ↵jow2012-01-181-1/+1
| | | | | | undefined refs to in6addr_any when compiling with external CodeSourcery toolchain git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29778 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] dnsmasq: if CONFIG_IPV6 is off, compile with -DNO_IPV6 - solves ↵jow2012-01-181-1/+3
| | | | | | unresolved refs to in6addr_any when building with external CodeSourcery toolchain git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29777 3c298f89-4303-0410-b956-a3cf2f4a3e73
* packages: kernel: add usb-common.ko to usb package for kernel >= 3.2hauke2012-01-181-2/+9
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29776 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] openssl: fix syntax error in OpenWrt Makefilejow2012-01-181-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29774 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [kernel] fix thinko in 102-ehci_hcd_ignore_oc patchflorian2012-01-184-8/+8
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29773 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [scripts] ext-toolchain.sh: properly handle toolchains without sysroot supportjow2012-01-181-9/+6
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29772 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] openssl: don't fail with empty TARGET_LDFLAGSjow2012-01-181-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29770 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [scripts] ext-toolchain.sh:jow2012-01-181-21/+21
| | | | | | | | | | - use GCC's own idea of the target name (-dumpmachine) - display help if called without args - add copyright foo - remove some leftover flag handling code git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29769 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [toolchain] invoke patch-specs.sh in the gcc/final install stage.jow2012-01-181-0/+1
| | | | | | | | | | | Patch up OpenWrts own cross toolchains to always search headers and libraries in $STAGING_DIR, this should solve most issues with missing headers, indirect linking and not found libraries. At a later stage, all -I and -L flags will be purged from TARGET_LDFLAGS and TARGET_CPPFLAGS. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29768 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [scripts] add patch-specs.sh, a utility for modifying GCC specsjow2012-01-181-0/+64
| | | | | | | | | | | The patch-specs.sh utility dumps the GCC specs of a given toolchain and modifies them to always include $STAGING_DIR in the link and compiler command lines, this makes most -I and -L flags unnecessary and lets the compiler automatically find libraries and headers in the staging dir, also solves the majority of -rpath issues. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29767 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [buildroot] use ext-toolchain.sh to integrate external toolchainsjow2012-01-183-2/+64
| | | | | | | | | Use ext-toolchain.sh to wrap external toolchain commands, abort build if certain features such as CONFIG_SOFT_FLOAT or CONFIG_IPV6 are enabled but not supported by the toolchain. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29766 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [scripts] add ext-toolchain.sh, a utility for external toolchainsjow2012-01-181-0/+410
| | | | | | | | | | | | | The ext-toolchain.sh utility script implements various external toolchain tasks: * Testing of available features, like c++, soft-float or ipv6 support * Finding the libc implementation (uclibc or eglibc/glibc) * Inferring the GNU target name * Finding shared objects for packaging (libc, libpthread, ...) * Finding executables for packaging (ldd, gdbserver, ...) * Generating wrapper scripts for toolchain commands git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29765 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [lantiq] gigaset 76xblogic2012-01-172-21/+17
| | | | | | | | | | | * fixes leds * adds all leds found on the sx763 board * removes board_config from flash layout because wireless data is stored in kernel (ath5k) * fix button handling Signed-off-by: Luka Perkov <openwrt@lukaperkov.net> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29763 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ramips: Rework ramips_eth to not require irqsave locking anymoreblogic2012-01-171-6/+9
| | | | | | | | | | | | | | | | | Previously the tx housekeeping was done in a spin_lock_irqsave critical section which causes irqs to be disabled during that time. Since the housekeeping is already prepared to be scheduled as a tasklet process the housekeeping only in softirq context and revise the locking between the tx path and the housekeeping tasklet by using a normal spin_lock which in most situations will be a NOP anyway. This makes sure that interrupts are only disabled for a short time since in the worst case the housekeeping might have to free up to 256 skbs. Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29762 3c298f89-4303-0410-b956-a3cf2f4a3e73
* rt2x00: add a patch to avoid excessive memmove() on packet contents to ↵nbd2012-01-161-0/+67
| | | | | | improve performance (patch by Helmut Schaa) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29760 3c298f89-4303-0410-b956-a3cf2f4a3e73
* brcm47xx: add support for kernel 3.2hauke2012-01-1547-0/+7484
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29756 3c298f89-4303-0410-b956-a3cf2f4a3e73
* brcm47xx: run kernel_oldconfighauke2012-01-151-2/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29755 3c298f89-4303-0410-b956-a3cf2f4a3e73
* tools: clean up Makefiles / make ccache workblogic2012-01-1515-83/+31
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29754 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [target/omap4]: add support for OMAP4 based boards, starting with the PandaBoardkaloz2012-01-149-0/+748
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29753 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package/mac80211]: build and package the wl12xx driverkaloz2012-01-141-5/+34
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29751 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [generic/3.2]: fixup arm xz support with recent changeskaloz2012-01-141-1/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29750 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [generic/3.2]: add missing symbolskaloz2012-01-141-1/+14
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29749 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [toolchain/gcc]: upgrade to latest linaro releaseskaloz2012-01-147-34/+17
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29748 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: disable bridge igmp snooping in 3.2 as wellnbd2012-01-141-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29747 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ath9k: fix handling of the KeyMiss flag for received packets - fixes ↵nbd2012-01-141-0/+32
| | | | | | connection stability issues with crypto enabled git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29745 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: disable bridge igmp snooping by default to avoid multicast issuesnbd2012-01-146-6/+6
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29744 3c298f89-4303-0410-b956-a3cf2f4a3e73
* libnl-tiny: export unl_genl_multicast_id()nbd2012-01-142-1/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29743 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: ppc40x: ppc44x: add missing kernel config symboljogo2012-01-143-0/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29742 3c298f89-4303-0410-b956-a3cf2f4a3e73
* broadcom-diag: add support for some new deviceshauke2012-01-131-0/+73
| | | | | | | | | There is still no Ethernet driver for these devices in trunk. Thanks George Kashperko for the patch. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29735 3c298f89-4303-0410-b956-a3cf2f4a3e73
* brcm47xx: update usb driverhauke2012-01-132-99/+113
| | | | | | | | | | | | | | | | | | Add workarround for BCM5357 and BCM4749. This patch contains the following fixes from George Kashperko: * separate subroutines for controller initialization workarounds - following CodingStyle recommendations; * __devinit __devexit __devinitconst annotations for CONFIG_HOTPLUG; * fix leak in ssb_hcd_create_pdev/bcma_hcd_create_pdev - as hci_res being kmalloc'ed is never freed anywhere while platform_device_add_resources will kmemdup resources right away; * fix compilation error in ssb_hcd_resume - it will fail as soon as CONFIG_PM is selected. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29734 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [generic] rtl8366: fix rtl8366_smi_detect() after r29677jow2012-01-131-0/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29732 3c298f89-4303-0410-b956-a3cf2f4a3e73
* brcm63xx: add support for linux 3.2jogo2012-01-1339-0/+5195
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29731 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: add support for linux 3.2.1jogo2012-01-13126-0/+66390
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29730 3c298f89-4303-0410-b956-a3cf2f4a3e73
* package: iptables: fix compilation with linux 3.2jogo2012-01-131-0/+12
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29729 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: current revisions build with 3.2jogo2012-01-131-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29728 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: backport overlayfs v11 to 3.0 and 2.6.39jogo2012-01-132-1868/+2307
| | | | | | Should fix whiteout issues and missing files when using extroot. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29727 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: update linux 3.1 to 3.1.9jogo2012-01-1324-62/+43
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29726 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: update linux 3.0 to 3.0.17jogo2012-01-1329-70/+50
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29725 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] iwinfo: plug memory leak in nl80211 backend, nl80211_close() did ↵jow2012-01-132-2/+5
| | | | | | not put the family pointer git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29723 3c298f89-4303-0410-b956-a3cf2f4a3e73
* gcc: always explicitly link against libstdc++, fixes build errors on some ↵nbd2012-01-121-1/+1
| | | | | | hosts that refuse to link it in implicitly (should fix #10587) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29721 3c298f89-4303-0410-b956-a3cf2f4a3e73
* libnl-tiny: fix a potential memleak in an error pathnbd2012-01-121-4/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29720 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ar8216: use vlan configuration for connecting ports (forced to be untagged) ↵nbd2012-01-121-1/+7
| | | | | | | | even with vlan_enable=0, but keep them isolated before the switch has been configured this makes enable_vlan=0 practical for vlan passthrough git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29719 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ar8216: do not strip vlan tags when running with vlan_enable=0nbd2012-01-121-3/+6
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29718 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ar71xx: move irq_to_gpio and gpio_to_irq into gpio.cjuhosg2012-01-112-12/+14
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29713 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [brcm63xx] Remove invalid LED GPIO from GW6200 board definition. GPIO 35 ↵cshore2012-01-1113-40/+25
| | | | | | isn't intended to control ethernet LED (the led behaviour is a side effect) and using the gpio as an led causes kernel panics. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29712 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ar71xx: disable ath79 in order to get rid of Kconfig warningsjuhosg2012-01-111-0/+11
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29711 3c298f89-4303-0410-b956-a3cf2f4a3e73