1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-01 00:20:44 +03:00
Commit Graph

8718 Commits

Author SHA1 Message Date
nbd
e8bb79e100 mac80211: update AP multicast fix to latest version submitted to linux-wireless@
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31453 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-23 17:29:29 +00:00
jow
4a7c3ab00a [package] 6to4: follow RFC 6598 and consider 100.61.0.0/10 a private range (#11323)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31444 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-23 10:12:00 +00:00
blogic
9774688eee [kernel] scanning kernel packages for targets
Any modifications in target/linux/*/modules.mk would not come into effect for
subsequent "make menuconfig" unless we delete ./tmp.

Signed-off-by: kalyan <kalyanatejaswi@gmail.com>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31442 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-23 09:37:50 +00:00
juhosg
9fbb2b49b8 Revert "mac80211: add backport of the module_pci_driver macro"
Erm, Hauke was faster.

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31439 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-22 11:39:49 +00:00
juhosg
0dd99ec52d mac80211: add backport of the module_pci_driver macro
That is required by various PCI drivers.

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31438 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-22 11:37:22 +00:00
hauke
1c813eff0a mac80211: add module_pci_driver to compat
Without module_pci_driver being defined the pci drivers do not get registered.

Should fix #11332


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31437 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-22 11:36:35 +00:00
nbd
d65660976b netifd: improve error handling in legacy script compatibility library, do not fill the log with error messages for interfaces that could not be found
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31432 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-21 20:34:48 +00:00
nbd
06c4117a5a base-files: rename internal variables in config_foreach to make namespace conflicts more unlikely
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31431 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-21 20:34:45 +00:00
nbd
d7fd21d6b0 netifd: make type a local variable in /lib/network/config.sh to avoid clashes with an internal config_foreach variable
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31430 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-21 20:34:41 +00:00
nbd
c72e8d4225 mac80211: suppress 3-address multicast frames on WDS APs without non-WDS stations
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31429 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-21 20:34:38 +00:00
nbd
1cf5c0f4c8 ath9k: merge a tkip related stability fix
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31428 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-21 20:34:33 +00:00
mirko
031a7820e2 [package/firewall] minor change: adjust formatting of firewall.config
- remove trailing whitespaces (s/\ $//g)
 - replace spaces with tabs between options and values

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31427 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-21 19:42:28 +00:00
jow
ff95fcf4cc [package] e2fsprogs: fix status reaping with fsck piped to logger, based on patch by Lukasz Golec-Biernat <mojedokumenty+openwrt@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31377 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-20 15:18:17 +00:00
jow
cff1bc811e enable ntpd server for busybox
hi

Another version, in this one the enable_server option is in the timeserver ntp part of the "system" config file
You can patch trunk and bacfire (tested both)
You can put busybox ntpd in client mode (if you put server), in client & server (by putting enable_server to 1, ntpd listen to udp 123), and also in server mode only (if you didn't put any servers in the config and still put enable_server 1,  ntpd will answer with the time of the router)

I've replaced "config_foreach getpeers timeserver" with "config_get peers ntp server" because we want ntp timeserver, not random ones (to pre-answer if someone want to say that it's intrusive ...)

 Signed-off-by: Etienne CHAMPETIER <etienne.champetier@free.fr>

Le 27/03/2012 20:41, Etienne Champetier a écrit :
> I've now tested my trunk patch and it works fine
> But I still can't find were $PROG is defined (is this a mistake, or some sort of built in variable???)
> (I've made some grep and nothing)
>
> Le 23/03/2012 02:19, Philip Prindeville a écrit :
>> Maybe:
>>
>> [ -n "$PROG" -a -x "$PROG" ] || return 1
>>
>> instead?
>>
>>
>> On 3/22/12 4:34 PM, Etienne Champetier wrote:
>>> Hi
>>>
>>> The 2 attached patchs (trunk & bacfire) add busybox ntpd enable_server option, as busybox ntpd server is compiled by default.
>>> We only need 1 client/server daemon (olipro patch was launching 2 daemons)
>>> I've fully tested the bacfire patch, and as i don't have a running openwrt trunk i'm not sure for the trunk patch (i'm sure about my modifications, but i'm not sure about "[ -x $PROG ] || return 1", as "$PROG" isn't defined ?!)
>>>
>>> Signed-off-by: Etienne CHAMPETIER <etienne.champetier@free.fr>
>>>
>>>
>>> Le 16/01/2012 01:57, Philip Prindeville a écrit :
>>>> On 1/14/12 11:37 AM, Olipro wrote:
>>>>> On Saturday 14 Jan 2012 02:45:59 Philip Prindeville wrote:
>>>>>> Don't we already have a 'disabled' option?  Now we're adding an
>>>>>> 'enable_server' option?
>>>>>>
>>>>>> That seems confusing for no useful reason.
>>>>>>
>>>>> have you bothered to read what I originally wrote? your response would make
>>>>> me inclined to believe that you didn't.
>>>>>
>>>>> currently the ntpd initscript only runs it as a CLIENT - this patch enables
>>>>> you to have one instance running as a client and another as a SERVER that
>>>>> other hosts can synchronise with.
>>>>>
>>>>> Or perhaps I'm misunderstanding, what would you propose for allowing the
>>>>> built-in busybox ntpd to be utilised as a server? a separate init script
>>>>> entirely perhaps?
>>>> Or separate config sections... instead of 'config ntp' have 'config ntp-server' and 'config ntp-client'.
>>>>
>>>> -Philip
>>>>
>>>>
>>>> _______________________________________________
>>>> openwrt-devel mailing list
>>>> openwrt-devel@lists.openwrt.org
>>>> https://lists.openwrt.org/mailman/listinfo/openwrt-devel
>> _______________________________________________
>> openwrt-devel mailing list
>> openwrt-devel@lists.openwrt.org
>> https://lists.openwrt.org/mailman/listinfo/openwrt-devel
> _______________________________________________
> openwrt-devel mailing list
> openwrt-devel@lists.openwrt.org
> https://lists.openwrt.org/mailman/listinfo/openwrt-devel

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31374 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-20 15:05:38 +00:00
florian
dcd91362a2 [package] gpio-button-hotplug: don't build on 2.6.30
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31363 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-20 13:25:20 +00:00
florian
ac4400c716 [package] button-hotplug: prevent build on 2.6.30
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31362 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-20 13:25:17 +00:00
florian
f533debeca [package] xfsprogs: disable po files building
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31361 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-20 13:25:08 +00:00
nbd
5568f3e890 mac80211: update to 2012-04-17, adds some build fixes and juhosg's ar9380 tx power fix
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31347 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-19 18:32:39 +00:00
jow
e529cdf748 [package] openssl: update to v1.0.1a (CVE-2012-2110)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31346 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-19 14:05:53 +00:00
nbd
f29a9ddcf0 ppp: move ppp-{up,down} from the netifd package to pppd
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31340 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-17 21:35:13 +00:00
nbd
b124c93837 netifd: update to latest, fixes ppp reconnect issues
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31339 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-17 21:35:09 +00:00
nbd
442b9d46bb ath9k/ath5k: fix driver load issues with mesh support compiled out
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31326 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-17 00:05:41 +00:00
nbd
ecbadaac0e iw: sync nl80211.h update with compat-wireless
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31323 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-16 21:13:18 +00:00
nbd
691b253e47 mac80211: update to wireless-testing 2012-04-13
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31322 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-16 21:08:41 +00:00
jow
378de966db iproute2: Add hotplug script to add slave devices to TEQL master
Resolves https://dev.openwrt.org/ticket/11192

Signed-off-by: David Woodhouse <dwmw2@infradead.org>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31311 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-16 15:04:42 +00:00
florian
6e22e3291b [package] sierra-directip: disable build with kernels older than 2.6.32 included
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31303 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-16 11:38:38 +00:00
thepeople
8a3e807f49 disable xfs on avr32
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31291 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-15 16:22:59 +00:00
jow
ba5f954171 [package] base-files: reformat banner to better work with varying version string lengths, do not set image options if menu is disabled (#11280)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31289 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-15 15:21:55 +00:00
hauke
4ad28d6429 kernel: update bcma and ssb to version master-2012-04-12 from wireless-testing
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31278 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-13 19:35:40 +00:00
hauke
0871a01e42 mac80211: add missing dependency to mac80211 to brcmsmac
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31277 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-13 18:37:46 +00:00
jow
c67b119f1a [package] base-file: cleanup white space in Kconfig source
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31267 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-12 23:01:39 +00:00
nbd
de84755f87 ath9k: fix sleep mode handling issues, should improve client mode reliability
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31265 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-12 21:28:18 +00:00
jow
8faa8431db [buildroot] include, base-files, opkg: introduce version configuration to override the embedded version info of generated images
- Introduce new Kconfig symbols VERSION_DIST, VERSION_NICK, VERSION_NUMBER and VERSION_REPO to specify distribution, release name, version and repository for a given build
 - Introduce include/version.mk to provide common helpers for packages dealing with versions
 - Make opkg use version.mk to populate the opkg.conf template
 - Make base-files use version.mk to populate /etc/openwrt_version, /etc/openwrt_release and /etc/banner

The available placeholders are:
 %D .. Replace with $(CONFIG_VERSION_DIST), default to "OpenWrt"
 %d .. Like %D, but all characters made lowercase and spaces substituted with "_" (e.g. "openwrt")
 %N .. Replace with $(CONFIG_VERSION_NICK), default to the build tree release (e.g. "Attitude Adjustment")
 %n .. Like %N, but all characters made lowercase and spaces substituted with "_" (e.g. "attitude_adjustment")
 %V .. Replace with $(CONFIG_VERSION_NUMBER), default to the build tree release (e.g. "r31262")
 %v .. Like %V, but all characters made lowercase and spaces substituted with "_"
 %C .. Replace with $(CONFIG_VERSION_NUMBER), default to "Bleeding Edge"
 %c .. Like %C, but all characters made lowercase and spaces substituted with "_" (e.g. "bleeding_edge")
 %U .. Replace with $(CONFIG_VERSION_REPO), default to "http://downloads.openwrt.org/snapshots/trunk/%T/packages"
 %R .. Replace with the current build tree revision (e.g. "r31262" or "75488c4a05b8033cf69e91874a61852db7ba9c6c")
 %T .. Replace with the current target (e.g. "ar71xx")
 %S .. Replace with the current target/subtarget combo (e.g. "adm5120/router_le")


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31262 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-12 17:31:16 +00:00
nbd
8b9ba93e94 netifd: update to 2012-04-12, fixes interface reconnect issues and improves interface status info
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31261 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-12 13:58:07 +00:00
jow
f0ad7e2bc1 [package] base-files: remove network preconfig, it collides with ar71xx network firstboot uci-defaults
To supply custom network settings, it is better to embed a complete network config file using the
files/ overlay, the old image lan preconfig options are also very limited in scope and actually collide
with sysupgrade and firstboot hardware detection on at least ar71xx and possibly other targets, therfore
drop this facility.

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31258 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-12 09:43:44 +00:00
blogic
a1f5b2e565 [ltq-dsl-app] fix bad variable name inside Makefile
We use PKG_NAME and not PKB_BASE_NAME inside OpenWrt Makefiles

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31244 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-10 15:20:23 +00:00
jogo
21fcfbb1a2 kernel: add some more additional missing config symbols for 3.2 and 3.3
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31221 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-09 14:48:46 +00:00
jow
9db1664fbe [package] libpcap: explicitely disable libnl support to prevent different build results depending on the environment (#11239)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31219 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-08 15:11:12 +00:00
jow
ca4717a482 [package] util-linux(-ng): revert r31183, r31178 - the update introduced several regressions which need to be worked out first
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31202 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-05 12:00:20 +00:00
jow
603d01fbba [package] grub: fix build with automake v1.11.3 (#11228)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31201 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-04 18:10:15 +00:00
jow
4f7c8b760c [package] util-linux: prevent packaging libtool placeholder scripts (#11224)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31183 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-04 11:40:08 +00:00
jow
1018d3d279 dnsmasq: configure dnsmasq via flat config file and not command-line args
Sometimes it's useful to compare the generated config file from UCI config with a hand-edited dnsmasq config file, especially if you're migrating to an OpenWRT router from something else (such as Astlinux).

Putting the generated config makes it easier to capture and diff, etc.

Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31182 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-02 22:31:21 +00:00
florian
08fc0ba23f [package] iproute2: update to 3.2.0 and package 'ss'
This patch bumps iproute2 to the latest available version, fixes the
package URL to use kernel.org (as things have now been moved back there)
and also adds ss (socket statistics) to menuconfig.

Signed-off-by: Oliver Smith <olipro@8.c.9.b.0.7.4.0.1.0.0.2.ip6.arpa>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31179 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-02 16:25:51 +00:00
florian
287094fa46 [package] util-linux: move and update
This patch makes several changes with util-linux-ng package:

 * moves it to util-linux (upstream name)
 * bumps it to last stable version 2.20.1 (was 2.13.0.1)
 * adds new package getopt
 * sorts packages inside Makefile
 * removes patch, it has been applied upstream

I would also like to maintain this package.

Signed-off-by: Luka Perkov <openwrt@lukaperkov.net>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31178 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-02 16:25:48 +00:00
florian
05ba81742d [package] crda: update to 1.1.2
Signed-off-by: Luka Perkov <openwrt@lukaperkov.net>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31177 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-02 16:25:40 +00:00
jow
fc5bc51ad5 [package] libnl-tiny: port upstream bugfix 8ee16e6688657886f591f0841cb8e892743ecf2a from libnl, fixes error on hostapd interface initialization
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31155 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-01 05:32:32 +00:00
thepeople
1a3c30a991 revert bad change
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31154 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-01 02:53:06 +00:00
thepeople
1f5043d5ac Disable xfs on avr32, it has been failing the build for at least a month
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31153 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-04-01 01:45:18 +00:00
nbd
e62553facc mac80211: kmod-ath should not depend on PCI or USB support for the atheros target
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31151 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-30 10:12:53 +00:00
florian
9e95dd18d6 [package] xfsprogs: update download location
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31146 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-29 17:09:50 +00:00
nbd
2010214af9 wpa_supplicant: make key_mgmt default to NONE
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31145 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-29 16:30:13 +00:00
nbd
368d4af07e hostapd: fix driver_madwifi compile issues
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31139 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-29 12:52:32 +00:00
nbd
76490c76f8 madwifi: fix compile issues with linux 3.1/3.2
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31138 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-29 12:52:16 +00:00
jow
0bc9af31a9 [package] mac80211: allow NOHT for IBSS mode
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31137 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-29 12:24:43 +00:00
blogic
7395b3c247 [package] soloscli: Add script to syslog ADSL line stats
I run this from cron. With remote syslog enabled, this means I have a
record of ADSL line quality variation — which is useful when diagnosing
and reporting faults.

Signed-off-by: David Woodhouse <dwmw2@infradead.org>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31136 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-29 09:01:33 +00:00
jogo
d0c7c3d907 package: kernel: add missing config symbols for serial-8250
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31134 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-28 21:55:15 +00:00
nbd
1ff90943e2 netifd: update to latest version, fixes a segfault with non-bridge interface hotplug
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31125 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-28 16:58:39 +00:00
nbd
751ddce336 add trelay, a trivial ethernet relay which allows pseudo-bridging ad-hoc or client mode devices over vlans to other hosts
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31122 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-28 11:02:38 +00:00
nbd
36dba7bb1a uci: update to latest version, fixes return code of the cli on various failures
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31121 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-28 11:02:30 +00:00
juhosg
74d78766e8 package/kernel: create packages for the LED Timer/Default ON triggers
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31106 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-27 19:37:58 +00:00
juhosg
3f4f47d352 package/kernel: allow to build RTC modules for 3.x
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31105 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-27 19:37:57 +00:00
nbd
ec28fb9573 mac80211: add hostapd socket option to wpa_supplicant for IBSS RSN as well
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31088 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-27 13:52:39 +00:00
nbd
6f5aac5856 wpa_supplicant: fix regressions introduced by the ibss-rsn changes
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31087 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-27 13:38:08 +00:00
nbd
4e6d1ddc42 wpa_supplicant: add CONFIG_IBSS_RSN=y compilation option
Signed-off-by: Antonio Quartulli <ordex@autistici.org>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31086 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-27 13:29:51 +00:00
nbd
11ca062eff wpa_supplicant: modify wpa_supplicant.sh in order to support IBSS-RSN/WPA-NONE
Based on patch by: Antonio Quartulli <ordex@autistici.org>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31085 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-27 13:29:41 +00:00
nbd
9f0871090d ath9k: make endian check optional
Turns out it triggers on some AR71xx devices where no swapping should be done.
Enable endian check for the lantiq target.

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31084 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-27 13:21:53 +00:00
nbd
a3bf9b4420 mac80211: modify mac80211.sh to in order to support IBSS-RSN
Signed-off-by: Antonio Quartulli <ordex@autistici.org>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31083 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-27 13:21:46 +00:00
nbd
071f766b1d madwifi: modify madwifi.sh to support IBSS WPA-NONE
Signed-off-by: Antonio Quartulli <ordex@autistici.org>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31082 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-27 13:21:39 +00:00
nbd
750159572a wpa_supplicant: use wext driver for hostap and madwifi
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31081 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-27 10:44:26 +00:00
nbd
e827a711a3 hostapd: update to 20120326
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31080 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-27 10:42:47 +00:00
nbd
ec7be8a5b2 netifd: update to 2012-03-23, fixes route/address tracking issues and adds more status info
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31077 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-26 14:30:19 +00:00
blogic
e2947f4ff3 [mac80211] fixes #31068, rename 999-ath9k.patch to 501-ath9k-eeprom_endianess.patch
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31071 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-25 09:07:09 +00:00
blogic
2ecd2cbe37 [pjsip] Pulse dialing support into pjsip.
Signed-off-by: Andrej Vlašić <andrej.vlasic0@gmail.com>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31070 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-25 08:51:16 +00:00
blogic
f92e0b4264 [uboot-lantiq] adds ARV4519PW/ARV7519PW
Signed-off-by: Andrej Vlašić <andrej.vlasic0@gmail.com>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31069 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-25 08:51:13 +00:00
blogic
88bfa13565 [mac80211] adds eeprom endianess check to ath9k
Signed-off-by: Felix Fietkau <nbd@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31068 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-25 08:51:08 +00:00
blogic
a3f0c9fadf [mac80211] adds ath5k platfrom_device eep support
Signed-off-by: Andrej Vlašić <andrej.vlasic0@gmail.com>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31067 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-25 08:50:56 +00:00
blogic
40c47af27d [ltq-dsl] unbreak dsl firmware loading
Signed-off-by: Andrej Vlašić <andrej.vlasic0@gmail.com>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31066 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-25 08:50:45 +00:00
blogic
f966720eb0 [ltq-dsl] fix for 3.2.9
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31065 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-25 08:50:42 +00:00
jow
322039038f [package] dnsmasq: add missing config_get, localize variables, bump package revision
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31058 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-23 11:26:47 +00:00
jow
a727e68c1f dnsmasq: add mx record support
Adding the following syntax support:

config mxhost
	option domain mydomain.com
	option relay svr10.ironport.com
	option pref 50

and this will generate an MX record for mydomain.com pointing at the relay with a given preference.

Redux: default the preference to 0 if absent.

Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31057 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-23 11:19:58 +00:00
jow
a3026e2fae dnsmasq: add keywords for SRV RR class/weight
The SRV record also requires the class and weight fields... Currently you can overload the "port" keyword as:

	option port xxxx,class,weight

but this is counter-intuitive. Here we fix this.

Redux: make the port required.

Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31056 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-23 11:19:56 +00:00
jow
659369891b [package] iwinfo: properly cast nl80211 mBm signal levels to reported dBm values (#11161)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31053 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-21 19:47:16 +00:00
jow
b83d565146 [package] block-mount: add missing chunk of previous commit
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31050 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-21 02:29:47 +00:00
jow
f41a38927e [package] block-mount: invoke blkid without cache file, this seems to fix mounts by uuid or label
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31049 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-21 02:29:26 +00:00
nbd
ecce585694 base-files: split service related functions off to /lib/functions/service.sh
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31042 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-20 14:29:50 +00:00
nbd
483a02ae41 pppd: split files into netifd and non-netifd files, move the netifd ppp.sh file to the pppd package
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31041 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-20 13:09:27 +00:00
jow
bd1036b450 [package] kernel: add kmod-acpi-button
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31037 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-19 23:48:38 +00:00
nbd
5fe04db16c 6in4: add netifd support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31036 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-19 21:10:04 +00:00
nbd
97d7f20d53 netifd: update to latest version, fixes log buffer handling issues, dns issues and various sit tunnel related issues
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31035 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-19 21:10:00 +00:00
nbd
369bc0e57d 6to4: fix interface error handling
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31034 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-19 21:09:57 +00:00
nbd
768650413e netifd: scan l3 devices on find_config()
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31033 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-19 21:09:54 +00:00
nbd
2da93c7e15 netifd: shut down all interfaces before restarting netifd
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31032 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-19 21:09:51 +00:00
jow
7f220e31ce [package] kernel: add missing AddDepends calls for kmod-usb-serial-qualcomm and kmod-ata-sis
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31029 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-19 20:28:49 +00:00
nbd
580a413385 madwifi: remove my maintainer line from the package
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31021 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-19 11:29:01 +00:00
jow
30c57b2be2 [package] firewall: revert processing order of redirects and rules, ensures that rules can be used to filter before redirects are reached
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31014 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-18 23:34:06 +00:00
jow
e0fbcb5a25 ps3-utils git repository fix
The PKG_SOURCE_URL should be

git://git.kernel.org/pub/scm/linux/kernel/git/geoff/ps3-utils.git

rather then

http://www.kernel.org/pub/scm/linux/kernel/git/geoff/ps3-utils.git

or else you will get a fatal error "did you run git update-server-info
on the server?"

Signed-off-by: Nicola Squartini <tensor5@gmail.com>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30993 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-18 21:08:39 +00:00
jow
92cc682c00 Add support for the 8250 UART module.
It has been added at the end of other.mk as i couldn't find a better place
for it.

Signed-off-by: Christian Gagneraud <chris@techworks.ie>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30989 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-18 19:49:22 +00:00
jow
bd23f56f7d Fix the title and the description of the kmod for DS2433.
This kmod has been certainly added by copy/paste but the title and
description were not updated. Fix that.
The DS2433 is a 1 wire 4kb eeprom with CRC capability.

Signed-off-by: Christian Gagneraud <chris@techworks.ie>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30988 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-18 19:49:21 +00:00
jow
80c7b4465b Adds a kmod for the DS2431
The DS2431 is a 1 wire 1kb eeprom.

Signed-off-by: Christian Gagneraud <chris@techworks.ie>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30987 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-18 19:49:19 +00:00
jow
a79a87ae62 This patch adds a kmod in hwmon for the SHT21 sensor (I2C temperature and humidity sensor)
Signed-off-by: Christian Gagneraud <chris@techworks.ie>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30986 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-18 19:49:17 +00:00
jow
6f77ae2ecd busybox 1.19.4 update patch
This patch updates busybox to 1.19.4 and refreshes all patches.

Signed-off-by: Peter Wagner <tripolar@gmx.at>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30985 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-18 19:46:52 +00:00
jow
7010de0fd3 openssl 1.0.1 update patch
This patch updates openssl to 1.0.1 and refreshes all patches.

Signed-off-by: Peter Wagner <tripolar@gmx.at>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30984 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-18 19:46:01 +00:00
jow
11e663d845 Add munin to /etc/services
The muninlite postinst fails to add munin to /etc/services.

This patch removes this broken postinst and add an entry for munin in
/etc/services. This should have been done when the rest of the
/etc/services postinsts were being removed (changesets 26142-26149).

Signed-off-by: Jonathan McCrohan <jmccrohan@gmail.com>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30982 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-18 19:41:57 +00:00
jow
aa79d88659 [package] kernel: add kmod-usb-net-ipheth (#10157)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30981 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-18 19:02:28 +00:00
jow
b2cdc21a21 [package] kernel: add kmod-usb-serial-qualcomm (#8283)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30979 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-18 18:49:38 +00:00
jow
aa76236b35 [package] kernel: add kmod-ata-sis (#8259)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30978 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-18 18:44:30 +00:00
jow
432058f05c [package] kernel: small correction of menuconfig title for kmod-video-gspca-ov534-9
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30977 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-18 18:37:08 +00:00
jow
fb61b1ede5 [package] kernel: add kmod-video-gspca-ov534-9
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30975 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-18 18:14:10 +00:00
nbd
8072d37a9e mac80211: reduce cpu load by optimizing aggregation session timeout handling
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30968 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-17 22:34:58 +00:00
ryd
c0f7b08bdc Update xfsprogs to 3.1.4 to 3.1.7
Changelog at http://xfs.org/index.php/XFS_Status_Updates



git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30965 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-17 21:30:31 +00:00
nbd
fd6b63fcf9 ath9k: remove the queue wake optimization, it may be unreliable in some cases
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30959 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-16 22:22:34 +00:00
nbd
4b1477f8c1 6to4: set the tunnel remote endpoint to any, put the gateway in the route instead
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30950 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-15 11:01:50 +00:00
nbd
53fcd523f9 6to4: add netifd support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30949 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-15 09:49:33 +00:00
nbd
443820e37b netifd: fix ipv6 issues, add sit tunnel support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30948 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-15 09:49:29 +00:00
nbd
24f6c7010a netifd: implement find_config()
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30947 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-15 09:49:26 +00:00
jow
9ee670f627 openssl 1.0.0h update patch
Hi

this patch updates openssl to 1.0.0h and refreshes all patches.
This fixes CVE-2012-0884.

Signed-off-by: Peter Wagner <tripolar@gmx.at>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30939 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-13 22:09:48 +00:00
jow
6523857aba [package] firewall: fix fw__uci_state_del() procedure (#11132)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30938 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-13 21:22:13 +00:00
jow
9bbe7731c6 [package] switch: the hardware must be up while configuring
Since the removal of the interface coldplug hack the timing changed in such a way that eth0 is not up during switch setup,
leading to an inaccesible device. Bring up the switch interface before configuring it to mitigate the problem.


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30937 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-13 21:15:41 +00:00
jow
0182feb5e7 [package] uhttpd: reorder compiler flags to fix native build on Ubuntu 11.x
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30936 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-13 20:41:31 +00:00
jow
a0ced97706 [package] base-files-network: configure vlan interface name type immediately before the vconfig add calls, fixes race condition (#11127)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30919 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-13 12:25:28 +00:00
nbd
5ce4a896b7 ath9k: optimize waking tx queues, slightly improves performance under load
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30918 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-13 11:19:19 +00:00
nbd
4a8df0b661 base-files: remove old coldplugging hacks that are no longer necessary since the new main hotplug2 instance calls udevtrigger as well
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30916 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-13 09:18:30 +00:00
nbd
dea8a2e425 ath9k: remove stuck beacon detection optimization, it may be unreliable on some hardware
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30915 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-13 07:56:01 +00:00
jow
a33e79fbcb [netfilter] fix ipt_ttl and ipt_TTL userspace library packaging
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30897 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-12 02:07:22 +00:00
nbd
acd288a145 rt2x00: merge a fix for random tx stalls
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30871 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-10 13:31:34 +00:00
nbd
92e1c8bfd3 mac80211: limit TID buffering to prevent out-of-memory issues on low-memory systems
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30870 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-10 13:31:31 +00:00
nbd
e690881d07 ath9k: fix passing MAC time to mac80211
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30869 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-10 13:31:27 +00:00
nbd
698b2e38ba ath9k: increase rx buffers for improved performance with 3x3 chipsets
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30868 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-10 12:59:46 +00:00
nbd
b5880740aa ath9k: merge an ANI improvement patch, improves performance in some environments
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30867 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-10 12:59:43 +00:00
nbd
d7bc8b2f4a mac80211/ath9k: some more performance improvements
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30866 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-10 12:59:40 +00:00
nbd
868be35105 mac80211: more patch reorganization, merge an upstream performance optimization patch
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30865 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-10 12:59:36 +00:00
nbd
62d9e800de ath9k: merge a fix for hardware full sleep
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30864 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-10 12:59:28 +00:00
nbd
669f5554cb mac80211: reorganize patches, fold in patches that were merged upstream
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30863 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-10 12:59:24 +00:00
nbd
b9056caf2e mac80211: add the real compat-wireless version + openwrt revision to the compat_version
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30862 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-10 12:59:21 +00:00
juhosg
69c230b37f package/kernel: add package for the ath79 watchdog
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30851 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-08 09:00:16 +00:00
nbd
ed500e56a7 netifd: update to latest version
- preserve hotplug-added interfaces on reload, even if settings change
- implement fast config reload for bridge devices
- improve bridge device handling reliability
- fix bridge stp settings

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30829 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-05 19:53:16 +00:00
juhosg
2ec2f054b9 package/kernel: don't allow to select NAND modules for kernels <3.0
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30828 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-05 18:01:55 +00:00
jow
9ca54da839 [package] iwinfo: fix integer overflow in assoclist rate reporting (#11073)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30825 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-05 17:52:46 +00:00
jow
75d6b8d77f [package] busybox: enable ps wide flag by default
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30812 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-04 20:09:58 +00:00
jow
ea16273623 [package] uhttpd: cope with variable number of spaces in header lines (#11079)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30806 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-04 15:53:51 +00:00
jow
e7c1abd9d4 [package] base-files: enable conntrack accounting in sysctl. It used to be a compile time option which got deprecated
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30805 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-04 14:53:17 +00:00
juhosg
93c039a0f3 base-files: remove trailing whitespaces from lib/functions/boot.sh
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30776 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-02 11:17:30 +00:00
juhosg
a01dc23d17 base-files: remove trailing whitespaces from lib/functions.sh
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30775 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-02 11:17:29 +00:00
juhosg
85b05f67d9 package/kernel: package nandsim module
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30774 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-02 11:17:27 +00:00
juhosg
0d9703a2b4 package/kernel: package NAND support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30773 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-02 11:17:25 +00:00
nbd
1e3377e48e ath9k: fix misplaced ifdef
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30766 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-01 15:22:08 +00:00
nbd
4497c273ba ath9k: disable btcoex again after it got re-enabled by the update
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30765 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-01 15:13:41 +00:00
nbd
adbea300bd ath9k: disable MAC sample debugging, it is almost never used and wastes precious CPU cycles
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30764 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-01 15:13:33 +00:00
nbd
98a4f49247 mac80211: optimize mac address comparisons to improve performance
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30763 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-01 15:13:30 +00:00
nbd
55d98b2a3f mac80211: fix ad-hoc mode performance regression
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30758 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-03-01 09:57:56 +00:00
nbd
ccbd47f758 mac80211: delete linux/eeprom_93cx6.h since the module is used from the kernel tree, fixes rt2x00 issues on lantiq
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30754 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-29 18:20:28 +00:00
nbd
f8ee20a10e mac80211: remove 060-fix_compat_security.patch, it is no longer needed
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30753 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-28 20:49:26 +00:00
nbd
5da725ea43 netifd: update, fix some mac address handling issues
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30750 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-27 23:37:49 +00:00
nbd
664467e66f netifd: add missing do_sysctl function
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30749 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-27 23:37:46 +00:00
jow
a6b7f73287 [package] iwcap: fix reversed umask
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30748 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-27 23:08:15 +00:00
jow
8f9292853c [package] add iwcap - a small radiotap capture utility for background monitoring of wireless traffic or use as a remote capture drone
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30747 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-27 22:57:15 +00:00
nbd
e8923f5d9e mac80211: update to wireless-testing 2012-02-27
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30746 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-27 22:56:05 +00:00
nbd
56e41e0603 ath9k: fix beacon issues on ar93xx
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30745 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-27 22:56:00 +00:00
nbd
1525d91ab9 netifd: update to 2012-02-26, fixes ipv4 broadcast handling
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30744 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-27 16:23:50 +00:00
nbd
ede698abc5 netifd: add a hotplug handler for setting sysctls (based on the old 10-routes file)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30743 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-27 16:23:47 +00:00
nbd
f2d1a93055 mac80211: update to wireless-testing 2012-02-23
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30742 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-27 16:23:43 +00:00
nbd
79d9ad50db netifd: add a new udhcpc default script for command line use (no uci support)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30741 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-27 16:23:39 +00:00
jow
063d80418e [package] firewall: allow ICMPv6 type 129 (echo reply) - this fixes basic ICMPv6 in case no connection tracking is used
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30727 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-25 21:00:23 +00:00
jow
2134e17cf1 [package] kernel: only depend on kmod-rtc-core if its provided by the used Kernel version
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30716 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-25 13:05:59 +00:00
jow
60c7e2bef5 [package] dropbear: patch possible use after free by authenticated remote users with active command restrictions (CVE-2012-0920)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30714 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-25 12:40:46 +00:00
jow
cccaf637eb [package] uci: update to git head, reduces quotations in exported config files and fixes delta list handling in the Lua binding
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30711 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-24 18:07:06 +00:00
jow
ba1ff83059 [package] broadcom-wl: remove an erroneous BUG() call in the glue driver
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30709 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-24 13:36:46 +00:00
jow
0ccb4cc6a9 [package] firewall: bail out if uci is used in firewall include files
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30694 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-23 18:50:47 +00:00
jow
ca25ff4717 [package] iwinfo: fix wl backend, unsigned -> signed for mcs idx, revision bump after latest abi changes
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30693 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-23 18:20:51 +00:00
jow
bfef9dc359 [package] iwinfo: replace internal constant mode strings with enums
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30692 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-23 13:16:09 +00:00
jow
250113e1c6 [package] iwinfo: implement netlink scanning code, rework IE parsing code
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30691 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-23 12:18:46 +00:00
jow
1446112d1f [package] iwinfo: fix array size mismatch after r30684
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30685 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-22 13:56:06 +00:00
jow
f0647cc9dd [PATCH] Allow full 250mw (24dBm) on WRT54GL and related with wl legacy driver on iwinfo
Signed-off-by: Hanno Schupp <hanno.schupp@gmail.com>


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30684 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-22 13:41:50 +00:00
jow
4efc5c7d68 [PATCH] Adjust txpower offset for Nano and Picostation M2 in iwinfo
Signed-off-by: Hanno Schupp <hanno.schupp@gmail.com>


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30683 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-22 13:40:29 +00:00
jow
0b7b8ea93f [package] iwinfo: add per-station rate and mcs info to assoclist op
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30682 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-22 13:39:16 +00:00
jow
1f56b7d162 [package] iwinfo: fix logic flaw in mtd partition check
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30678 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-22 12:30:24 +00:00
nbd
22c94fc859 iptables: make it possible to dynamically configure built-in statically linked extensions, fold -mod-conntrack and -mod-nat into the default package. saves about 8k on an ar71xx default squashfs
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30676 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-22 01:47:48 +00:00
nbd
417df6b3c3 iptables: do not link binaries with -rdynamic, plugins do not need any symbols from the main executable. saves some space
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30675 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-21 23:03:21 +00:00
hauke
2b8a4722f0 mac80211: b43: use firmware version 666.2 as default
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30673 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-21 20:36:58 +00:00
jow
d4211563a5 [package] iwinfo: fix logic flaw in WPA OUI filtering, solves misdetecting various WPA2-PSK only networks as mixed mode
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30672 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-21 18:19:26 +00:00
nbd
3b80853a65 dropbear: disable assertions to reduce code size
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30668 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-21 00:52:43 +00:00
nbd
daf38c44a9 hostapd: disable the state dump callback to save a few more kb
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30667 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-21 00:27:28 +00:00
nbd
e7fe3729df hostapd: add configurable debug message minimum priority to cut down on bloat generated by excessive debug messages
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30666 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-20 23:41:52 +00:00
hauke
5cc2f798b4 mac80211: fix memory leak on bcm5354
The ucode triggers the gpio pins used for the buttons and causes diag to handle them and send them to userspace.
This only happened with a more recent firmware.
This patch was tested on an Asus wl-520GU and should also work on the other bcm5354 based asus devices. I do not know if it works on the dir320.


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30665 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-20 22:46:27 +00:00
jow
f7601b8246 [package] iwinfo: iwinfo_hardware_id_from_mtd() never writes, so do not request write access in mmap()
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30664 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-20 21:27:41 +00:00
jow
b888530e41 [package] iwinfo: recognize AR5416 EEPROMs as seen on the Ubiquiti Picostation M2
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30663 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-20 21:17:59 +00:00
nbd
b417cf17d9 add gpio-button-hotplug, like button-hotplug + gpio-keys-polled, fully compatible, but without the nasty input-core dependency chain
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30659 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-20 10:51:43 +00:00
jow
39f575d4d8 [package] iwinfo: add more device entries
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30658 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-20 09:27:32 +00:00
hauke
2029a65c6e mac80211: brcmsmac: fix a build warning, till we update bcma
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30644 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-19 14:21:21 +00:00
hauke
7e0819a929 mac80211: add brcmsmac driver
brcmsmac does not work on bcm47xx based devices or has AP mode support for now.


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30643 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-19 14:05:17 +00:00
hauke
3d1b5ff26d mac80211: fix directory of mwl8k firmware
Thank you Eugene San for the patch


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30642 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-19 13:26:35 +00:00
juhosg
22ac4df97a mac80211: rt2x00: allow to disable bands via platform data
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30629 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-18 17:36:09 +00:00
juhosg
456741f7ac package/kernel: add package for MTD testing modules
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30628 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-18 16:02:18 +00:00
nbd
0a4428a71b ath5k: do not re-run AGC calibration periodically - fixes stability issues on AR2315 (#10574)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30624 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-17 22:15:33 +00:00
nbd
cb64c407c7 ath5k: do not stop the hardware queues during PAPD calibration, speeds up calibration
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30623 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-17 22:15:26 +00:00
nbd
5dcd40ec7e crda: remove unnecessary build dependency on mac80211
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30612 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-17 15:54:57 +00:00
nbd
8ee49b5963 hostapd: remove unnecessary dependency on mac80211
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30611 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-17 15:54:53 +00:00
jow
7adfa6c810 [package] broadcom-diag: add missing brackets breakign the detection logic (#10836)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30610 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-17 09:04:23 +00:00
jow
e01799a285 [package] iwinfo: implement proper hardware detection for ar23xx SoC devices like the NanoStation 2
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30605 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-17 00:36:25 +00:00
jow
694a09285d [package] iwinfo: fix detection of Bullet M5, the PCI ID was wrong
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30591 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-16 17:58:33 +00:00
juhosg
0853b66205 package/mac80211: fix a possible NULL pointer dereference in rt2x00
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30586 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-16 17:14:34 +00:00
jow
12750dc9c5 [package] kernel: fix KCONFIG depends of kmod-md modules
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30564 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-15 23:34:24 +00:00
nbd
4eade74716 ath9k: prevent writes to const data on AR9160
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30551 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-15 18:02:57 +00:00
florian
f166258123 [package] gdb: use an updated 6.8a tarball
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30543 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-14 20:13:28 +00:00
blogic
810da4055a [kernel] add missing autoload shortcut to crypto modules for btrfs
Currently the btrfs module (and other fs modules) is loaded before other modules to provide early extroot compatibility. This will fail for btrfs however, because the dependencies crypto-core and crypto-hash are missing. This patch makes them available for early loading too.

Signed-off-by: Jan Willies <jan@willies.info>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30542 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-14 20:11:28 +00:00
blogic
3412b9496c mac80211: Allow preamble configuration
Add a new wireless config parameter short_preamble=0|1 to enable
usage of short preambles. Default is to only allow long preambles
as before.

Even if short_preamble is set to 1 hostapd will take care that
short preambles are disabled as soon as a STA associates that
cannot handle short preambles.

Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30539 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-14 19:07:15 +00:00
blogic
d25d480741 Add kernel module package for SLIP
This patch adds support for a kernel module package for SLIP. We needed it forusing tunslip6 from Contiki OS for 6LoWPAN communications.

Signed-off-by: Markus Becker <mab@comnets.uni-bremen.de>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30538 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-14 19:07:13 +00:00
blogic
2d4b05f03e Update bridge-utils to the last upstream version 1.5.
Signed-off-by: Luka Perkov <openwrt@lukaperkov.net>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30536 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-14 19:07:09 +00:00
blogic
d4076adb6f [OpenWrt-Devel] update e2fsprogs
Update e2fsprogs to the last upstream version 1.42.

blkid works fine without 100_add_missing_libpthread_for_blkid.patch.

Signed-off-by: Luka Perkov <openwrt@lukaperkov.net>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30535 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-14 19:07:07 +00:00
blogic
cefea1a955 [pjsip] drop obselete Config.in file
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30531 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-14 17:48:01 +00:00
blogic
059d9f49a5 [pjsip] bump to 1.12, merge improved lantiq aud_dev driver
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30520 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-14 15:05:55 +00:00
blogic
decfe8e3f5 [lantiq] add a simple sip client
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30519 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-14 15:05:52 +00:00
blogic
f8d8046b51 [ltq-dsl] add annex selection support to ltq_dsl package
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30518 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-14 15:05:49 +00:00
hcg
c972a4ddbe [package] hostapd: correctly pass 64 char hex PSK to wpa_supplicant
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30504 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-13 16:07:53 +00:00
nbd
f86677c02e block-mount: do not auto-mount anonymous mtdblock devices (fixes #10960, #10850)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30501 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-13 15:31:31 +00:00
juhosg
f835afb5d9 package/modules: enable ECHI/OHCI for RT3883
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30496 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-13 15:18:01 +00:00
florian
9aa91c2c63 [package] kexec-tools: update to 2.0.3 (fixes #9846)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30493 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-13 12:36:36 +00:00
nbd
4cf5dc60f9 swconfig: fix off-by-one error, causing segfaults on gcc 4.6+ (fixes #9765)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30485 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-12 19:27:01 +00:00
nbd
444f3dd7f1 package/grub: fix stage2 link with recent binutils
We want the `_start's symbols to be at the very beginning of the `stage2'
binary's `.text' section. However, nothing enforces this requirement. With
recent binutils (ie. post 2.19.1), this results in a corrupt binary, as ld(1)
puts another symbol (eg. `journal_init') at the beginning of the section.

Fix this by providing a stripped down version of the default linker script
where we enforces the position of `_start' in the `.text' section.

Patch by Arnaud Lacombe (#10444)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30484 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-12 18:40:18 +00:00
nbd
ae2cd78ff5 broadcom-diag: fix WRT150N/WRT160N detection (patch from #10836)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30477 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-12 15:43:14 +00:00
hauke
37d47ead81 broadcom-wl: fix reading fallback sprom for pci devices.
When using the Broadcom SDK the SSB bus is emulated as an PCI bus so 
the PCI bus number of the first real pci bus is increased by one. The 
variable names in the nvram are created with that structure in mind. To 
fix this we have ti increases the pci bus number by one. This was also 
done for ssb some time ago.

This is based on a patch by nlh. 
This closes #10917


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30422 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-10 17:11:17 +00:00
hauke
ff689101db broadcom-wl: fix compile with kernel 3.2
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30421 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-10 17:07:14 +00:00
nbd
a264c53397 zlib: parallel build has been reported to break this package, disable it (#10948)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30420 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-10 16:13:37 +00:00
juhosg
9543368113 package/madwifi: apply AR71XX PCI workaround on ATH79 as well
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30414 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-10 13:16:50 +00:00
juhosg
1cd9080da8 package/mac80211: apply AR71XX PCI workaround on ATH79 as well
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30413 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-10 13:16:49 +00:00
juhosg
0332b72583 package/kernel: nuke CONFIG_USB_{O,E}HCI_AR71XX symbols
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30412 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-10 13:16:47 +00:00
nbd
a7eb705105 mac80211: disable ath6kl until it's packaged and used somewhere
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30397 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-09 14:24:18 +00:00
nbd
3a1a68de74 mac80211: merge a LED related locking fix
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30396 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-09 14:24:15 +00:00
nbd
0f2ef0b003 mac80211: fix a potential rate control related crash
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30388 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-08 18:43:21 +00:00
acinonyx
d0abad5f54 [package] iptables: Fix mod-ipopt package description (#10931)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30373 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-08 14:55:48 +00:00
kaloz
dc851a55af [packages/fbtest]: fbtest utility
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30369 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-08 10:20:13 +00:00
jow
9b433b090a [package] firewall: don't filter IPv4 ICMP types (#10928)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30363 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-07 18:35:48 +00:00
nbd
cd774af8f5 broadcom-wl: turn on wmm by default, disabling it by default makes no sense, and without it 802.11n does not work (fixes #10918)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30362 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-07 15:45:56 +00:00
nbd
c993a44fa3 ath9k: ignore invalid signal strength values in a-mpdu packets, fixes average signal strength display fluctuations
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30359 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-07 15:25:55 +00:00
nbd
99eff05981 iw: update to version 3.3, sync with latest nl80211.h changes
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30347 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-07 11:28:21 +00:00
nbd
d8db515de0 mac80211: update to wireless-testing 2012-02-06
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30346 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-07 11:28:11 +00:00
florian
68eac67f55 mtd: define MTDREFRESH if not defined (external kernel)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30340 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-06 17:15:40 +00:00
florian
ab8277e30d [package] iptables: don't apply patches if building an external kernel
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30339 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-06 17:15:36 +00:00
jogo
9a987b468a brcm63xx: add support for linux 3.3
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30027 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-04 10:17:27 +00:00
jow
db842ffaf9 [PATCH 1/1] leds.mk: remove obsolete references to leds-alix and leds-net5501 modules
These are now supported by platform drivers in arch/x86/platform/geode.
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30020 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-03 18:12:30 +00:00
nbd
9f712183de ath9k: fix CTS timeout issues in 2.4 ghz
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30010 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-03 10:23:55 +00:00
nbd
fab832ff32 ath9k: fix WEP connection issues
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30009 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-03 10:23:51 +00:00
nbd
61f9f96a63 netifd: set the network device in uci state as well to avoid further remapping issues
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30008 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-03 10:17:30 +00:00
nbd
5a12cc4750 netifd: update to latest, fixes removing deleted interfaces on config reload
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30004 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-02 23:16:34 +00:00
nbd
e27bf76f82 netifd: fix legacy scripts that expect the ifname option to be mapped to the device option after fixup
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30003 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-02 23:01:02 +00:00
jow
6b3fc26e43 [package] iwinfo: fix segmentation fault when doing two consecutive scans through wpa_supplicant
Based on patch by Christian Kapeller <christian.kapeller@cmotion.eu> with one minor whitespace change
and updated package version.


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29992 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-02 14:06:16 +00:00
jogo
8ae6c0c835 kernel: update module names and add new config symbols for linux 3.3
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29985 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-02-02 08:23:44 +00:00
florian
eccc813c59 [package] fix wprobe build for arm on 3.2
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29957 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-01-30 14:02:13 +00:00
florian
b184c28010 [package] ebtales: update to v2.0.10-4
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29956 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-01-30 14:02:10 +00:00
hauke
8bf9a785b1 switch: fix some memory leaks in switch_parse_vlan()
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29936 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-01-28 13:52:37 +00:00