summaryrefslogtreecommitdiffstats
path: root/package
Commit message (Collapse)AuthorAgeFilesLines
* mac80211: allow AP configuration of beacon interval, DTIM period, maximum ↵nbd2011-03-021-4/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | permissible STA listen interval, and basic rates This introduces beacon_int and basic_rate (per wifi-device), and dtim_period and max_listen_int (per wifi-iface) for mac80211. These configure the beacon interval, basic rate specification, DTIM period (one DTIM per this many beacon frames), and maximum listen interval that a STA will be permitted to associate with. All of the new settings are optional; if they're absent, the existing hostapd (or, in the case of basic_rate, driver) defaults will be used. The existing bintval property only used for type adhoc is moved from wifi-iface to wifi-device, and is renamed to beacon_interval because bintval isn't a great name. The beacon interval is property of the wifi-device; while the choice between wifi-device and wifi-iface may not be relevant with an adhoc network, there's no reason to configure the same property one way for type adhoc and another for type ap. This change isn't expected to cause many problems, as bintval was added recently, in r25111. Similarly, the list of basic rates, also added for type adhoc in r25111, is a property of the device and not the interface. Further, it ought to be represented in UCI as a list, not a string dependent on the format that iw uses. I’ve moved it onto the device, renamed it to basic_rate, and made it configurable for APs via hostapd. Finally, I adapted it to use the same kb/s representation as mcast_rate; there's precedent for this format in that it's also how madwifi interprets mcast_rate. Neither bintval nor basicrates were ever documented in the UCI wireless configuration page on the wiki. When this change is committed, I'll update the documentation as needed. Signed-off-by: Mark Mentovai <mark@moxienet.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25837 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] firewall: move include sourcing into a subshell, this makes the ↵jow2011-03-022-3/+5
| | | | | | firewall init immune against exit in the include scripts git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25835 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package/dropbear]: tune some more options by default to decrease sizekaloz2011-03-023-12/+77
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25831 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package/dropbear]: upgrade to 0.53.1kaloz2011-03-024-9/+21
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25830 3c298f89-4303-0410-b956-a3cf2f4a3e73
* opkg: use -ffunction-sections, -fdata-sections and --gc-sectionsnbd2011-03-021-0/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25829 3c298f89-4303-0410-b956-a3cf2f4a3e73
* pppd: use -ffunction-sections, -fdata-sections and --gc-sections, saves 5k ↵nbd2011-03-021-0/+3
| | | | | | uncompressed git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25828 3c298f89-4303-0410-b956-a3cf2f4a3e73
* dnsmasq: use -ffunction-sections, -fdata-sections and --gc-sections, saves ↵nbd2011-03-021-0/+3
| | | | | | 8k uncompressed git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25827 3c298f89-4303-0410-b956-a3cf2f4a3e73
* dropbear: use -ffunction-sections, -fdata-sections and --gc-sections, saves ↵nbd2011-03-021-1/+2
| | | | | | 19k uncompressed git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25826 3c298f89-4303-0410-b956-a3cf2f4a3e73
* hostapd: use -ffunction-sections, -fdata-sections and --gc-sections, reduces ↵nbd2011-03-021-0/+3
| | | | | | binary size a bit git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25821 3c298f89-4303-0410-b956-a3cf2f4a3e73
* 2.6.38: Let mac80211 select CONFIG_AVERAGEmb2011-03-011-0/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25818 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] busybox: enable mount helpers by default (#8946)jow2011-03-011-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25815 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] firewall: fix rule generation for v4 or v6 only zones (#8955)jow2011-03-012-2/+5
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25813 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ipset: do not use -static-libgccnbd2011-03-011-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25809 3c298f89-4303-0410-b956-a3cf2f4a3e73
* iptables: do not use -static-libgccnbd2011-03-011-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25808 3c298f89-4303-0410-b956-a3cf2f4a3e73
* busybox: remove the -static-libgcc flag, saves a few kbnbd2011-03-011-0/+11
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25802 3c298f89-4303-0410-b956-a3cf2f4a3e73
* base-files: relink uclibc and libgcc libraries to remove leftovers of the ↵nbd2011-03-011-5/+59
| | | | | | | | | statically linked initial libgcc saves a few kb and gets rid of unused not exported functions as well should also improve the reliability of mklibs git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25800 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ubus: add a missing dependencynbd2011-02-281-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25792 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] block-mount: Fixed shell error on empty string due to -eq to ↵cshore2011-02-281-3/+3
| | | | | | number for the optional find_root variable git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25787 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] block-mount,block-extroot: Modify mount.sh so that block-extroot ↵cshore2011-02-281-4/+13
| | | | | | mounts target /overlay as rootfs (use if is_rootfs is now deprecated) when block-extroot is installed, and as /tmp/overlay-disabled otherwise git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25786 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: improve ath9k AP A-MPDU PS bufferingnbd2011-02-272-8/+44
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25779 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: override CONFIG_IWLWIFI_LEGACYnbd2011-02-271-0/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25778 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: set CONFIG_RTLWIFInbd2011-02-271-0/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25776 3c298f89-4303-0410-b956-a3cf2f4a3e73
* p54: fix a null pointer dereference bugnbd2011-02-271-0/+18
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25775 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: disable scheduler actions by default, they will be enabled only when ↵nbd2011-02-271-0/+1
| | | | | | kmod-sched is selected git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25771 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] acx-mac8011: bump to 20110123florian2011-02-271-2/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25756 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: update to 2011-02-25nbd2011-02-2727-70/+69
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25749 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] xfsprogs: explicitely disable gettext and 64bit library supportjow2011-02-261-0/+4
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25733 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ubus: update to the latest version to fix a compile error with gcc 4.5nbd2011-02-261-2/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25732 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add redboot-ar231x (LZMA compressed redboot for a few devices)nbd2011-02-261-0/+52
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25723 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] relayd: add uci integrationjow2011-02-253-1/+134
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25714 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] base-files: fix sysctl handling, do not react on fake ifaces in ↵jow2011-02-251-2/+5
| | | | | | route hotplug handler git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25713 3c298f89-4303-0410-b956-a3cf2f4a3e73
* package/madwifi: fix for kernels >= 2.6.38acoul2011-02-241-0/+14
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25702 3c298f89-4303-0410-b956-a3cf2f4a3e73
* package/wprobe: fix for kernels >= 2.6.38acoul2011-02-241-0/+5
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25701 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [uboot-lantiq]blogic2011-02-2430-453/+3216
| | | | | | | | | | * adds stage1 lzma * new boards * fixes settings for PSC ram * lost of cleanups git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25694 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add kmod-oprofile to package/kernelnbd2011-02-241-0/+15
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25690 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kmod-crypto: fix selecting core crypto modulesnbd2011-02-241-0/+5
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25688 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kmod-crypto: remove pcomp, nothing uses itnbd2011-02-241-1/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25686 3c298f89-4303-0410-b956-a3cf2f4a3e73
* qos-scripts: disable overhead calculation by default, it does not work ↵nbd2011-02-241-1/+0
| | | | | | properly for many line speeds git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25685 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [PATCH 2/2] Send ipkg-make-index.sh output to stdoutjow2011-02-231-1/+1
| | | | | | | | | | | | | | | | The "Generating index for package" created by ipkg-make-index only clutter stderr and serve to push previous warnings/errors off-screen. Instead, send to stdout. Note: This would send incorrect invocation messages to stdout as well. If this is a concern, perhaps we could send them to FD 3, then send 3 to 2... Signed-off-by: Kevin Locke <klocke@digitalenginesoftware.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25678 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] kernel: fix path to pcidev driverjow2011-02-231-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25670 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] kernel: make xen pcidev driver depend on Linux 2.6.37 or 2.6.38jow2011-02-231-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25669 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] kernel: fix kmod-xen-evtchn for Linux 2.6.37+jow2011-02-231-2/+23
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25668 3c298f89-4303-0410-b956-a3cf2f4a3e73
* qos-scripts: add missing dependencynbd2011-02-221-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25656 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] jshn: add build dependency on libubox, it needs the list.h header ↵jow2011-02-211-0/+1
| | | | | | from it git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25652 3c298f89-4303-0410-b956-a3cf2f4a3e73
* package/madwifi: extend wlanconfig scan ssid field from 14 to 30 charactersacoul2011-02-211-0/+29
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25649 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package/iptables]: as [25641] removed kernel IMQ support, remove it from ↵kaloz2011-02-212-136/+0
| | | | | | iptables as well git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25646 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: remove imq support, refresh patchesnbd2011-02-211-24/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25641 3c298f89-4303-0410-b956-a3cf2f4a3e73
* qos-scripts: drop the use of IMQ, use ifb and act_connmark insteadnbd2011-02-214-24/+40
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25640 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: add a new scheduler action for restoring the connection tracking ↵nbd2011-02-212-0/+85
| | | | | | mark - useful for ingress shaping, will be used for replacing IMQ later git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25639 3c298f89-4303-0410-b956-a3cf2f4a3e73
* boot.sh: Tabs are used for indent. Also use tabs in jffs2_ready()mb2011-02-201-4/+4
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25635 3c298f89-4303-0410-b956-a3cf2f4a3e73