summaryrefslogtreecommitdiffstats
path: root/package
Commit message (Collapse)AuthorAgeFilesLines
* ath9k: fix some locking issues in the tx fifo cleanup patchnbd2011-05-191-35/+23
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26947 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ath9k: clean up tx fifo handling on ar9380 based hardwarenbd2011-05-182-0/+680
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26934 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ath9k: fix a small race condition in the tx_last_beacon patchnbd2011-05-181-5/+10
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26933 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [PATCH] ipcalc.sh CIDR notationjow2011-05-182-7/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Hi, the attached patch makes ipcalc.sh accept IP/Netmask combinations in CIDR notation. Before you could only do: # sh ipcalc.sh 192.168.0.0 255.255.255.0 1 10 IP=192.168.0.0 NETMASK=255.255.255.0 BROADCAST=192.168.0.255 NETWORK=192.168.0.0 PREFIX=24 START=192.168.0.1 END=192.168.0.11 with this patch you can also execute it with: sh ipcalc.sh 192.168.0.0/24 1 10 IP=192.168.0.0 NETMASK=255.255.255.0 BROADCAST=192.168.0.255 NETWORK=192.168.0.0 PREFIX=24 START=192.168.0.1 END=192.168.0.11 The patch is based on #1260 [1], i just changed one line to calculate the START end END ips right. I wonder why that never got included. If there is no reason not to do i would like to ask you to commit that patch, because its a functionality i (and probably others) miss quite often. Btw, i also fixed 4 useless tabs, that might look a bit strange in the patch. Regards, Manuel git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26930 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: sync the CONFIG_ATH5K_DEBUG make override with the buildflags ↵nbd2011-05-171-1/+1
| | | | | | override (thx, KanjiMonster) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26927 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ath9k: implement tx_last_beacon() to allow mac80211 to respond to probe ↵nbd2011-05-171-0/+106
| | | | | | requests in ad-hoc mode without creating too much spam git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26923 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [modules]blogic2011-05-171-1/+1
| | | | | | | | | * add missing aes dependency to mv_cesa Signed-off-by: Jan Willies <jan@willies.info> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26920 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ath9k: fix ad-hoc nexttbtt calculation, which broke beacon transmission in ↵nbd2011-05-171-0/+11
| | | | | | some instances git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26915 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ath9k: fix issues with ad-hoc beacon slot selectionnbd2011-05-161-0/+50
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26913 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: update to 2011-05-13nbd2011-05-1634-906/+167
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26912 3c298f89-4303-0410-b956-a3cf2f4a3e73
* package/kernel: crypto: Remove renamed modules hackacinonyx2011-05-151-23/+9
| | | | | | | | | Since the oldest kernel in trunk is 2.6.30 the modules always use the newer names, so we can just use the _generic prefix directly. Signed-off-by: Jonas Gorski <jonas.gorski+openwrt@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26903 3c298f89-4303-0410-b956-a3cf2f4a3e73
* package/kernel: netfilter: Remove 2.4/2.6 referencesacinonyx2011-05-151-12/+8
| | | | | | | | | There's only 2.6, so it doesn't make sense to mention modules that are 2.4 only or for modules that they are available only for 2.6. Signed-off-by: Jonas Gorski <jonas.gorski+openwrt@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26902 3c298f89-4303-0410-b956-a3cf2f4a3e73
* package/kernel: Remove all 2.4 definitionsacinonyx2011-05-155-106/+32
| | | | | | | | | With no 2.4 support in trunk, we can safely remove any 2.4 definitions for kmods and merge the 2.6 definitions into the generic ones. Signed-off-by: Jonas Gorski <jonas.gorski+openwrt@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26901 3c298f89-4303-0410-b956-a3cf2f4a3e73
* package/kernel: Remove $(KMOD_SUFFIX) usageacinonyx2011-05-157-31/+31
| | | | | | | | | Since there's only 2.6 in trunk $(KMOD_SUFFIX) can be safely replaced with ko for all mainline kernel modules. Signed-off-by: Jonas Gorski <jonas.gorski+openwrt@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26900 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [kernel/modules]blogic2011-05-092-207/+216
| | | | | | | | | | package/kernel/modules/other.mk is getting big enough that putting the LEDs stuff into its own file makes sense. Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26868 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Deployment of IPv6 has opened up many more prefixes than just thethepeople2011-05-081-2/+2
| | | | | | | 2000::/3 space, so a default route of ::/0 is more correct. Thanks Dave Taht git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26857 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] base-files: retrigger usb coldplug after module loading, solves ↵jow2011-05-082-1/+6
| | | | | | usb_modeswitch on boot and possibly others (#9352) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26848 3c298f89-4303-0410-b956-a3cf2f4a3e73
* base-files: fix a typo in etc/bannerjuhosg2011-05-071-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26841 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] lua: remove posix from Lua core, almost nothing uses it - saves 9k ↵jow2011-05-043-1476/+2
| | | | | | compressed git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26822 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ath9k: add noise floor calibration fix that should improve stabilitynbd2011-05-041-0/+52
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26819 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] comgt: add tty hotplug remove handling, only iterate each tty once ↵jow2011-05-042-21/+20
| | | | | | (#9211) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26816 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] kernel: revert r26814jow2011-05-031-16/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26815 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [PATCH 1/2] kernel: add kmod-crypto-ipsecjow2011-05-031-0/+16
| | | | | | | | | | | | kmod-crypto-ipsec bundles some otherwise unprovided kernel crypto modules that are useful for IPSEC. This is an alternative to breaking these modules out into kmod-crypto-wq (crypto_wq.ko), kmod-crypto-rng (rng.ko and krng.ko), and kmod-crypto-iv (eseqiv.ko and chainiv.ko). Signed-off-by: Lars Hjersted <lars@hjersted.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26814 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [PATCH 2/2] kernel: add kmod-crypto-{wq,rng,iv}jow2011-05-031-1/+1
| | | | | | | | | | Add kmod-crypto-iv as a dependency for kmod-ipsec. Also remove the extraneous kmod-crypto-core dependency to eliminate recursion. Signed-off-by: Lars Hjersted <lars@hjersted.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26813 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [PATCH 1/2] kernel: add kmod-crypto-{wq,rng,iv}jow2011-05-031-0/+32
| | | | | | | | | | | | | | | | This patch adds kmod-crypto-wq, kmod-crypto-rng, and kmod-crypto-iv packages. These packages provide some missing kernel crypto modules which are required for IPSEC. The strongswan4, ipsec-tools, and possibly other IPSEC packages do not work properly without these modules. NOTE: The KCONFIG associated with each of these modules gets selected whenever CRYPTO_MANAGER (kmod-crypto-manager) is selected so these modules are already being built. Signed-off-by: Lars Hjersted <lars@hjersted.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26812 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] comgt: move ifup invocation back into background subshell to ↵jow2011-05-031-6/+3
| | | | | | prevent hotplug deadlocks git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26810 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] comgt: move 3g hotplug handling to tty subsystem, fixes race on ↵jow2011-05-032-7/+10
| | | | | | coldplug (#9211) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26809 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] base-files: cleanup permissions of device files in common hotplug ↵jow2011-05-031-6/+15
| | | | | | rules (#9211) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26808 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] hotplug2: introduce tty subsystem events (#9211)jow2011-05-031-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26807 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] firewall: revert accidential committed changes from r26805jow2011-05-021-39/+11
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26806 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [PATCH] firewall: provide examples of ssh port relocation on firewall and ↵jow2011-05-022-11/+61
| | | | | | | | | | | | | | | | IPsec passthrough Two examples of potentially useful configurations (commented out, of course): (a) map the ssh service running on the firewall to 22001 externally, without modifying the configuration of the daemon itself. this allows port 22 on the WAN side to then be port-forwarded to a LAN-based machine if desired, or if not, simply obscures the port from external attack. (b) allow IPsec/ESP and ISAKMP (UDP-based key exchange) to happen by default. useful for most modern VPN clients you might have on your WAN. Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26805 3c298f89-4303-0410-b956-a3cf2f4a3e73
* brcm47xx: add fallback sprom for pci devices without an own sprom.hauke2011-05-012-36/+30
| | | | | | | | | | | | | | If there is no sprom on an ssb based pci device on the brcm47xx architecture ssb now asks the architecture code to look into the nvram to get some sprom data for this device. Now we are able to read out pci/1/1/ foo or pci/1/3/ foo config options. This will fix some problems where the wireless devices does not got an mac address and the following message was show: ssb: WARNING: Invalid SPROM CRC (corrupt SPROM) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26801 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ath9k: add a new fix for signal strength / noise measurementsnbd2011-05-011-0/+88
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26798 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: detect and drop incoming packets with invalid CCMP packet numbers ↵nbd2011-05-011-0/+46
| | | | | | to fix connection hangs on some devices git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26795 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] exclude pktgen for uml targetflorian2011-04-291-0/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26781 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] relayd: map "ipaddr" option to local ip (-L)jow2011-04-271-0/+4
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26773 3c298f89-4303-0410-b956-a3cf2f4a3e73
* madwifi: Fix compilation for 2.6.39nbd2011-04-261-0/+11
| | | | | | | | | Fix compilation for 2.6.39 by replacing SPIN_LOCK_UNLOCKED with DEFINE_SPINLOCK(). Signed-off-by: Jonas Gorski <jonas.gorski+openwrt@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26771 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: backport some more compat fixes, fix compile issues on 2.6.31 and ↵nbd2011-04-261-0/+195
| | | | | | earlier git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26768 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: broadcast the country IE by default if the country code is ↵nbd2011-04-261-0/+5
| | | | | | configured (#9308) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26765 3c298f89-4303-0410-b956-a3cf2f4a3e73
* wpa_supplicant: make sure that the common 802.11 code gets linked in (fixes ↵nbd2011-04-262-0/+4
| | | | | | #9299) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26764 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: replace the regd revert patch with a proper fix, add some more ↵nbd2011-04-262-63/+567
| | | | | | pending patches git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26761 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ath9k: remove the signal strength fix, it causes a lot of confusion and ↵nbd2011-04-251-27/+0
| | | | | | seems to be just as inaccurate as the original version of the code git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26753 3c298f89-4303-0410-b956-a3cf2f4a3e73
* cfg80211: revert upstream regdomain handling breakagenbd2011-04-252-2/+65
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26752 3c298f89-4303-0410-b956-a3cf2f4a3e73
* hostapd: fix a few compile errors and warningsnbd2011-04-246-23/+46
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26751 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: do rate control updates when the HT configuration changes on an ↵nbd2011-04-231-0/+35
| | | | | | interface git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26750 3c298f89-4303-0410-b956-a3cf2f4a3e73
* hostapd: update to 2011-04-21nbd2011-04-2311-34/+216
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26749 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: remove unneeded patchhauke2011-04-211-14/+0
| | | | | | | This was fixed upstream git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26745 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: update to wireless-testing 2011-04-19, contains several beacon ↵nbd2011-04-2055-2349/+65
| | | | | | related fixes for ath9k git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26744 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] ppp: extend the r26742 change to ip-down toojow2011-04-201-4/+7
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26743 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] ppp: prevent duplicate hotplug for non uci managed ppp interfaces ↵jow2011-04-202-3/+10
| | | | | | (#9275) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26742 3c298f89-4303-0410-b956-a3cf2f4a3e73