Commit Graph

5772 Commits (7b37567d97fefdc1c8512ba798154a3d87e6d74b)

Author SHA1 Message Date
Felix Fietkau 5d6c3b75cb openssl: use assembler version of aes on arm - nearly doubles aes encryption performance
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18790 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-16 02:03:20 +00:00
Florian Fainelli 23475e7fc6 [package] let usb-video load after video-core (#6214)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18788 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-15 20:17:44 +00:00
Nicolas Thill 10b400aca8 [package] busybox: update to v1.15.3
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18781 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-15 03:38:51 +00:00
Nicolas Thill 845dd1e62b [package] busybox: remove uniq memleak patch, applet was fixed upstream in v1.15.2 (closes: #6354)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18778 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-14 15:57:00 +00:00
Jo-Philipp Wich 2387421e72 [package] kernel: fix typo that prevents autoloading of the rdc321x_wdt driver
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18767 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-12 21:31:17 +00:00
Gabor Juhos d8bb909f61 modules: package the leds-wndr3700-usb driver
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18759 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-11 20:32:33 +00:00
Felix Fietkau 0d653a7f94 madwifi: add a watchdog for software beacon alert interrupts
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18740 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-11 02:12:19 +00:00
Felix Fietkau 592b6f0527 madwifi: fix noise level display and make the cca threshold configurable through sysctl
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18739 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-11 02:12:15 +00:00
Felix Fietkau d46ae9ced2 firewall: fix fallout from r18716 (fixes #6338)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18733 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-10 18:18:37 +00:00
Gabor Juhos f06ac589fb mac80211: fix depends
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18732 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-10 13:50:02 +00:00
Felix Fietkau daddb72ac8 hostapd: parse the option for hiding the ESSID (#6310)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18727 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-09 19:10:54 +00:00
Felix Fietkau c9305ae6de add missing config option for v4l1 (fixes #6314)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18726 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-09 19:04:57 +00:00
Felix Fietkau 2ee3482123 Fix a memory leak in hotplug2 environment handling.
Bump hotplug2 to the latest svn revision, remove obsolete patches.

Memory leak is caused by the way hotplug2 handles environment variables,
using setenv() and unsetenv(). setenv() creates copies of the supplied
strings, but, due to a POSIX blunder, these copies are never destroyed
by unsetenv(), neither in glibc nor uclibc - not until the program
terminates.

Since some events are handled directly in the main process, even when
configured with the "fork" worker, hotplug2 memory usage will keep
growing over time. This can be observed by running "udevtrigger" and
noting the increase in hotplug2 VmRSS after each run.

This patch uses putenv() instead, which leaves storage management to
the caller, so that we can explicitly delete stuff when it's no longer
needed.

Signed-off-by: Aleksandar Radovanovic <biblbroks@sezampro.rs>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18725 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-09 18:50:49 +00:00
Felix Fietkau b259d8401e broadcom-wl: add rts/frag threshold settings (patch from #4769)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18720 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-09 17:29:10 +00:00
Felix Fietkau 12c45dea86 mac80211: fix RTS threshold not being set for mac80211 devices
A typo prevented it from working, tested with ar71xx and ath9k.

Signed-off-by: Otto Solares <solca@guug.org>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18719 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-09 17:22:25 +00:00
Felix Fietkau c2804524cf add missing argument to debug/mount wrappers (thx, matteo)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18718 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-09 17:13:16 +00:00
Felix Fietkau bede0a2b45 do not start multiple subshells for applying /etc/uci-defaults. use sh -x for hush compatibility
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18717 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-09 15:15:25 +00:00
Felix Fietkau 4476454249 firewall: get rid of recursive shell script inclusion to improve hush compatibility
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18716 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-09 14:04:37 +00:00
Felix Fietkau f922e0d01c functions.sh: use functions instead of aliases for the debug, mount wrappers - hush does not have aliases
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18715 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-09 13:36:43 +00:00
Felix Fietkau b561f00181 adjust dependencies of firewall and qos-scripts, so that these packages are visible even when iptables is not selected
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18714 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-09 13:36:39 +00:00
Felix Fietkau ab31be36b5 iptables: move to 'Network' in menuconfig
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18713 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-09 13:36:35 +00:00
Felix Fietkau e09a8a5293 busybox: adjust hush default configuration
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18712 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-09 13:36:28 +00:00
Jo-Philipp Wich b068068db4 [package] iptables: bump pkg revision
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18707 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-08 20:53:27 +00:00
Jo-Philipp Wich fd7b3cd30d [package] iptables: add comment match to the core package
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18706 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-08 20:52:58 +00:00
Felix Fietkau 3b13a0866d fix firmware loading broken by the busybox upgrade
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18705 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-08 20:04:38 +00:00
John Crispin edaad88c34 make uboot work on arcaydian board
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18700 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-08 14:37:12 +00:00
Florian Fainelli 7bba645a8a [package] package nls cp866 support (#6281)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18690 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-07 23:59:06 +00:00
Florian Fainelli 2469eb1820 [package] update busybox to 1.15.2 (#5926)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18684 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-07 16:56:04 +00:00
Felix Fietkau 3121231134 mac80211: update to compat-wireless 2009-12-05 and fix a critical bug in ath9k tx status reporting
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18666 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-05 17:12:56 +00:00
Felix Fietkau 2b3a751a63 mac80211: set the country code through iw reg, setting it only through hostapd apparently does not work
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18665 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-05 17:12:51 +00:00
Jo-Philipp Wich 92c4f4c6fb [package] mac80211: fix a shell syntax error
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18664 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-05 15:11:47 +00:00
Jo-Philipp Wich 0699d7b3fd [package] wpa_supplicant: relax parsing of encryption mode, drop support for uppercase modes
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18663 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-05 15:09:20 +00:00
Jo-Philipp Wich accf71c9a4 [package] mac80211: fix wpa handling in sta mode
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18662 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-05 15:08:25 +00:00
Florian Fainelli 3a5f494076 [package] allow building hostap-driver and its dependencies on 2.6.32 (#6305)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18658 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-05 12:54:30 +00:00
Florian Fainelli d70cf84d04 [package] CONFIG_RFKILL_INPUT is a boolean
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18634 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-04 14:52:41 +00:00
Florian Fainelli 2403af9344 [package] prevent madwifi from being compiled on sibyte
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18631 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-04 14:52:30 +00:00
Hamish Guthrie cbc6ab0a22 kmod-sound-ps3: Modified target dependencies
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18629 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-04 12:18:01 +00:00
Felix Fietkau 480e0110b7 mac80211: rename autogenerated wifi-device sections from wifi* to radio* to prevent conflicts with madwifi interface naming
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18627 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-03 18:35:31 +00:00
Felix Fietkau e54f80b979 ath9k: disable interrupt mitigation - it hurts performance on embedded systems
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18626 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-03 18:35:26 +00:00
Jo-Philipp Wich 6c70ebe4d5 [package] firewall: initialize dest_port with src_dport if omitted in redirect sections to narrow
down corresponding forward rules to the actual target ports - thanks Niels Boehm! (#6249)


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18617 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-12-01 22:31:10 +00:00
Florian Fainelli 87f44502b7 [mac80211] fix p54usb firmware installation (#6260)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18615 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-30 21:26:12 +00:00
Felix Fietkau e99873dd96 hostapd: update to latest git, fixes ampdu settings in the beacon HT IE
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18606 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-29 16:56:38 +00:00
Felix Fietkau 8f88338313 hostapd: replace the wme_* config variables with wmm_* ones (fixes #6247)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18602 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-29 14:13:47 +00:00
Felix Fietkau bb652ed5bb mac80211: fix up wds sta mode after r18591
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18600 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-29 13:56:41 +00:00
Florian Fainelli f6c457dbde [ubicom32] prevent some modules from being built on ubicom32 since they do not compile or link
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18595 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-29 00:33:32 +00:00
Hauke Mehrtens 917b6caf0f [crda] Update regulatory database to version 2009.11.25
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18592 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-28 23:16:40 +00:00
Hauke Mehrtens 9faca62338 [iw] Update iw to version 0.9.18
The deleted patches went upstream.


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18591 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-28 23:16:11 +00:00
Gabor Juhos d1ec33fe54 mac80211: use mac address from platform data if present on ath9k
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18584 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-28 18:01:03 +00:00
Gabor Juhos 6dba631d40 mac80211: fix detection of multiple mac80211 devices
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18583 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-28 18:00:59 +00:00
Gabor Juhos 962efb9e0d mac80211: remove trailing whitespaces in mac80211.sh
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18582 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-28 18:00:53 +00:00
Florian Fainelli 4dfc8b90e1 [mac80211] update p54usb firmware to 2.13.24.0.lm87.arm (#6177, #6237)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18580 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-28 14:25:41 +00:00
Gabor Juhos 7fdea88dc4 mac80211: fix default channel selection in mac80211.sh (thanks to blubberdiblub)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18577 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-28 13:49:14 +00:00
Gabor Juhos 5180ca317c mac80211: fix a typo in the mac80211.sh
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18567 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-27 21:21:28 +00:00
Gabor Juhos ed0c687e93 mac80211: update ath9k patch
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18563 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-27 21:21:14 +00:00
Gabor Juhos 701171cccd mac80211: select channel 36 by default on 5GHz only devices
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18562 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-27 21:21:10 +00:00
Florian Fainelli e602bdc1cb [package] libuuid needs to be compiled with fPIC/pic.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18542 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-26 16:05:20 +00:00
Markus Wigge 5e3b96115c new upstream release 2.51 with some fixes, see
http://www.thekelleys.org.uk/dnsmasq/CHANGELOG
refreshed patches for new release


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18541 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-26 10:58:01 +00:00
Gabor Juhos 3662ae4e38 package/mac80211: disable 2GHz band for 5GHz only devices
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18537 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-25 20:35:58 +00:00
Florian Fainelli feb155b658 [package] prevent busybox's ping6 from crashing (#4604)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18528 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-24 22:13:19 +00:00
Felix Fietkau b9a8774735 ath: only use GFP_DMA on ixp4xx
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18525 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-24 13:55:37 +00:00
Hamish Guthrie 9f716bc1f1 kmod-sound-core: Add new 2.6.32 kernel config option
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18523 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-24 10:39:31 +00:00
Florian Fainelli 089c8b4f50 [package] downgrade e2fsprogs to 1.40.11 which does not segfault until we fix the issue (#6073)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18517 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-23 23:53:23 +00:00
Florian Fainelli 3ec46af42b [package] package sfdisk from util-linux-ng (#5998)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18513 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-23 22:30:45 +00:00
Florian Fainelli a8134e221a [package] update compcache to 0.5.4 (#6018)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18512 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-23 22:30:42 +00:00
Felix Fietkau a3e05d4f85 separate ath9k debugfs support from ath9k debugging, use the mac80211 debugfs config option to enable it
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18505 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-23 22:01:45 +00:00
Felix Fietkau 73cfbe2a9d mac80211: do not build b44
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18504 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-23 22:01:40 +00:00
Felix Fietkau 6c22a20a48 ath9k: add a few debugfs files to access the chainmasks and registers
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18503 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-23 20:38:18 +00:00
Felix Fietkau 74708e9b3e mount debugfs by default
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18502 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-23 20:35:05 +00:00
Felix Fietkau 9ddb6d845c hostapd: fix rebuild checks (#6210)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18497 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-23 17:12:54 +00:00
Nicolas Thill 4533fe58cd busybox: restore previous inittab handling when terminal can't be accessed (closes: #6181)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18485 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-22 17:00:50 +00:00
Jo-Philipp Wich e13c38658f [package] dnsmasq: Set a list of addnhosts files.
e.g.
	list 'addnhosts' '/var/etc/hosts.olsr'
	list 'addnhosts' '/var/etc/hosts.olsrv6'
hosts.olsr for ipv4 and hosts.olsrv6 for ipv6 addresses.
Signed-off-by: Patrick Grimm <patrick@lunatiki.de>


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18470 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-22 11:52:08 +00:00
Felix Fietkau 20ac8677d6 mac80211: update to compat-wireless 2009-11-21
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18465 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-22 07:13:30 +00:00
Felix Fietkau 0f48fd8058 build variants: only build opkg packages for the requested build variant (or any if no variant was specified for the package)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18464 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-22 07:08:39 +00:00
Jo-Philipp Wich 8151a5f6da [package] base-files: sysupgrade: restrict find command to plain files to avoid duplicates when generating the conffiles tgz archive
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18455 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-20 23:02:35 +00:00
Felix Fietkau 6c4d9a9575 ath9k: fix compiler warning without debug enabled
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18452 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-18 18:35:31 +00:00
Felix Fietkau 55397032f7 ath9k: fix bisectability of rc patches
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18445 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-18 04:42:40 +00:00
Felix Fietkau 49690c677a ath9k: split up and adjust rc cleanup patch according to upstream feedback, also fix tx status reporting for minstrel compatibility
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18444 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-18 03:48:55 +00:00
Nicolas Thill 8a0ee0652f change ext2/ext3 load order so that lazy mount tries ext3 before ext2
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18442 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-17 21:29:27 +00:00
Gabor Juhos 29631f1865 package/mac80211: use platform_data on PCI devices in ath9k
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18436 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-16 17:31:29 +00:00
Felix Fietkau 6d20bb64bd ath: use GFP_DMA for rx buffer allocations to fix allocation errors on ixp4xx devices with more than 64 MB RAM
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18433 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-16 00:44:39 +00:00
Felix Fietkau 0d1e914fb9 mac80211: adjust patches based on upstream feedback
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18431 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-15 22:05:03 +00:00
Felix Fietkau a60fc25bc6 mac80211: add some missing patch chunks that were accidentally left out in the previous commit
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18430 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-15 21:36:40 +00:00
Felix Fietkau 64eeed991f ath9k: work-in-progress patch to adapt ath9k to the mac80211 rate control api
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18429 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-15 21:21:56 +00:00
Felix Fietkau 0f99d41ff1 ath9k: fix massive packet loss issue introduced by upstream cleanups
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18428 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-15 21:21:52 +00:00
Felix Fietkau bd8e2a1324 mac80211: sync with changes to patches submitted upstream
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18427 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-15 21:21:47 +00:00
Jo-Philipp Wich 48b86bd36e [brcm-2.4] change switch config to swconfig style format to remain consistent accross platforms
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18425 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-15 18:43:46 +00:00
Jo-Philipp Wich fb909f7093 [package] iproute2: honour when building libnetlink.a, completes r18323 and fixes #6160
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18422 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-14 21:32:30 +00:00
Hauke Mehrtens 1cd73da326 [hostapd-utils] fix build of hostapd-utils
This fixes #6158.
Thank you Will Dyson for your patch.


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18417 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-14 12:21:25 +00:00
Felix Fietkau 1fc1a727cd e1000: add CONFIG_E1000_NAPI=y for older kernels
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18416 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-14 02:55:48 +00:00
Felix Fietkau 77c792c58f mac80211: update to 2009-11-13 and add some of my new performance improvement patches. fixes excessive cpu usage of hostapd in ap mode, should also fix the ath9k memleak
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18415 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-14 02:35:04 +00:00
Gabor Juhos 13bf4626db package/mac80211: add config option to enable Atheros wireless debugging
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18412 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-13 17:11:43 +00:00
Felix Fietkau 6689068b34 hostapd: fix endian bugs in STA HT capability handling
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18405 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-12 14:15:13 +00:00
Felix Fietkau 0cd687487e hostapd: fix HT40 BSS scan checks
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18404 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-12 14:15:09 +00:00
Imre Kaloz 602b676769 neither avr32 or coldfire has a shared libgcc
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18402 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-12 12:20:38 +00:00
Imre Kaloz 7ab7619ffa update openssl to 0.9.8l -- thanks puchu
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18398 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-12 10:39:10 +00:00
Jo-Philipp Wich b0c0b2010b [package] opkg: forgot to remove two obsolete patches in last commit
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18381 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-11 22:13:10 +00:00
Jo-Philipp Wich 374664f3af [package] opkg: bump to r284
- incorporates parsing improvements upstream
	- fixes a couple of memory leaks
	- fixes some null pointer dereferences
	- fixes possible crashes during removal of packages
	- various other corrections


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18380 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-11 21:42:05 +00:00
Felix Fietkau 87daff29ba mac80211: disable powersave on the sta by default (for performance reasons)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18379 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-11 16:59:36 +00:00
Felix Fietkau 7df88d1517 wireless-tools: re-enable support for enabling/disabling powersave
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18378 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-11 16:59:31 +00:00
Felix Fietkau 7e5995898f mac80211: fix a race condition when bringing up wds sta interfaces on the ap
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18377 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-11 16:32:09 +00:00
Felix Fietkau 795f9b8a42 e1000: depend on pci support instead of x86 target - some people have minipci cards with this chipset
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18376 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-11 16:30:33 +00:00
Felix Fietkau 52b1e9bd2b hostapd: automatically add wds sta interfaces of an ap to the right bridge
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18365 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-11 05:15:55 +00:00
Felix Fietkau 46b2f0a154 hostapd: implement wds ap support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18364 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-11 05:15:51 +00:00
Felix Fietkau 57109ac50c mac80211: fix a bug in broadcast handling of wds sta interfaces
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18363 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-11 05:15:41 +00:00
Felix Fietkau 388ec02291 hostapd: update to latest git, remove openssl dependency for hostapd-full, it works with internal crypto now
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18360 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-11 00:34:42 +00:00
Felix Fietkau a4bee0e590 hostapd: use the new build variants feature to clean up the makefile
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18358 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-10 22:00:59 +00:00
Felix Fietkau 085fe6bf4b mac80211: implement wds sta support (wds ap support work in progress, needs hostapd changes)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18356 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-10 19:27:19 +00:00
Felix Fietkau 5e3e6c8c0d mac80211: fix wpa in client mode
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18355 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-10 19:27:13 +00:00
Imre Kaloz 230ccbe23d add preliminary MPC83xx support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18353 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-09 11:45:04 +00:00
Felix Fietkau 80a950543c mac80211: fix wifi detect with 11n cards that have multiple bands
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18351 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-09 00:58:39 +00:00
Felix Fietkau a73d9490c2 b43: work around a locking issue, might fix #5996
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18338 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-07 17:40:52 +00:00
Felix Fietkau 4ae67d3a1c iproute2: compile the static libraries with $(FPIC), as they are reused by other packages for inclusion into shared libraries
should fix collectd build failures on mips

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18323 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-05 22:29:14 +00:00
Felix Fietkau 50dcc22634 uboot-ifxmips: fix compile errors with the cs toolchain due to non-PIC code
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18321 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-05 21:25:31 +00:00
Felix Fietkau 5a1627929d oops, forgot the autoload
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18319 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-05 16:12:11 +00:00
Felix Fietkau 425ef1e751 fix kmod-leds-alix (#6079, #6105)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18318 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-05 16:11:45 +00:00
Felix Fietkau b1d6fa098a fix up the download location for the updated mac80211 version (thx, swalker)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18317 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-05 16:05:52 +00:00
Florian Fainelli 16468dd53b [package] fix breakage introduced with r18315
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18316 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-05 14:35:36 +00:00
Florian Fainelli 9b445d0978 [package] remove the patch dir hack in iptables when building with an
external tree, this did not work at all.

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18315 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-05 14:21:05 +00:00
Felix Fietkau cf3d141a6c Pass TARGET_CFLAGS using and external variable instead a sed expression that can fail when TARGET_CFLAGS contains the ":" symbol.
Signed-off: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18311 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-05 11:55:00 +00:00
Felix Fietkau f9df1cb603 add missing CONFIG_MEDIA_SUPPORT symbol for v4l (fixes #6108)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18309 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-05 11:06:23 +00:00
Florian Fainelli c3b4b1b54f [rdc] make rdc321-wdt become a package, saves some space in the kernel
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18298 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-04 22:43:05 +00:00
Felix Fietkau af337563cb mac80211: update to 2009-11-03
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18294 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-04 21:54:47 +00:00
Felix Fietkau 2f8e54f673 mac80211: fill some important capabilities into ht_capab in the hostapd config
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18293 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-04 21:53:49 +00:00
Felix Fietkau b847b4f846 madwifi: fix a crash bug related to refcounting of bss nodes
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18290 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-04 00:05:56 +00:00
Florian Fainelli 7b6bda3ebf [package] fix breakage on wl500gp after r18214, thanks sn9 (#6084)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18289 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-03 20:35:37 +00:00
Imre Kaloz 6f4a759637 add preliminary 2.6.32 support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18283 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-03 10:49:27 +00:00
John Crispin 2db1fd2e8d [ifxmips] clean up menuconfig path of dsl driver and userland helper
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18260 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-01 19:05:32 +00:00
John Crispin 4b32ac9e64 [ifxmips] adds dsl support, thank you infineon/lantiq
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18259 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-01 18:52:35 +00:00
Florian Fainelli 87bc494c86 [package] fix hostapd frame injection in mac80211, backport 9b1ce526eb917c8b5c8497c327768130ee683392 (#6070)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18258 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-11-01 10:46:36 +00:00
Florian Fainelli ba8d1af30b [package] kmod-libertas needs kmod-lib80211 to load
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18244 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-31 12:28:55 +00:00
Florian Fainelli 9814a479c1 [package] fix siit compilation failures on brcm-2.4
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18228 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-30 14:14:53 +00:00
John Crispin ef50787039 make etehrent work on wrt350n, thx sn9
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18214 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-29 21:26:36 +00:00
John Crispin 52711df1de fixes bluetooth dependency, thx sn9
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18213 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-29 21:25:55 +00:00
Florian Fainelli 5c185a0be8 [package] remove references to 2_6_27
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18202 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-29 12:22:53 +00:00
John Crispin 31ab731f57 fixes DEPENDS of SSB module, thx sn9
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18196 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-28 15:10:30 +00:00
Jo-Philipp Wich d82615bfc0 [package] lua: add the 100-no_readline.patch to host build
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18195 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-28 13:56:33 +00:00
Jo-Philipp Wich 04f57c7f87 [package] lua: the variable expansion to detect the host os does not work with GNU Make 3.81, replace it with a nested ifeq
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18193 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-28 00:11:59 +00:00
Florian Fainelli d8c2ea3577 [package] fix siit compile with 2.6.30 kernels and superior, when CONFIG_COMPAT_NET_DEV_OPS is not set
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18191 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-27 22:50:34 +00:00
Felix Fietkau 3a333ed649 lua: fix a typo
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18190 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-27 21:28:15 +00:00
Felix Fietkau 1d38751d6b lua: re-enable host builds with some more fixes
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18189 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-27 21:18:58 +00:00
Felix Fietkau 93f9088dab lua: fix regressions in operator overloading caused by the refcounting patch, also fix some more variable cleanup issues => even more performance, less memory utilization
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18164 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-26 14:27:30 +00:00
Felix Fietkau 690a9adf58 lua: use float instead of double, reduces the gc data structure size by 4 byte => luci processes use 10% less memory
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18159 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-26 03:01:12 +00:00
Felix Fietkau f1f87a53ac lua: fix various bugs in the refcounting implementation. seems to fix luci and reduces memory consumption even more
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18158 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-26 00:06:42 +00:00
Felix Fietkau e194dc2fef lua: get rid of bitlib and md5lib from the core, they are no longer necessary
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18138 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-24 23:23:42 +00:00
Felix Fietkau 0ee38138a3 lua: add reference counting for strings - this will need A LOT of testing, but it should finally fix the excessive memory usage problems triggered by luci
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18136 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-24 22:19:13 +00:00
Jo-Philipp Wich b14afe135b [package] opkg: ignore Section, Source and Maintainer as well when ignoring descriptions, saves a few hundred KB memory
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18124 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-22 17:16:13 +00:00
Jo-Philipp Wich 41d87fb7a8 [package] opkg:
- re-enable upgrade and restrict it to signle packages, fix usage text
	- only read package descriptions if they're actually needed (almost never),
	  saves even more space when parsing package lists
	- refresh patches


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18120 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-22 15:15:19 +00:00
Jo-Philipp Wich bd44398aea [package] opkg:
- replace package list parser by something that works with fixed buffers
	  to avoid slurping the whole file into memory during parsing
	- fix a possible null pointer dereference in opkg_remove_cmd()
	- get rid of upgrade, it cannot upgrade single packages and kills
	  the system in most cases
	- get rid of the flag operation, not needed
	- bump package revision


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18119 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-22 08:46:55 +00:00
Felix Fietkau fa98e6a6e4 madwifi: reduce the size of the multicall tool binary
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18112 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-21 00:20:42 +00:00
Felix Fietkau 020508d5cb do not relink libresolv, it makes iproute2 barf
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18111 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-20 22:22:59 +00:00
Felix Fietkau 0d0503903c remove obsolete uci validation awk code
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18110 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-20 21:48:40 +00:00
Felix Fietkau 24b93bd9d7 base-files: remove obsolete stuff from common.awk
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18109 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-20 21:45:57 +00:00
Felix Fietkau 45f00e762d wireless-tools: reduce binary size by ~13k by removing unused/obsolete features
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18108 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-20 21:40:09 +00:00
Felix Fietkau 53c6087f48 hostapd: make compilation of the hostap driver conditional - saves 10k uncompressed
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18107 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-20 21:14:57 +00:00
Felix Fietkau 3c635449d3 hotplug2: get rid of the unnecessary reference to libdl as well
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18106 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-20 20:59:40 +00:00
Felix Fietkau 7a230fb6be hotplug2: compile in the worker module statically, saves >20k uncompressed
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18104 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-20 20:49:44 +00:00
Jo-Philipp Wich 796f34550c [package] base-files: only try to execute watchdog if binary is present
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18102 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-20 17:07:08 +00:00
Felix Fietkau e930939698 remove $(FPIC) from iptables, it is handled internally correctly. saves 2k on mips
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18098 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-20 11:44:16 +00:00
Felix Fietkau 975e7ac2fc zlib: replace -fPIC with $(FPIC)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18093 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-20 08:41:32 +00:00
Felix Fietkau e218149d72 uci: only use $(FPIC) on library parts, saves a few hundred bytes
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18092 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-20 08:26:39 +00:00
Felix Fietkau 0ee55d9f55 opkg: get rid of libopkg, saves >10k compressed, >40k uncompressed
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18091 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-20 08:21:10 +00:00
Felix Fietkau fd2da7768e fix pthread mklibs relinking by copying libpthread_so.a from uclibc instead of using the standard _pic variant
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18090 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-20 07:26:34 +00:00
Felix Fietkau f0f6a06c0a install the right version of libgcc along with its version map to fix relinking issues with mklibs, attempt to relink only if the version map is actually present
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18089 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-20 06:57:19 +00:00
Hamish Guthrie 0996be22e7 [busybox] At boot, the startup process is executed in a non-interactive shell. Default behavior for a non-interactive shell is that SIGINT is processeld locally by the shell (and typically ignored), this runtime environment is inherited by children, hence Ctrl-C has no effect within a telnet session. This patch enables the correct behavior
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18088 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-20 06:51:30 +00:00
Felix Fietkau ccd27b5c7d mark uboot-envtools as broken, it looks more like a place holder than an actual packaging attempt
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18079 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-19 19:15:08 +00:00
Felix Fietkau ca7a7f6155 remove support for uclibc 0.9.29
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18078 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-19 18:25:25 +00:00
Felix Fietkau 863546509a mac80211: fix ath5k compile on 2.6.28 and earlier
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18065 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-19 04:28:15 +00:00
Felix Fietkau 15551bacbf hotplug2: fix "MALLOC FAILURE!" message caused by a missing return code check on recv()
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18061 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-19 02:39:02 +00:00
Felix Fietkau 5abfaa17c9 madwifi: add antenna gpio support for nanostation loco2
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18055 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-17 22:11:14 +00:00
Felix Fietkau 1952bca0f3 madwifi: remove the 10HZ timer for updating rate control statistics
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18053 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-17 04:56:09 +00:00
Felix Fietkau e1f4d37287 madwifi: fix various noderef/memleak issues
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18052 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-17 04:56:05 +00:00
Felix Fietkau 27c31f11b1 hostapd: do not configure wme when using madwifi - fixes wpa/wpa2 association problems
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18051 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-17 04:55:59 +00:00
Felix Fietkau b6c8fa2cea madwifi: more ad-hoc fixes
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18050 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-15 19:20:43 +00:00
Felix Fietkau a08809bb4f madwifi: fix another ibss crash (#5935)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18048 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-14 21:15:45 +00:00
Felix Fietkau d45237dcd1 madwifi: fix race condition on ibss init (#5935)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18046 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-14 08:29:46 +00:00
Felix Fietkau 20a9691a9e madwifi: beacon timer fixes
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18045 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-14 08:29:37 +00:00
Vasilis Tsiligiannis f792506c9f [package] usb-core: Add dependency to nls-base (#5973)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18041 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-12 11:44:36 +00:00
Felix Fietkau ef18709959 mac80211: fix download url (#5980)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18040 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-11 23:11:39 +00:00
Felix Fietkau db74177204 mac80211: fix a warning during interface bringup when using autochannel
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18034 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-11 15:06:12 +00:00
Nicolas Thill 63797985c0 mac80211: fix rt2800pci, tx ack timeout is now hardcoded
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18031 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-11 04:00:58 +00:00
Felix Fietkau 5aa9958352 mac80211: fix ibss join/create
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18030 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-11 03:13:57 +00:00
Felix Fietkau b83fd240a2 firewall: fix zone defaults
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18028 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-11 02:42:22 +00:00
Felix Fietkau 4d50dc292c mac80211: fix encryption fallback for sta mode, add frequency/bssid selection support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18025 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-11 01:05:17 +00:00
Felix Fietkau bc3a78d25b mac80211: fix autochannel / fixed channel selection, add commands for unencrypted sta mode
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18024 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-11 01:01:12 +00:00
Felix Fietkau 3a81e25e02 mac80211: upgrade to latest compat-wireless, fix ad-hoc interface setup
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18023 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-11 00:36:23 +00:00
Felix Fietkau 13de9a716a gcc: add llvm-gcc and llvm from trunk (does not successfully compile a target yet, but gets close)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18019 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-10 19:25:48 +00:00
Felix Fietkau 46b99120de udevtrigger: use the build system cflags
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18018 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-10 19:25:31 +00:00
Felix Fietkau a0071bba09 firewall: do not process rules in reverse
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18015 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-10 18:08:26 +00:00
Florian Fainelli a8be10c230 [octeon] package the octeon compact flash driver
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18012 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-09 07:36:19 +00:00
John Crispin 6ca9f5f2d7 #4985 - fixes dropbear banner file, thanks Roman Yepishev
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18009 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-08 18:58:15 +00:00
Florian Fainelli fee30ff73a [octeon] add support for the dwc_otg USB controller
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18006 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-08 17:56:31 +00:00
Florian Fainelli debed36adf [package] we cannot build madwifi for octeon since there is no mips64r2 hal target
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18001 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-08 12:11:32 +00:00
Imre Kaloz 99d8fa6f15 enable ATA_SFF (PATA support) in the generic configs
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17993 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-08 09:40:38 +00:00
Florian Fainelli 834cae663b [package] fix typos in KernelPackage/libertas
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17986 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-07 18:54:17 +00:00
Nicolas Thill d7affd9bfb [package] libertas: use driver from compat-wireless instead of our own (deprecated) one
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17982 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-07 16:03:31 +00:00
Florian Fainelli 889e0e6834 [package] add uboot-envtools
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17981 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-07 15:14:28 +00:00
Nicolas Thill 5416a9c3d5 [package] madwifi: add HAL_TARGET mapping for kirkwood board
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17960 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-06 20:55:24 +00:00
Florian Fainelli 94e8310e00 [package* ata-ixp4xx-cf depends on TARGET_ixp4xx
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17956 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-06 15:24:28 +00:00
Florian Fainelli 64ccd01e25 [package] madwifi cannot be compiled on cobalt which has a different mips cpu abi
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17953 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-06 06:07:36 +00:00
Felix Fietkau 1f0c5ad7aa fix opkg directory cleaning (#5646)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17952 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-06 04:50:53 +00:00