Commit graph

3477 commits

Author SHA1 Message Date
Jo-Philipp Wich
908bdfd435 opkg: the current version leaves empty temp directories behind, clean them up before exit
SVN-Revision: 18872
2009-12-21 03:28:11 +00:00
Nicolas Thill
f1f5ea2739 e2fsprogs: use select-style dependencies, don't ship dev shlib symlink
SVN-Revision: 18866
2009-12-21 00:59:14 +00:00
Nicolas Thill
efff03d144 gdb: fix build failure with arm targets
SVN-Revision: 18865
2009-12-20 23:24:16 +00:00
Jo-Philipp Wich
608de32479 opkg: update to r503 - reduces peak memory usage by further 20%, rebased patches, restored old config file default
SVN-Revision: 18864
2009-12-20 21:21:14 +00:00
Felix Fietkau
6d3d1504cf mac80211: fix a race condition in ad-hoc bringup with fixed bssid
SVN-Revision: 18859
2009-12-20 11:04:43 +00:00
Felix Fietkau
0acff05a9c ipfix: sync changes from openimp
SVN-Revision: 18856
2009-12-19 22:19:42 +00:00
Felix Fietkau
93f368cb23 libipfix: specify the number of the wprobe ie append script on the command line
SVN-Revision: 18855
2009-12-19 22:19:34 +00:00
Felix Fietkau
2caa29bc44 wprobe-util: always print regular output to stdout instead of stderr
SVN-Revision: 18854
2009-12-19 22:19:26 +00:00
Felix Fietkau
da80071315 madwifi: fix antenna selection for ubnt loco2/loco5
SVN-Revision: 18853
2009-12-19 22:19:19 +00:00
Felix Fietkau
6a2c27b4e8 wprobe: export raw values (n, s, ss) to ipfix collectors for improved measurement accuracy
SVN-Revision: 18852
2009-12-19 22:19:09 +00:00
Nicolas Thill
8b10e4eab2 kernel: use select instead of depend for kmod-crc16 dependency in kmod-ax25 (closes: #5843)
SVN-Revision: 18847
2009-12-19 13:14:17 +00:00
Nicolas Thill
9ca044a009 kernel: fix kmod-ipt-iprange (closes: #6187)
SVN-Revision: 18838
2009-12-18 19:09:33 +00:00
Nicolas Thill
684940c993 add ipset v4.1
SVN-Revision: 18833
2009-12-18 17:19:46 +00:00
Nicolas Thill
94dbd93ea4 iptables: add an iptables-mod-ipset package (closes: #6327)
SVN-Revision: 18832
2009-12-18 17:17:49 +00:00
Nicolas Thill
18112a36bb wprobe: use a shared DEPENDS between packages, mark them as BROKEN on ps3 & pxcab
SVN-Revision: 18813
2009-12-18 10:51:10 +00:00
Nicolas Thill
cd906043d8 mac80211: fix rt2x00-lib dependency on PCI/USB
SVN-Revision: 18812
2009-12-18 10:43:18 +00:00
Nicolas Thill
1772df7037 base-files: check for libpthread_so.a instead of libc_so.a (some gcc/libc combinations don't provide a libpthread_so.a matching libc_so.a)
SVN-Revision: 18810
2009-12-18 10:32:38 +00:00
Felix Fietkau
cff27487bb openssl: use assembler version of aes on arm - nearly doubles aes encryption performance
SVN-Revision: 18790
2009-12-16 02:03:20 +00:00
Florian Fainelli
be7d2663b3 let usb-video load after video-core (#6214)
SVN-Revision: 18788
2009-12-15 20:17:44 +00:00
Nicolas Thill
384204dd0b busybox: update to v1.15.3
SVN-Revision: 18781
2009-12-15 03:38:51 +00:00
Nicolas Thill
03ab02cde7 busybox: remove uniq memleak patch, applet was fixed upstream in v1.15.2 (closes: #6354)
SVN-Revision: 18778
2009-12-14 15:57:00 +00:00
Jo-Philipp Wich
c74fe3cfff kernel: fix typo that prevents autoloading of the rdc321x_wdt driver
SVN-Revision: 18767
2009-12-12 21:31:17 +00:00
Gabor Juhos
731837aa8e modules: package the leds-wndr3700-usb driver
SVN-Revision: 18759
2009-12-11 20:32:33 +00:00
Felix Fietkau
f26b153836 madwifi: add a watchdog for software beacon alert interrupts
SVN-Revision: 18740
2009-12-11 02:12:19 +00:00
Felix Fietkau
b24884eeff madwifi: fix noise level display and make the cca threshold configurable through sysctl
SVN-Revision: 18739
2009-12-11 02:12:15 +00:00
Felix Fietkau
10f627db5c firewall: fix fallout from r18716 (fixes #6338)
SVN-Revision: 18733
2009-12-10 18:18:37 +00:00
Gabor Juhos
ae89e435d9 mac80211: fix depends
SVN-Revision: 18732
2009-12-10 13:50:02 +00:00
Felix Fietkau
b4ea1b0ac3 hostapd: parse the option for hiding the ESSID (#6310)
SVN-Revision: 18727
2009-12-09 19:10:54 +00:00
Felix Fietkau
eb760dffc3 add missing config option for v4l1 (fixes #6314)
SVN-Revision: 18726
2009-12-09 19:04:57 +00:00
Felix Fietkau
679cab88fe 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>

SVN-Revision: 18725
2009-12-09 18:50:49 +00:00
Felix Fietkau
d5d8a225f8 broadcom-wl: add rts/frag threshold settings (patch from #4769)
SVN-Revision: 18720
2009-12-09 17:29:10 +00:00
Felix Fietkau
d431d864b8 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>

SVN-Revision: 18719
2009-12-09 17:22:25 +00:00
Felix Fietkau
91a8f2334a add missing argument to debug/mount wrappers (thx, matteo)
SVN-Revision: 18718
2009-12-09 17:13:16 +00:00
Felix Fietkau
889532d1fd do not start multiple subshells for applying /etc/uci-defaults. use sh -x for hush compatibility
SVN-Revision: 18717
2009-12-09 15:15:25 +00:00
Felix Fietkau
74cbcc9ee5 firewall: get rid of recursive shell script inclusion to improve hush compatibility
SVN-Revision: 18716
2009-12-09 14:04:37 +00:00
Felix Fietkau
f1649982e2 functions.sh: use functions instead of aliases for the debug, mount wrappers - hush does not have aliases
SVN-Revision: 18715
2009-12-09 13:36:43 +00:00
Felix Fietkau
9e99581621 adjust dependencies of firewall and qos-scripts, so that these packages are visible even when iptables is not selected
SVN-Revision: 18714
2009-12-09 13:36:39 +00:00
Felix Fietkau
1ab62895f7 iptables: move to 'Network' in menuconfig
SVN-Revision: 18713
2009-12-09 13:36:35 +00:00
Felix Fietkau
77c391b8b1 busybox: adjust hush default configuration
SVN-Revision: 18712
2009-12-09 13:36:28 +00:00
Jo-Philipp Wich
cc7827d993 iptables: bump pkg revision
SVN-Revision: 18707
2009-12-08 20:53:27 +00:00
Jo-Philipp Wich
e830181f47 iptables: add comment match to the core package
SVN-Revision: 18706
2009-12-08 20:52:58 +00:00
Felix Fietkau
4ab57b9e0f fix firmware loading broken by the busybox upgrade
SVN-Revision: 18705
2009-12-08 20:04:38 +00:00
John Crispin
d2dbb42387 make uboot work on arcaydian board
SVN-Revision: 18700
2009-12-08 14:37:12 +00:00
Florian Fainelli
6a4814517f package nls cp866 support (#6281)
SVN-Revision: 18690
2009-12-07 23:59:06 +00:00
Florian Fainelli
6b306ba7b8 update busybox to 1.15.2 (#5926)
SVN-Revision: 18684
2009-12-07 16:56:04 +00:00
Felix Fietkau
6cdf436893 mac80211: update to compat-wireless 2009-12-05 and fix a critical bug in ath9k tx status reporting
SVN-Revision: 18666
2009-12-05 17:12:56 +00:00
Felix Fietkau
fee32f227e mac80211: set the country code through iw reg, setting it only through hostapd apparently does not work
SVN-Revision: 18665
2009-12-05 17:12:51 +00:00
Jo-Philipp Wich
af947d5c89 mac80211: fix a shell syntax error
SVN-Revision: 18664
2009-12-05 15:11:47 +00:00
Jo-Philipp Wich
37758a2672 wpa_supplicant: relax parsing of encryption mode, drop support for uppercase modes
SVN-Revision: 18663
2009-12-05 15:09:20 +00:00
Jo-Philipp Wich
6da667f886 mac80211: fix wpa handling in sta mode
SVN-Revision: 18662
2009-12-05 15:08:25 +00:00