summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* ramips: add support for 3.3Gabor Juhos2012-04-2116-0/+813
| | | | SVN-Revision: 31403
* ramips: rt305x: add OHCI/EHCI registration code for RT3352Gabor Juhos2012-04-212-5/+161
| | | | SVN-Revision: 31402
* ramips: rt305x: fix CPU clock detection on RT3352Gabor Juhos2012-04-212-12/+36
| | | | SVN-Revision: 31401
* ramips: rt305x: use different memory size setup for RT3352Gabor Juhos2012-04-212-2/+13
| | | | SVN-Revision: 31400
* ramips: rt3883: add profile and build sysupgrade image for the RT-N56UGabor Juhos2012-04-212-0/+29
| | | | SVN-Revision: 31399
* ramips: add swconfig to the default package listGabor Juhos2012-04-211-1/+1
| | | | SVN-Revision: 31398
* ramips: build initramfs image for the Fonera 2.0NGabor Juhos2012-04-211-0/+4
| | | | SVN-Revision: 31397
* ramips: rt305x: add initial support for Tenda W306R V2.0Gabor Juhos2012-04-2114-0/+120
| | | | | | | | | | More device info at: http://wiki.openwrt.org/toh/tenda/w306r Signed-off-by: David Pearce <David_18051985@hotmail.com.au> [juhosg: fix checkpatch errors, remove kmod-phy and luci-ssl packages from the profile, change broken GPIO number] SVN-Revision: 31396
* ramips: remove hardcoded console parameter from kernel configsGabor Juhos2012-04-213-3/+3
| | | | SVN-Revision: 31395
* linux/3.3: fix crypto4xx build failureGabor Juhos2012-04-211-0/+10
| | | | SVN-Revision: 31394
* remove screwed up patch for gcc 4.7-linaro which got committed by accidentMirko Vogt2012-04-211-247/+0
| | | | SVN-Revision: 31393
* add support for GCC 4.7-linaro (based on GCC 4.7.1)Mirko Vogt2012-04-2119-1/+10373
| | | | SVN-Revision: 31392
* change /etc/config/network according to actual VLAN config to enable LAN ↵Mirko Vogt2012-04-211-1/+1
| | | | | | | | | | | | | | | | | port 4 on the ARV4520PW board The VLAN mapping on the ARV4520PW board is the following: port on Router: | VLAN in software: LAN 1 | 3 LAN 2 | 2 LAN 3 | 1 LAN 4 | 0 DSL | 4 So LAN4 is not VLAN4 but VLAN0 (VLAN4 is DSL port) -> set "3 2 1 0 5t" as default switch config. SVN-Revision: 31391
* gcc: add patch to make the getenv() spec function nonfatal if requested ↵Jo-Philipp Wich2012-04-214-0/+56
| | | | | | environment variable is unset SVN-Revision: 31390
* ppc40x: nuke 3.2 supportGabor Juhos2012-04-208-2032/+0
| | | | SVN-Revision: 31387
* ppc40x: switch to 3.3.2Gabor Juhos2012-04-201-1/+1
| | | | SVN-Revision: 31386
* ppc40x: sync 3.3 configGabor Juhos2012-04-201-2/+0
| | | | SVN-Revision: 31385
* ar71xx: remove duplicated AP121 Kconfig entryGabor Juhos2012-04-201-19/+7
| | | | SVN-Revision: 31382
* cns21xx: remove 3.2 supportGabor Juhos2012-04-2019-7863/+0
| | | | SVN-Revision: 31381
* cns21xx: switch to 3.3.2Gabor Juhos2012-04-201-1/+1
| | | | SVN-Revision: 31380
* cns21xx: add support for 3.3Gabor Juhos2012-04-2019-0/+7827
| | | | SVN-Revision: 31379
* linux/3.3: update ARM mach-typesGabor Juhos2012-04-201-12/+762
| | | | SVN-Revision: 31378
* e2fsprogs: fix status reaping with fsck piped to logger, based on patch by ↵Jo-Philipp Wich2012-04-202-1/+4
| | | | | | Lukasz Golec-Biernat <mojedokumenty+openwrt@gmail.com> SVN-Revision: 31377
* enable ntpd server for busyboxJo-Philipp Wich2012-04-202-8/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | hi Another version, in this one the enable_server option is in the timeserver ntp part of the "system" config file You can patch trunk and bacfire (tested both) You can put busybox ntpd in client mode (if you put server), in client & server (by putting enable_server to 1, ntpd listen to udp 123), and also in server mode only (if you didn't put any servers in the config and still put enable_server 1, ntpd will answer with the time of the router) I've replaced "config_foreach getpeers timeserver" with "config_get peers ntp server" because we want ntp timeserver, not random ones (to pre-answer if someone want to say that it's intrusive ...) Signed-off-by: Etienne CHAMPETIER <etienne.champetier@free.fr> Le 27/03/2012 20:41, Etienne Champetier a écrit : > I've now tested my trunk patch and it works fine > But I still can't find were $PROG is defined (is this a mistake, or some sort of built in variable???) > (I've made some grep and nothing) > > Le 23/03/2012 02:19, Philip Prindeville a écrit : >> Maybe: >> >> [ -n "$PROG" -a -x "$PROG" ] || return 1 >> >> instead? >> >> >> On 3/22/12 4:34 PM, Etienne Champetier wrote: >>> Hi >>> >>> The 2 attached patchs (trunk & bacfire) add busybox ntpd enable_server option, as busybox ntpd server is compiled by default. >>> We only need 1 client/server daemon (olipro patch was launching 2 daemons) >>> I've fully tested the bacfire patch, and as i don't have a running openwrt trunk i'm not sure for the trunk patch (i'm sure about my modifications, but i'm not sure about "[ -x $PROG ] || return 1", as "$PROG" isn't defined ?!) >>> >>> Signed-off-by: Etienne CHAMPETIER <etienne.champetier@free.fr> >>> >>> >>> Le 16/01/2012 01:57, Philip Prindeville a écrit : >>>> On 1/14/12 11:37 AM, Olipro wrote: >>>>> On Saturday 14 Jan 2012 02:45:59 Philip Prindeville wrote: >>>>>> Don't we already have a 'disabled' option? Now we're adding an >>>>>> 'enable_server' option? >>>>>> >>>>>> That seems confusing for no useful reason. >>>>>> >>>>> have you bothered to read what I originally wrote? your response would make >>>>> me inclined to believe that you didn't. >>>>> >>>>> currently the ntpd initscript only runs it as a CLIENT - this patch enables >>>>> you to have one instance running as a client and another as a SERVER that >>>>> other hosts can synchronise with. >>>>> >>>>> Or perhaps I'm misunderstanding, what would you propose for allowing the >>>>> built-in busybox ntpd to be utilised as a server? a separate init script >>>>> entirely perhaps? >>>> Or separate config sections... instead of 'config ntp' have 'config ntp-server' and 'config ntp-client'. >>>> >>>> -Philip >>>> >>>> >>>> _______________________________________________ >>>> openwrt-devel mailing list >>>> openwrt-devel@lists.openwrt.org >>>> https://lists.openwrt.org/mailman/listinfo/openwrt-devel >> _______________________________________________ >> openwrt-devel mailing list >> openwrt-devel@lists.openwrt.org >> https://lists.openwrt.org/mailman/listinfo/openwrt-devel > _______________________________________________ > openwrt-devel mailing list > openwrt-devel@lists.openwrt.org > https://lists.openwrt.org/mailman/listinfo/openwrt-devel SVN-Revision: 31374
* Add a missing symbol for config-3.3Claudio Mignanti2012-04-201-0/+1
| | | | | | Signed-off-by: Claudio Mignanti <c.mignanti@gmail.com> SVN-Revision: 31373
* Reorganize the subtargets, group subtargets per cpu familyClaudio Mignanti2012-04-2017-31/+41
| | | | | | Signed-off-by: Claudio Mignanti <c.mignanti@gmail.com> SVN-Revision: 31372
* Update the kernel to 3.3.x series, remove patches that doesn't apply anymoreClaudio Mignanti2012-04-208-463/+60
| | | | | | Signed-off-by: Claudio Mignanti <c.mignanti@gmail.com> SVN-Revision: 31371
* Ensure that the bin directory exists before copy the filesClaudio Mignanti2012-04-201-0/+2
| | | | | | Signed-off-by: Claudio Mignanti <c.mignanti@gmail.com> SVN-Revision: 31370
* remove some annoying warnings and fix snd modules buildFlorian Fainelli2012-04-203-0/+42
| | | | SVN-Revision: 31365
* add missing config symbolFlorian Fainelli2012-04-201-0/+1
| | | | SVN-Revision: 31364
* gpio-button-hotplug: don't build on 2.6.30Florian Fainelli2012-04-201-0/+1
| | | | SVN-Revision: 31363
* button-hotplug: prevent build on 2.6.30Florian Fainelli2012-04-201-0/+1
| | | | SVN-Revision: 31362
* xfsprogs: disable po files buildingFlorian Fainelli2012-04-201-0/+20
| | | | SVN-Revision: 31361
* ar71xx: nuke 3.2 supportGabor Juhos2012-04-19134-12668/+0
| | | | SVN-Revision: 31360
* ar71xx: switch to 3.3.2Gabor Juhos2012-04-191-1/+1
| | | | SVN-Revision: 31359
* ar71xx: sync 3.3 configGabor Juhos2012-04-191-1/+0
| | | | SVN-Revision: 31358
* ar71xx: merge/reorganize 3.3 patchesGabor Juhos2012-04-196-101/+38
| | | | SVN-Revision: 31357
* ar71xx: use ap91_pci_init for RB751{,G}Gabor Juhos2012-04-193-32/+20
| | | | SVN-Revision: 31356
* ar71xx: move USB device registration directly into rb751{,g}_setupGabor Juhos2012-04-191-5/+5
| | | | SVN-Revision: 31355
* ar71xx: add ap9x_pci_get_wmac_data helperGabor Juhos2012-04-192-0/+19
| | | | SVN-Revision: 31354
* ar71xx: add sanity checks to decode_rleGabor Juhos2012-04-191-2/+7
| | | | | | Also use -EINVAL instead of -1. SVN-Revision: 31353
* avr32: remove old kernel supportGabor Juhos2012-04-193-149/+0
| | | | SVN-Revision: 31352
* avr32: switch to 3.3.2Gabor Juhos2012-04-193-1/+132
| | | | | | | | uClibc-0.9.33 causes segfaults at least in iptables. The segfaults are present with 2.6.39 as well, so it makes no sense to stick to that version. SVN-Revision: 31351
* avr32: sync kernel configGabor Juhos2012-04-191-14/+14
| | | | SVN-Revision: 31350
* avr32: fix atomic64_t related kernel build errorsGabor Juhos2012-04-191-0/+9
| | | | SVN-Revision: 31349
* mac80211: update to 2012-04-17, adds some build fixes and juhosg's ar9380 tx ↵Felix Fietkau2012-04-1920-543/+241
| | | | | | power fix SVN-Revision: 31347
* openssl: update to v1.0.1a (CVE-2012-2110)Jo-Philipp Wich2012-04-192-2/+14
| | | | SVN-Revision: 31346
* switch to 3.2.15Florian Fainelli2012-04-182-9/+9
| | | | SVN-Revision: 31345
* fix 335-mips-kexec patch for all 3+ kernelsFlorian Fainelli2012-04-184-16/+16
| | | | SVN-Revision: 31344
* make xz ramdisk images also available for 2.6.39+Jonas Gorski2012-04-181-1/+1
| | | | | | 2.6.38 isn't the only kernel supporting it. SVN-Revision: 31343