summaryrefslogtreecommitdiffstats
path: root/package
Commit message (Collapse)AuthorAgeFilesLines
* ath9k: due to popular request, allow ad-hoc+ap again, now that the beacon ↵nbd2011-04-142-2/+19
| | | | | | code can handle it git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26668 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ath9k: fix resetting the hw during channel change when the MAC fails to go idlenbd2011-04-141-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26665 3c298f89-4303-0410-b956-a3cf2f4a3e73
* cfg80211: disable processing of 802.11d regulatory hints - it causes invalid ↵nbd2011-04-141-0/+29
| | | | | | regulatory settings on reconnect (fixes #9207) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26662 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: revert r24160 (remove the bogus ext2/ext3 dependency on linux 2.6.30/31)lars2011-04-131-2/+2
| | | | | | | | | | | For kernel versions newer then 2.6.31 the ext4 module can be used to mount ext2/3 filesystems. Building ext2/3 as modules on the other hand breaks using ext4 for mounting ext2 or ext3, which breaks booting from ext2/3 on machines where the ext4 module is built into the kernel. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26645 3c298f89-4303-0410-b956-a3cf2f4a3e73
* package/hostapd: cosmetic fixacoul2011-04-131-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26644 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] kernel/modules: Move zlib_deflate module to higher autoloading ↵acinonyx2011-04-121-1/+1
| | | | | | priority git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26639 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] kernel/modules: Fix r26637acinonyx2011-04-121-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26638 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] kernel/modules: Add kmod-zlib dependency to kmod-crypto-deflateacinonyx2011-04-121-5/+4
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26637 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] kernel/modules: Add zlib packageacinonyx2011-04-122-7/+16
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26636 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] kernel/modules: Add "Libraries" submenu and move library packages ↵acinonyx2011-04-122-96/+103
| | | | | | there git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26635 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] kernel/modules: fix kmod-fs-btrfs deps / zlib_deflate / makefileacinonyx2011-04-121-3/+5
| | | | | | | | btrfs needs zlib_deflate, which was built but not included Signed-off-by: Bastian Bittorf <bittorf@bluebottle.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26632 3c298f89-4303-0410-b956-a3cf2f4a3e73
* base-files: return success on lib-copying with external toolchainjow2011-04-121-12/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | when using an external toolchain the base-files package copies libc, libgcc and others from the library directory. The file list is given as following in the .config: CONFIG_LIBC_FILE_SPEC="./lib/ld{-*.so,-linux*.so.*} ./lib/lib{anl,c,cidn,crypt,dl,m,nsl,nss_dns,nss_files,resolv,util}{-*.so,.so.*}" Because the filenames are composed with different endings, not all files exist and will be skipped. Currently, this works only if the last composed file (util.so.*) really exists. At the moment this works - but only if you don't add a new file like 'uClibc'. Adding it at the end '...resolv,util,uClibc}{-*.so,.so.*}' will lead to this message, because the combination 'libuClibc.so.*' doesn't exist and Make will evaluate the last copy statement of the for loop. --- Message Snippet --- cp: cannot stat `/home/user/Desktop/code/meetwise/toolchain/staging_dir/toolchain-arm_v5te_gcc-linaro_uClibc-0.9.32_eabi/./lib/libnss_files.so.*': No such file or directory cp: cannot stat `/home/user/Desktop/code/meetwise/toolchain/staging_dir/toolchain-arm_v5te_gcc-linaro_uClibc-0.9.32_eabi/./lib/libresolv-*.so': No such file or directory cp: cannot stat `/home/user/Desktop/code/meetwise/toolchain/staging_dir/toolchain-arm_v5te_gcc-linaro_uClibc-0.9.32_eabi/./lib/libresolv.so.*': No such file or directory cp: cannot stat `/home/user/Desktop/code/meetwise/toolchain/staging_dir/toolchain-arm_v5te_gcc-linaro_uClibc-0.9.32_eabi/./lib/libuClibc.so.*': No such file or directory make[2]: *** [/home/user/Desktop/code/meetwise/openwrt/bin/at91/packages/libc_-68_at91.ipk] Error 1 make[2]: Leaving directory `/home/user/Desktop/code/meetwise/openwrt/package/base-files' make[1]: *** [package/base-files/compile] Error 2 make[1]: Leaving directory `/home/user/Desktop/code/meetwise/openwrt' make: *** [package/base-files/compile] Error 2 --- /Message Snippet/ --- To fix this unwanted behaviour I added an extra 'exit 0' to each for-loop and make ignores non-existing files as before. Signed-off-by: Sven Bachmann <dev@mcbachmann.de> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26623 3c298f89-4303-0410-b956-a3cf2f4a3e73
* This patch updates qos-scripts to support fair traffic sharing using the jow2011-04-123-11/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | SFQ with external classifiers method. It also corrects a bug in the unsupported ESFQ method already used by qos-scripts. (ESFQ: http://fatooh.org/esfq-2.6/ only updated to 2.6.24, it was switched to an SFQ patch after that and not updated since 2008) A class can be forced to use SFQ, and an external classifier added like this: config class "Normal" option avgrate 10 option priority 30 option packetdelay 100 option limitrate 94 # option qdisc "sfq perturb 2" config class "Normal_up" # option filter "protocol all flow hash keys src divisor 1024" config class "Normal_down" # option filter "protocol all flow hash keys dst divisor 1024" Using these options, the user needs to load cls_flow before qos-scripts starts. I've got more information here: http://oneitguy.com/blogs/netprince/fair-traffic-sharing-esfq-broken-switching-sfqexternal-classifiers This has been tested on r23914. Signed-off-by: Ben Pfountz <netprince<>vt_edu> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26622 3c298f89-4303-0410-b956-a3cf2f4a3e73
* firewall: allow local redirection of portsjow2011-04-121-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allow a redirect like: config redirect option src 'wan' option dest 'lan' option src_dport '22001' option dest_port '22' option proto 'tcp' note the absence of the "dest_ip" field, meaning to terminate the connection on the firewall itself. This patch makes three changes: (1) moves the conntrack module into the conntrack package (but not any of the conntrack_* helpers). (2) fixes a bug where the wrong table is used when the "dest_ip" field is absent. (3) accepts incoming connections on the destination port on the input_ZONE table, but only for DNATted connections. In the above example, ssh -p 22 root@myrouter would fail from the outside, but: ssh -p 22001 root@myrouter would succeed. This is handy if: (1) you want to avoid ssh probes on your router, or (2) you want to redirect incoming connections on port 22 to some machine inside your firewall, but still want to allow firewall access from outside. Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26617 3c298f89-4303-0410-b956-a3cf2f4a3e73
* pppd: support the nomp option if multilink support is disablednbd2011-04-121-0/+19
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26614 3c298f89-4303-0410-b956-a3cf2f4a3e73
* hostapd: properly mark random data as ready if initialization succeeds ↵nbd2011-04-121-3/+33
| | | | | | without reassociation (#9222) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26611 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: fix WPA auth on WDS station interfaces (#9227)nbd2011-04-123-14/+10
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26609 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [uboot-omap35xx] Modify environment variables for altered filesystem layouthcg2011-04-121-2/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26608 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: ath9k: register id table for platform devicejuhosg2011-04-122-1/+47
| | | | | | | | | | | | Currently the device id in the platform driver is hardcoded to an id which is specific to AR9130/AR9132 SOCs as it supports only wmac (wireless mac) of these SOCs. But this needs to be dynamic when we want to support different wmac of SOCs. So add id_table to driver to make it extendable to more SOCs. Signed-off-by: Vasanthakumar Thiagarajan <vasanth@atheros.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26604 3c298f89-4303-0410-b956-a3cf2f4a3e73
* package/kernel: add module for the gpio_keys_polled driverjuhosg2011-04-121-0/+19
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26602 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] opkg: update to r618jow2011-04-115-71/+7
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26598 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ath5k: disable the unusable 2 GHz mode on the first radio of a dual-band ↵nbd2011-04-111-0/+50
| | | | | | AR5312 device git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26587 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ath5k: fix eeprom capability checks that disabled AES crypto support where ↵nbd2011-04-111-0/+11
| | | | | | it should have been enabled git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26586 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ath5k: fix mac address detection on dual-radio ar5312nbd2011-04-102-0/+229
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26583 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ath5k: fix 2ghz-only radio handling on ar5312nbd2011-04-101-0/+12
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26582 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ath5k: decrease interrupt load for rx/tx interruptsnbd2011-04-101-0/+140
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26579 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ath5k: clean up debugfs codenbd2011-04-101-0/+143
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26578 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ath5k: fix config options for debugfsnbd2011-04-101-2/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26577 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: do not build gpiolib into the kernelhauke2011-04-101-2/+2
| | | | | | | fix for r26570. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26574 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: fix compile with older kernel versionshauke2011-04-091-0/+12
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26573 3c298f89-4303-0410-b956-a3cf2f4a3e73
* acx-mac80211 needs some header files from compat-wireless to buildhauke2011-04-091-0/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26572 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: add symbols, small fixeshauke2011-04-093-9/+8
| | | | | | | | | * Some module should be loaded later to load them after the modules they are depending on * add some more missing config symbols * make CS5535 build again git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26570 3c298f89-4303-0410-b956-a3cf2f4a3e73
* crypto: The if statement for twofish did not work, deflate depends on ↵hauke2011-04-091-5/+10
| | | | | | zlib_deflate git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26569 3c298f89-4303-0410-b956-a3cf2f4a3e73
* sound: do not pack ac97_bus.ko and snd-ac97-codec.ko into two packages.hauke2011-04-091-8/+23
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26568 3c298f89-4303-0410-b956-a3cf2f4a3e73
* iipt-debug: create bundle of netfilter modules for debugginghauke2011-04-091-0/+18
| | | | | | | | | | | Add a bundle for including commonly useful modules for IPtables debugging and development. For now, it just contains xt_TRACE.ko Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26567 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ath5k: add some more performance improvementsnbd2011-04-095-0/+444
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26566 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ath5k: rename a misnamed patchnbd2011-04-091-0/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26565 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ath5k: add a few fixes that improve performancenbd2011-04-093-0/+147
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26564 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ath5k: fix tx status reportingnbd2011-04-091-0/+37
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26563 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: add scsi cdrom supporthauke2011-04-091-0/+18
| | | | | | | This closes #9125. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26548 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ath9k: properly count retries when frames are filtered due to excessive ↵nbd2011-04-091-16/+39
| | | | | | retries when a client is not in powersave mode git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26545 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: fix reading the station flags in debugfsnbd2011-04-091-0/+9
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26544 3c298f89-4303-0410-b956-a3cf2f4a3e73
* linux-atm: package atm-diagnostics with atmdump, atmdiag, etc.hauke2011-04-091-1/+21
| | | | | | | | | | | | If your ISP is pushing their own DSL equipment (which many do to contain support costs), they won't be forthcoming with your various settings: encapsulation, VPI/VCI, etc. These you might have to discover yourself. The easiest way to do this is with atmdiag and atmdump. Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26542 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: include firmware in the e100 packagenbd2011-04-081-0/+7
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26539 3c298f89-4303-0410-b956-a3cf2f4a3e73
* brcm47xx: add Netgear WNR834BV1hauke2011-04-081-5/+18
| | | | | | | | | Thank you realopty for the patch. This closes #7702 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26537 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: add Intel wireless drivers.hauke2011-04-081-5/+277
| | | | | | | | | | | This adds the Intel wireless drivers for their normal cards. Thank you framer99 for the patch, I extended it a little bit. This closes #7227 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26534 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ath9k: improve the rx dma stop fix, add more debugging output in case the ↵nbd2011-04-082-21/+26
| | | | | | issue still occurs git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26532 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: fix support for iftype wdsnbd2011-04-083-0/+255
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26531 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] kernel/modules: Enable Realtek R8169 not only for x86acinonyx2011-04-071-1/+1
| | | | | | | | | | | This enables support for Realtek 8169 based network cards for other platforms than x86. I have a mini-PCI card on ixp4xxx running here. Maybe for the other cards in netdevices.mk a @DEPENDS change from @TARGET_x86 to @PCI_SUPPORT makes also sense. Signed-off-by: Christoph König <christoph.koenig@ikt.uni-hannover.de> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26529 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: enable MPPE again, got broken in r26296nbd2011-04-071-1/+1
| | | | | | | | | Since r26296 mppe.ko could not be loaded, kernel gives "device missing" error. According to KConfig cypther-ecb is required. Signed-off-by: Sven Roederer <mailinglists.sven_at_roederer.dhs.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26507 3c298f89-4303-0410-b956-a3cf2f4a3e73