aboutsummaryrefslogtreecommitdiffstats
path: root/package
Commit message (Collapse)AuthorAgeFilesLines
* iw: fix calculation of fractional multicast rates like 5.5Mbps due to wrong ↵Jo-Philipp Wich2011-05-222-2/+13
| | | | | | operator precedence SVN-Revision: 26968
* firewall: explictely mention network in default configuration, makes it less ↵Jo-Philipp Wich2011-05-201-0/+2
| | | | | | confusing SVN-Revision: 26961
* broadcom-wl: fix wild ssb_device accesses as pci_dev for legacy pci dma apiFelix Fietkau2011-05-191-0/+88
| | | | | | | | | | | | | broadcom-wl driver bound to ssb device with ssb driver probe have osh handle struct pdev pointer value initialized with ssb_device pointer. Later on pdev is used with legacy pci dma api as pci_dev thus causing oops sometimes. The patch replaces legacy pci dma api and pass relevant device struct pointer to avoid crashes. Signed-off-by: George Kashperko <george@znau.edu.ua> SVN-Revision: 26949
* broadcom-wl: fix uninitialized variableFelix Fietkau2011-05-191-1/+2
| | | | | | | | It was causing an occasional kernel oops. Signed-off-by: Nathan Hintz <nlhintz@hotmail.com> SVN-Revision: 26948
* ath9k: fix some locking issues in the tx fifo cleanup patchFelix Fietkau2011-05-191-35/+23
| | | | SVN-Revision: 26947
* ath9k: clean up tx fifo handling on ar9380 based hardwareFelix Fietkau2011-05-182-0/+680
| | | | SVN-Revision: 26934
* ath9k: fix a small race condition in the tx_last_beacon patchFelix Fietkau2011-05-181-5/+10
| | | | SVN-Revision: 26933
* ipcalc.sh CIDR notation Hi,Jo-Philipp Wich2011-05-182-7/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 SVN-Revision: 26930
* mac80211: sync the CONFIG_ATH5K_DEBUG make override with the buildflags ↵Felix Fietkau2011-05-171-1/+1
| | | | | | override (thx, KanjiMonster) SVN-Revision: 26927
* ath9k: implement tx_last_beacon() to allow mac80211 to respond to probe ↵Felix Fietkau2011-05-171-0/+106
| | | | | | requests in ad-hoc mode without creating too much spam SVN-Revision: 26923
* * add missing aes dependency to mv_cesaJohn Crispin2011-05-171-1/+1
| | | | | | Signed-off-by: Jan Willies <jan@willies.info> SVN-Revision: 26920
* ath9k: fix ad-hoc nexttbtt calculation, which broke beacon transmission in ↵Felix Fietkau2011-05-171-0/+11
| | | | | | some instances SVN-Revision: 26915
* ath9k: fix issues with ad-hoc beacon slot selectionFelix Fietkau2011-05-161-0/+50
| | | | SVN-Revision: 26913
* mac80211: update to 2011-05-13Felix Fietkau2011-05-1634-906/+167
| | | | SVN-Revision: 26912
* package/kernel: crypto: Remove renamed modules hackVasilis Tsiligiannis2011-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> SVN-Revision: 26903
* package/kernel: netfilter: Remove 2.4/2.6 referencesVasilis Tsiligiannis2011-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> SVN-Revision: 26902
* package/kernel: Remove all 2.4 definitionsVasilis Tsiligiannis2011-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> SVN-Revision: 26901
* package/kernel: Remove $(KMOD_SUFFIX) usageVasilis Tsiligiannis2011-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> SVN-Revision: 26900
* package/kernel/modules/other.mk is getting big enough that putting the LEDs ↵John Crispin2011-05-092-207/+216
| | | | | | | | stuff into its own file makes sense. Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com> SVN-Revision: 26868
* Deployment of IPv6 has opened up many more prefixes than just the 2000::/3 ↵Travis Kemen2011-05-081-2/+2
| | | | | | space, so a default route of ::/0 is more correct. Thanks Dave Taht SVN-Revision: 26857
* base-files: retrigger usb coldplug after module loading, solves ↵Jo-Philipp Wich2011-05-082-1/+6
| | | | | | usb_modeswitch on boot and possibly others (#9352) SVN-Revision: 26848
* base-files: fix a typo in etc/bannerGabor Juhos2011-05-071-1/+1
| | | | SVN-Revision: 26841
* lua: remove posix from Lua core, almost nothing uses it - saves 9k compressedJo-Philipp Wich2011-05-043-1476/+2
| | | | SVN-Revision: 26822
* ath9k: add noise floor calibration fix that should improve stabilityFelix Fietkau2011-05-041-0/+52
| | | | SVN-Revision: 26819
* comgt: add tty hotplug remove handling, only iterate each tty once (#9211)Jo-Philipp Wich2011-05-042-21/+20
| | | | SVN-Revision: 26816
* kernel: revert r26814Jo-Philipp Wich2011-05-031-16/+0
| | | | SVN-Revision: 26815
* kernel: add kmod-crypto-ipsec kmod-crypto-ipsec bundles some otherwise ↵Jo-Philipp Wich2011-05-031-0/+16
| | | | | | | | 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> SVN-Revision: 26814
* kernel: add kmod-crypto-{wq,rng,iv} Add kmod-crypto-iv as a dependency for ↵Jo-Philipp Wich2011-05-031-1/+1
| | | | | | | | kmod-ipsec. Also remove the extraneous kmod-crypto-core dependency to eliminate recursion. Signed-off-by: Lars Hjersted <lars@hjersted.com> SVN-Revision: 26813
* kernel: add kmod-crypto-{wq,rng,iv} This patch adds kmod-crypto-wq, ↵Jo-Philipp Wich2011-05-031-0/+32
| | | | | | | | | | | | 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> SVN-Revision: 26812
* comgt: move ifup invocation back into background subshell to prevent hotplug ↵Jo-Philipp Wich2011-05-031-6/+3
| | | | | | deadlocks SVN-Revision: 26810
* comgt: move 3g hotplug handling to tty subsystem, fixes race on coldplug (#9211)Jo-Philipp Wich2011-05-032-7/+10
| | | | SVN-Revision: 26809
* base-files: cleanup permissions of device files in common hotplug rules (#9211)Jo-Philipp Wich2011-05-031-6/+15
| | | | SVN-Revision: 26808
* hotplug2: introduce tty subsystem events (#9211)Jo-Philipp Wich2011-05-031-1/+1
| | | | SVN-Revision: 26807
* firewall: revert accidential committed changes from r26805Jo-Philipp Wich2011-05-021-39/+11
| | | | SVN-Revision: 26806
* firewall: provide examples of ssh port relocation on firewall and IPsec ↵Jo-Philipp Wich2011-05-022-11/+61
| | | | | | | | | | | | | 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> SVN-Revision: 26805
* brcm47xx: add fallback sprom for pci devices without an own sprom.Hauke Mehrtens2011-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) SVN-Revision: 26801
* ath9k: add a new fix for signal strength / noise measurementsFelix Fietkau2011-05-011-0/+88
| | | | SVN-Revision: 26798
* mac80211: detect and drop incoming packets with invalid CCMP packet numbers ↵Felix Fietkau2011-05-011-0/+46
| | | | | | to fix connection hangs on some devices SVN-Revision: 26795
* exclude pktgen for uml targetFlorian Fainelli2011-04-291-0/+1
| | | | SVN-Revision: 26781
* relayd: map "ipaddr" option to local ip (-L)Jo-Philipp Wich2011-04-271-0/+4
| | | | SVN-Revision: 26773
* madwifi: Fix compilation for 2.6.39Felix Fietkau2011-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> SVN-Revision: 26771
* mac80211: backport some more compat fixes, fix compile issues on 2.6.31 and ↵Felix Fietkau2011-04-261-0/+195
| | | | | | earlier SVN-Revision: 26768
* mac80211: broadcast the country IE by default if the country code is ↵Felix Fietkau2011-04-261-0/+5
| | | | | | configured (#9308) SVN-Revision: 26765
* wpa_supplicant: make sure that the common 802.11 code gets linked in (fixes ↵Felix Fietkau2011-04-262-0/+4
| | | | | | #9299) SVN-Revision: 26764
* mac80211: replace the regd revert patch with a proper fix, add some more ↵Felix Fietkau2011-04-262-63/+567
| | | | | | pending patches SVN-Revision: 26761
* ath9k: remove the signal strength fix, it causes a lot of confusion and ↵Felix Fietkau2011-04-251-27/+0
| | | | | | seems to be just as inaccurate as the original version of the code SVN-Revision: 26753
* cfg80211: revert upstream regdomain handling breakageFelix Fietkau2011-04-252-2/+65
| | | | SVN-Revision: 26752
* hostapd: fix a few compile errors and warningsFelix Fietkau2011-04-246-23/+46
| | | | SVN-Revision: 26751
* mac80211: do rate control updates when the HT configuration changes on an ↵Felix Fietkau2011-04-231-0/+35
| | | | | | interface SVN-Revision: 26750
* hostapd: update to 2011-04-21Felix Fietkau2011-04-2311-34/+216
| | | | SVN-Revision: 26749