Commit Graph

17135 Commits (00d2c4b0481bd9cdeb69b5ac420d46cdf4a5713d)
 

Author SHA1 Message Date
Michael Büsch 00d2c4b048 n810: Add usb networking to default net config
SVN-Revision: 25917
13 years ago
Jo-Philipp Wich dcb66b0593 deploy .ipk archives with --force-maintainer to ensure that configs are kept up-to-date in case they exist already for various reasons
SVN-Revision: 25915
13 years ago
Felix Fietkau 283f5e05d0 atheros: add gpio_set_debounce(), refresh patches
SVN-Revision: 25914
13 years ago
Michael Büsch 218ce7a205 tahvo-usb: Fix NULL ptr deref in OTR irq handler
SVN-Revision: 25913
13 years ago
Felix Fietkau 7b64200684 gcc: include assembler functions in the shared libgcc_s library, fixes missing symbol issues on powerpc
SVN-Revision: 25912
13 years ago
Felix Fietkau 0b9cfab2a2 base-files: fix Build/Compile override handling, fixes ar7 compile
SVN-Revision: 25911
13 years ago
Michael Büsch c545c84e13 n810: Update profile
SVN-Revision: 25910
13 years ago
Michael Büsch 55fae078d5 n810: Partially fix tahvo USB.
SVN-Revision: 25908
13 years ago
Michael Büsch 0e59776e3c omap24xx: Fix modular compilation of MUSB
SVN-Revision: 25907
13 years ago
Michael Büsch d80af7ebba Fix loading of ethernet gadget
SVN-Revision: 25905
13 years ago
Jo-Philipp Wich fef8f37692 change PKG_FIXUP:=libtool to PKG_FIXUP:=autoreconf
SVN-Revision: 25904
13 years ago
Michael Büsch 693bc17d40 Load MUSB before gadget and host drivers are loaded
SVN-Revision: 25903
13 years ago
Michael Büsch f1b57a85e0 omap24xx: Update kconfig
SVN-Revision: 25892
13 years ago
Jo-Philipp Wich b81f8abd60 dropbear: fix missing -lcrypt on BSDish host systems (#8971)
SVN-Revision: 25891
13 years ago
Michael Büsch dd54ed7bca omap24xx: Set hardware watchdog timeout to max
SVN-Revision: 25883
13 years ago
Michael Büsch 26c83e3248 omap24xx: Start watchdog with RT priority
SVN-Revision: 25882
13 years ago
Michael Büsch 42233dcf8e atm/solos-pci: Fix incorrectly applied patch. Thanks to Philip A. Prindeville for pointing it out.
SVN-Revision: 25881
13 years ago
Michael Büsch 9e7801b913 cmake: Fix ccache
SVN-Revision: 25878
13 years ago
Jo-Philipp Wich 81cc3ef4f4 yet another missing symbol
SVN-Revision: 25875
13 years ago
Felix Fietkau fff328fd41 toolchain/gcc (linaro): fix extension elimination optimization
This applies Richard Sandiford's patch for Linaro GCC as an alternative to disabling the Linaro-specific extension elimination optimization altogether.

Original patch: https://bugs.launchpad.net/gcc-linaro/+bug/728315
Signed-off-by: Mark Mentovai <mark@moxienet.com>

SVN-Revision: 25871
13 years ago
Jo-Philipp Wich 200460fb54 bison: fix compilation with stub intl header
SVN-Revision: 25869
13 years ago
Michael Büsch 45591c54c4 omap24xx: Update to .38-rc7
SVN-Revision: 25865
13 years ago
Michael Büsch 3a3c99f7ee n810: More retu-wdt cleanups
SVN-Revision: 25863
13 years ago
Felix Fietkau 5bddd70a37 Revert "ar71xx: add missing gpio_set_debounce function" - wrong target
SVN-Revision: 25854
13 years ago
Felix Fietkau 4e155b5283 base-files: do not build or use libgcc on m68k and avr32
SVN-Revision: 25852
13 years ago
Felix Fietkau 57a14f4e15 ar71xx: add missing gpio_set_debounce function
SVN-Revision: 25848
13 years ago
Alexandros C. Couloumbis 8d9c6a8f06 tools/xz: update to version 5.0.1
SVN-Revision: 25847
13 years ago
Jo-Philipp Wich 72e6f95f99 add more missing kernel symbols
SVN-Revision: 25846
13 years ago
Jo-Philipp Wich 85b303bed0 add missing kernel symbol
SVN-Revision: 25845
13 years ago
Alexandros C. Couloumbis e2a0620d44 toolchain/gcc: fix r25709 (closes #8964)
SVN-Revision: 25844
13 years ago
Jo-Philipp Wich 434e1950c6 add missing symbol
SVN-Revision: 25843
13 years ago
Jo-Philipp Wich 260652bf8f add an abstract $(LIBRPC_DEPENDS) variable for feed packages to rely on
SVN-Revision: 25841
13 years ago
Felix Fietkau de4fdd0ce6 add a stamp that can forcibly disable autorebuild for a specific package - useful for testing changes to packages with extremely long recompilation times
SVN-Revision: 25838
13 years ago
Felix Fietkau 3494bdc59a mac80211: allow AP configuration of beacon interval, DTIM period, maximum 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>

SVN-Revision: 25837
13 years ago
Jo-Philipp Wich 13333a6742 firewall: move include sourcing into a subshell, this makes the firewall init immune against exit in the include scripts
SVN-Revision: 25835
13 years ago
Felix Fietkau d1f44a7598 gcc: disable extension elimination, it causes hostapd to be miscompiled on mips
SVN-Revision: 25834
13 years ago
Michael Büsch 9a1b2c8c70 n810bm: Add charger_state attribute
SVN-Revision: 25833
13 years ago
Michael Büsch d5d6811ac4 cbus-retu-wdt: Some fixes
SVN-Revision: 25832
13 years ago
Imre Kaloz 3c801b3dc0 tune some more options by default to decrease size
SVN-Revision: 25831
13 years ago
Imre Kaloz 9f803ade18 upgrade to 0.53.1
SVN-Revision: 25830
13 years ago
Felix Fietkau 8c0df5f96c opkg: use -ffunction-sections, -fdata-sections and --gc-sections
SVN-Revision: 25829
13 years ago
Felix Fietkau 575a35c58d pppd: use -ffunction-sections, -fdata-sections and --gc-sections, saves 5k uncompressed
SVN-Revision: 25828
13 years ago
Felix Fietkau 679dbee95f dnsmasq: use -ffunction-sections, -fdata-sections and --gc-sections, saves 8k uncompressed
SVN-Revision: 25827
13 years ago
Felix Fietkau c05198bf8e dropbear: use -ffunction-sections, -fdata-sections and --gc-sections, saves 19k uncompressed
SVN-Revision: 25826
13 years ago
Felix Fietkau 0670771013 hostapd: use -ffunction-sections, -fdata-sections and --gc-sections, reduces binary size a bit
SVN-Revision: 25821
13 years ago
Imre Kaloz 0e4c9de00e add usb support for the wbd111, refresh patches
SVN-Revision: 25820
13 years ago
Michael Büsch 7b44be03d8 2.6.38: Let mac80211 select CONFIG_AVERAGE
SVN-Revision: 25818
13 years ago
Jo-Philipp Wich b90a6f7682 busybox: enable mount helpers by default (#8946)
SVN-Revision: 25815
13 years ago
Jo-Philipp Wich 1ca64678bb firewall: fix rule generation for v4 or v6 only zones (#8955)
SVN-Revision: 25813
13 years ago
Michael Büsch a37fc00aef omap24xx: Fix missing symbols for mac80211
SVN-Revision: 25811
13 years ago