summaryrefslogtreecommitdiffstats
path: root/package
Commit message (Collapse)AuthorAgeFilesLines
...
* base-files: the relinked libpthread needs to be linked against libdl, ↵nbd2011-03-081-1/+1
| | | | | | otherwise calls to dlopen() fail (fixes #8978) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25950 3c298f89-4303-0410-b956-a3cf2f4a3e73
* madwifi: fix logic error in r25929nbd2011-03-071-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25942 3c298f89-4303-0410-b956-a3cf2f4a3e73
* omap24xx: Add config option for n810 bluetooth drivermb2011-03-071-0/+16
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25934 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: Add scan race fixmb2011-03-071-0/+141
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25930 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [madwifi]: use the xscale hal by default for arm, override it where neededkaloz2011-03-071-14/+11
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25929 3c298f89-4303-0410-b956-a3cf2f4a3e73
* only support EABI on ARM targetskaloz2011-03-072-9/+8
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25928 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: print message on hw restartmb2011-03-071-0/+14
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25926 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: Don't include p54spi default eeprommb2011-03-071-3/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25925 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] ppp: drop 402-use_uclibc_utils.patch, it breaks ip address conversionjow2011-03-071-365/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25921 3c298f89-4303-0410-b956-a3cf2f4a3e73
* hotplug2: replace udevtrigger from the udev-106 source with a much smaller ↵nbd2011-03-075-75/+351
| | | | | | self-contained, stripped-down version git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25920 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ppp: add a few patches to reduce the package sizenbd2011-03-075-0/+651
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25919 3c298f89-4303-0410-b956-a3cf2f4a3e73
* base-files: fix Build/Compile override handling, fixes ar7 compilenbd2011-03-061-5/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25911 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Fix loading of ethernet gadgetmb2011-03-061-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25905 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] change PKG_FIXUP:=libtool to PKG_FIXUP:=autoreconfjow2011-03-065-5/+5
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25904 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Load MUSB before gadget and host drivers are loadedmb2011-03-061-3/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25903 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] dropbear: fix missing -lcrypt on BSDish host systems (#8971)jow2011-03-061-0/+20
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25891 3c298f89-4303-0410-b956-a3cf2f4a3e73
* base-files: do not build or use libgcc on m68k and avr32nbd2011-03-031-7/+9
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25852 3c298f89-4303-0410-b956-a3cf2f4a3e73
* 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