summaryrefslogtreecommitdiffstats
path: root/package
Commit message (Collapse)AuthorAgeFilesLines
* [package] wprobe: use a shared DEPENDS between packages, mark them as BROKEN ↵nico2009-12-181-3/+9
| | | | | | on ps3 & pxcab git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18813 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] mac80211: fix rt2x00-lib dependency on PCI/USBnico2009-12-181-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18812 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] base-files: check for libpthread_so.a instead of libc_so.a (some ↵nico2009-12-181-1/+1
| | | | | | gcc/libc combinations don't provide a libpthread_so.a matching libc_so.a) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18810 3c298f89-4303-0410-b956-a3cf2f4a3e73
* openssl: use assembler version of aes on arm - nearly doubles aes encryption ↵nbd2009-12-162-3/+24
| | | | | | performance git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18790 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] let usb-video load after video-core (#6214)florian2009-12-151-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18788 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] busybox: update to v1.15.3nico2009-12-153-14/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18781 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] busybox: remove uniq memleak patch, applet was fixed upstream in ↵nico2009-12-141-11/+0
| | | | | | v1.15.2 (closes: #6354) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18778 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] kernel: fix typo that prevents autoloading of the rdc321x_wdt driverjow2009-12-121-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18767 3c298f89-4303-0410-b956-a3cf2f4a3e73
* modules: package the leds-wndr3700-usb driverjuhosg2009-12-111-0/+16
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18759 3c298f89-4303-0410-b956-a3cf2f4a3e73
* madwifi: add a watchdog for software beacon alert interruptsnbd2009-12-111-0/+95
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18740 3c298f89-4303-0410-b956-a3cf2f4a3e73
* madwifi: fix noise level display and make the cca threshold configurable ↵nbd2009-12-111-0/+186
| | | | | | through sysctl git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18739 3c298f89-4303-0410-b956-a3cf2f4a3e73
* firewall: fix fallout from r18716 (fixes #6338)nbd2009-12-101-1/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18733 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: fix dependsjuhosg2009-12-101-2/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18732 3c298f89-4303-0410-b956-a3cf2f4a3e73
* hostapd: parse the option for hiding the ESSID (#6310)nbd2009-12-091-0/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18727 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add missing config option for v4l1 (fixes #6314)nbd2009-12-091-0/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18726 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Fix a memory leak in hotplug2 environment handling.nbd2009-12-094-171/+81
| | | | | | | | | | | | | | | | | | | | | | | 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
* broadcom-wl: add rts/frag threshold settings (patch from #4769)nbd2009-12-091-0/+4
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18720 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: fix RTS threshold not being set for mac80211 devicesnbd2009-12-091-1/+1
| | | | | | | | 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
* add missing argument to debug/mount wrappers (thx, matteo)nbd2009-12-091-2/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18718 3c298f89-4303-0410-b956-a3cf2f4a3e73
* do not start multiple subshells for applying /etc/uci-defaults. use sh -x ↵nbd2009-12-092-6/+5
| | | | | | for hush compatibility git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18717 3c298f89-4303-0410-b956-a3cf2f4a3e73
* firewall: get rid of recursive shell script inclusion to improve hush ↵nbd2009-12-092-37/+46
| | | | | | compatibility git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18716 3c298f89-4303-0410-b956-a3cf2f4a3e73
* functions.sh: use functions instead of aliases for the debug, mount wrappers ↵nbd2009-12-091-2/+7
| | | | | | - hush does not have aliases git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18715 3c298f89-4303-0410-b956-a3cf2f4a3e73
* adjust dependencies of firewall and qos-scripts, so that these packages are ↵nbd2009-12-092-2/+2
| | | | | | visible even when iptables is not selected git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18714 3c298f89-4303-0410-b956-a3cf2f4a3e73
* iptables: move to 'Network' in menuconfignbd2009-12-091-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18713 3c298f89-4303-0410-b956-a3cf2f4a3e73
* busybox: adjust hush default configurationnbd2009-12-091-10/+10
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18712 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] iptables: bump pkg revisionjow2009-12-081-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18707 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] iptables: add comment match to the core packagejow2009-12-081-0/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18706 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix firmware loading broken by the busybox upgradenbd2009-12-081-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18705 3c298f89-4303-0410-b956-a3cf2f4a3e73
* make uboot work on arcaydian boardblogic2009-12-083-36/+80
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18700 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] package nls cp866 support (#6281)florian2009-12-071-0/+17
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18690 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] update busybox to 1.15.2 (#5926)florian2009-12-0735-234/+399
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18684 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: update to compat-wireless 2009-12-05 and fix a critical bug in ↵nbd2009-12-0513-1919/+20
| | | | | | ath9k tx status reporting git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18666 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: set the country code through iw reg, setting it only through ↵nbd2009-12-051-0/+2
| | | | | | hostapd apparently does not work git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18665 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] mac80211: fix a shell syntax errorjow2009-12-051-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18664 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] wpa_supplicant: relax parsing of encryption mode, drop support for ↵jow2009-12-051-9/+15
| | | | | | uppercase modes git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18663 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] mac80211: fix wpa handling in sta modejow2009-12-051-5/+5
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18662 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] allow building hostap-driver and its dependencies on 2.6.32 (#6305)florian2009-12-052-3/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18658 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] CONFIG_RFKILL_INPUT is a booleanflorian2009-12-041-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18634 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] prevent madwifi from being compiled on sibyteflorian2009-12-041-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18631 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kmod-sound-ps3: Modified target dependencieshcg2009-12-041-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18629 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: rename autogenerated wifi-device sections from wifi* to radio* to ↵nbd2009-12-031-3/+3
| | | | | | prevent conflicts with madwifi interface naming git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18627 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ath9k: disable interrupt mitigation - it hurts performance on embedded systemsnbd2009-12-031-0/+11
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18626 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] firewall: initialize dest_port with src_dport if omitted in ↵jow2009-12-012-22/+22
| | | | | | | | | 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
* [mac80211] fix p54usb firmware installation (#6260)florian2009-11-301-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18615 3c298f89-4303-0410-b956-a3cf2f4a3e73
* hostapd: update to latest git, fixes ampdu settings in the beacon HT IEnbd2009-11-298-79/+29
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18606 3c298f89-4303-0410-b956-a3cf2f4a3e73
* hostapd: replace the wme_* config variables with wmm_* ones (fixes #6247)nbd2009-11-291-21/+21
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18602 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: fix up wds sta mode after r18591nbd2009-11-291-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18600 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [ubicom32] prevent some modules from being built on ubicom32 since they do ↵florian2009-11-293-3/+3
| | | | | | not compile or link git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18595 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [crda] Update regulatory database to version 2009.11.25hauke2009-11-281-3/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18592 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [iw] Update iw to version 0.9.18hauke2009-11-284-302/+2
| | | | | | | The deleted patches went upstream. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18591 3c298f89-4303-0410-b956-a3cf2f4a3e73