aboutsummaryrefslogtreecommitdiffstats
path: root/package
Commit message (Collapse)AuthorAgeFilesLines
* uboot-kirkwood: build in $(BUILD_DIR)Luka Perkov2012-11-291-2/+1
| | | | SVN-Revision: 34401
* gettext-full: use shipped libxml for the host build, fixes lzma references ↵Jo-Philipp Wich2012-11-281-0/+3
| | | | | | from creeping in on certain distributions SVN-Revision: 34400
* trace-cmd: lazily evaluate extra plugins list, fixes stray build errors ↵Jo-Philipp Wich2012-11-271-3/+4
| | | | | | causing by missing operands to cp if the package was never built yet SVN-Revision: 34390
* grub2: fix another case of gnulib failing under gnu libcJo-Philipp Wich2012-11-261-0/+15
| | | | SVN-Revision: 34389
* broadcom-wl: fix two problems when more then one wifi card is available.Hauke Mehrtens2012-11-252-0/+43
| | | | | | | | * The device should get a unique name at the beginning and not wl%d. * load the nvram just one time into the own buffer, also when there is more than one device. SVN-Revision: 34381
* base-files: add support for the morse LED triggerGabor Juhos2012-11-252-1/+8
| | | | | | | | | | | | Write "delay" and "message" options to their respective files, allowing Morse code message configuration through UCI. The delay (dit length) defaults to 150ms (about 8 words per minute, suitable for beginners). Signed-off-by: Petr Viktorin <encukou@gmail.com> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 34380
* modules: remove obsolete comment (#12514)Florian Fainelli2012-11-251-2/+0
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 34327
* iptables: fix typo in iptables musl patch after r34313Florian Fainelli2012-11-251-1/+1
| | | | | | | | Thanks to Frank Meerkötter and Szabolcs Nagy for spotting the issue. Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 34326
* add preliminary support for muslFlorian Fainelli2012-11-233-2/+12
| | | | | | | | Musl is an alternative C-library, see http://www.musl-libc.org for more infos. Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 34314
* iptables: add some musl portability fixesFlorian Fainelli2012-11-235-9/+148
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 34313
* linux-atm: add portability fixesFlorian Fainelli2012-11-231-0/+60
| | | | | | | | Spotted while building against musl libc. Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 34312
* busybox: fix arping applet building on muslFlorian Fainelli2012-11-231-0/+12
| | | | | | | | musl-libc is more strict about missing includes. Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 34311
* netfid: fix build on muslFlorian Fainelli2012-11-231-0/+11
| | | | | | | | AF_INET* is provided by sys/socket.h Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 34310
* busybox: define musl specificities in platform.hFlorian Fainelli2012-11-231-0/+17
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 34309
* base-files: use a natural mount syntaxFlorian Fainelli2012-11-236-9/+8
| | | | | | | | | | Busybox built against musl-libc will choke on these otherwise, besides that it is more natural to use the filesystem type, then options, then name, then mountpoint. Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 34308
* busybox: change the date -k patch to be more portableFlorian Fainelli2012-11-231-6/+11
| | | | | | | | | Not all libcs have support for tm_gmtoff which is only available for BSD compatibility, and guarded with __USE_BSD defines, use __tm_gmtoff otherwise. Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 34307
* grub2: accept the linux-musl* tupleFlorian Fainelli2012-11-231-0/+22
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 34306
* uboot-lantiq: add new packageLuka Perkov2012-11-231-0/+115
| | | | SVN-Revision: 34305
* uboot-kirkwood: update to 2012.10Luka Perkov2012-11-2210-1964/+5
| | | | SVN-Revision: 34303
* package: kernel: make crypto kmods always visibleJonas Gorski2012-11-221-1/+1
| | | | | | | | | | | Don't hide crypo submodules unless crypo-core is selected. Fixes kmods depending on crypto modules being unselectable until crypto core is selected (like ext4 on 3.6 or mac80211). Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com> SVN-Revision: 34298
* hostapd: include sys/stat.h for a struct stat definitionFlorian Fainelli2012-11-214-11/+19
| | | | | | | | Some libcs need this header to be explicitely included (e.g: musl) Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 34295
* mtd: do not include error.hFlorian Fainelli2012-11-211-1/+0
| | | | | | | We do not use anything from it, and it is not available with all libcs. Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 34294
* valgrind: re-categorize from utils to develFlorian Fainelli2012-11-211-2/+2
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 34293
* libthread-db: fix libthread_db.so installation.Florian Fainelli2012-11-211-1/+4
| | | | | | | | | libthread_db.so.$(LIBC_SO_VERSION) is only valid for uClibc, (e)glibc just provides libthread_db.so.1. Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 34292
* gdb: recategorize from utils to devel in menuconfigFlorian Fainelli2012-11-211-2/+2
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 34291
* actually deploy atmarp and atmarpd and not just their libtool wrapperJohn Crispin2012-11-211-1/+1
| | | | | | | | | due to a small error in the atm-tools package we are not deploying atmarp/atmarpd but instead the (useless) libtool-wrappers. Signed-Off-By: Frank Meerkötter <frank@meerkoetter.org> SVN-Revision: 34287
* mac80211/rt2x00: add rf_vals for Rt3352 with Xtal=20MHzGabor Juhos2012-11-201-0/+121
| | | | | | | | | [juhosg: move ramips specific stuff into a followup patch] Signed-off-by: Daniel Golle <dgolle@allnet.de> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 34269
* mac80211/rt2x00: support Rt3352 with external PAGabor Juhos2012-11-201-0/+212
| | | | | | | | | This is needed for WiFi to work e.g. on DIR-615 rev.H1. Signed-off-by: Daniel Golle <dgolle@allnet.de> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 34268
* gdb: fix debugging of MIPS(el) applicationsFlorian Fainelli2012-11-191-0/+16
| | | | | | | | | | | | | | GDB previously failed with the following: root@OpenWrt:/# gdb busybox [snip] (gdb) r Starting program: /bin/busybox GDB bug: target.c (gdb_signal_from_host): unrecognized real-time signal Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 34258
* gdb: add missing zlib dependencyFlorian Fainelli2012-11-191-1/+1
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 34256
* brcm47xx: add support for kernel 3.6Hauke Mehrtens2012-11-181-0/+12
| | | | | | This is based on the patch by Peter Wagner. SVN-Revision: 34252
* shouldn't use kernel headers from userspaceImre Kaloz2012-11-181-1/+0
| | | | SVN-Revision: 34246
* package/uboot-envtools: add OpenMesh MR600 supportGabor Juhos2012-11-181-1/+2
| | | | | | | Signed-off-by: Marek Lindner <lindner_marek@yahoo.de> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 34236
* 6relayd: add conffiles section, thanks swalkerSteven Barth2012-11-171-1/+5
| | | | SVN-Revision: 34222
* ar7-atm: make it depend on the generic AR7 platformFlorian Fainelli2012-11-161-1/+1
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 34205
* 6relayd: various updates & fixes - Add RD- and DHCPv6-server functionality - ↵Steven Barth2012-11-163-26/+48
| | | | | | Rework configuration and add example UCI file - Fix various bugs and be more RFC compliant SVN-Revision: 34204
* opkg: fix find logic introduced by previous commitJo-Philipp Wich2012-11-151-8/+8
| | | | SVN-Revision: 34203
* opkg: various additions - only wrap package descriptions when outputting to ↵Jo-Philipp Wich2012-11-154-1/+259
| | | | | | a tty, simplifies parsing descriptions with external utils - introduce -i (--nocase) flag which makes all matching operations case insensitive - introduce "find" command which searches package names and descriptions (e.g. opkg -i find "*autoconfig*") SVN-Revision: 34202
* ppp: - fix multilink ppp with custom ifnames, patch by George Kashperko ↵Jo-Philipp Wich2012-11-126-12/+158
| | | | | | <george@znau.edu.ua> - refresh patches SVN-Revision: 34171
* kernel: modules: ext4 depends on crypto-hash on 3.6Jonas Gorski2012-11-111-1/+1
| | | | SVN-Revision: 34159
* i2c-gpio-mux: fix build for 3.6+ kernelsFlorian Fainelli2012-11-111-0/+5
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 34152
* mac80211: add more tx skb free fixes (hopefully final fix to #11894)Felix Fietkau2012-11-103-160/+209
| | | | SVN-Revision: 34133
* resolveip: fix endless getopt() loop when compiled for arm (#12290)Jo-Philipp Wich2012-11-082-4/+4
| | | | SVN-Revision: 34116
* Load schedule modulesJohn Crispin2012-11-071-0/+4
| | | | | | | | They were missing the AUTOLOAD directive. Signed-off-by: Jonh Wendell <jonh.wendell@oiwifi.com.br> SVN-Revision: 34107
* buildroot: isolate the .install stamp files for build variants (#12279)Jo-Philipp Wich2012-11-071-7/+7
| | | | | | | | This fixes missing embedded packages if multiple build variants are selected in the build config, e.g. missing ppp if CONFIG_PACKAGE_ppp=y and CONFIG_PACKAGE_ppp-multilink=m . SVN-Revision: 34106
* linux: export bcm963xx_tag.h to userspaceJonas Gorski2012-11-061-1/+1
| | | | | | | | | | | | Export bcm963xx_tag.h so mtd can use it without using kernel includes. Signed-off-by: Catalin Patulea <cat@vv.carleton.ca> [jonas.gorski@gmail.com: fixup bcm63xx patches, completely remove header from original location, refresh patches, use a more matching patch number, port to 3.6] Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com> SVN-Revision: 34103
* remove bogus fileJohn Crispin2012-11-061-0/+0
| | | | SVN-Revision: 34099
* unbreak ltq-dsl-fwJohn Crispin2012-11-062-1/+1
| | | | SVN-Revision: 34098
* prepare dsl driver for 3.6 and split fw into a seperate packageJohn Crispin2012-11-065-64/+72
| | | | SVN-Revision: 34096
* netifd: don't send a default client identifier in DHCP requests if no ↵Jo-Philipp Wich2012-11-051-2/+2
| | | | | | clientid uci option is given (#12426) SVN-Revision: 34089