Commit graph

17014 commits

Author SHA1 Message Date
Jo-Philipp Wich
73468de8d1 base-files: fix sysctl handling, do not react on fake ifaces in route hotplug handler
SVN-Revision: 25713
2011-02-25 22:44:37 +00:00
Imre Kaloz
e0deefc793 register gmac, too
SVN-Revision: 25712
2011-02-25 18:00:54 +00:00
Imre Kaloz
1af8f9973f optimize for the fa526 core
SVN-Revision: 25711
2011-02-25 17:46:03 +00:00
Imre Kaloz
88e0cf0ba4 optimize for the fa526 core
SVN-Revision: 25710
2011-02-25 17:45:46 +00:00
Imre Kaloz
aa6099c624 backport fa526 optimization for gcc 4.5+
SVN-Revision: 25709
2011-02-25 17:44:18 +00:00
Imre Kaloz
446f79385b use the Linaro GCC for arm and mips targets
SVN-Revision: 25708
2011-02-25 17:43:15 +00:00
Imre Kaloz
f7c0993027 switch back to xscale mtune, marvell_f is unlikely to get upstreamed
SVN-Revision: 25707
2011-02-25 17:33:04 +00:00
Imre Kaloz
b84d1996ba upgrade to 2.6.37.1
SVN-Revision: 25706
2011-02-25 17:26:25 +00:00
Imre Kaloz
a3989e3dbd We use different toolchain directories for different ARM archs, so we should set the default arch of gcc to reflect this.
This enables EABI support for armv4 CPUs.

Signed-off-by: Jochen Friedrich <jochen@scram.de>

SVN-Revision: 25705
2011-02-25 16:52:25 +00:00
Alexandros C. Couloumbis
5a8a9a0e23 linux/generic: fix block2mtd for 2.6.38
SVN-Revision: 25704
2011-02-24 19:13:05 +00:00
Alexandros C. Couloumbis
d6b792f659 linux/generic: fix r25699 take II
SVN-Revision: 25703
2011-02-24 19:08:49 +00:00
Alexandros C. Couloumbis
86265da965 package/madwifi: fix for kernels >= 2.6.38
SVN-Revision: 25702
2011-02-24 15:53:32 +00:00
Alexandros C. Couloumbis
44c696ac78 package/wprobe: fix for kernels >= 2.6.38
SVN-Revision: 25701
2011-02-24 15:51:28 +00:00
Alexandros C. Couloumbis
4ef9410fb3 linux/generic: fix r25699 (thanks nbd)
SVN-Revision: 25700
2011-02-24 14:52:13 +00:00
Alexandros C. Couloumbis
0e60b43258 linux/generic: fix mini_fo for kernels >= 2.6.38
SVN-Revision: 25699
2011-02-24 14:45:53 +00:00
Imre Kaloz
ae885a3978 upgrade to latest git, refresh patches
SVN-Revision: 25698
2011-02-24 12:56:20 +00:00
Imre Kaloz
bb54973a24 upgrade to 2.6.37.1
SVN-Revision: 25697
2011-02-24 08:15:06 +00:00
Imre Kaloz
0be1f2ba60 sync avr32 patch with the latest ones from atmel
SVN-Revision: 25696
2011-02-24 08:14:15 +00:00
Imre Kaloz
82d8dc0896 include u-boot version in filename
SVN-Revision: 25695
2011-02-24 08:12:38 +00:00
John Crispin
54734b3d7d * adds stage1 lzma * new boards * fixes settings for PSC ram * lost of cleanups
SVN-Revision: 25694
2011-02-24 07:41:10 +00:00
Felix Fietkau
cf3b7563cf add kmod-oprofile to package/kernel
SVN-Revision: 25690
2011-02-24 01:11:16 +00:00
Felix Fietkau
ac905e8a7b kernel: the patch to disable the crypto tests is no longer necessary since 2.6.36, remove it
SVN-Revision: 25689
2011-02-24 01:11:11 +00:00
Felix Fietkau
ac9a5cf885 kmod-crypto: fix selecting core crypto modules
SVN-Revision: 25688
2011-02-24 01:11:04 +00:00
Felix Fietkau
b1b89bf646 kmod-crypto: remove pcomp, nothing uses it
SVN-Revision: 25686
2011-02-24 00:30:13 +00:00
Felix Fietkau
2bcc7fb12b qos-scripts: disable overhead calculation by default, it does not work properly for many line speeds
SVN-Revision: 25685
2011-02-24 00:30:09 +00:00
Felix Fietkau
659a72e89a kernel config: disable the pcomp api + zlib decompressor by default - it has not been used for a while now
SVN-Revision: 25684
2011-02-24 00:30:02 +00:00
Felix Fietkau
c5c798acac kernel config: remove the obsolete pcomp unlzma symbol
SVN-Revision: 25683
2011-02-24 00:29:57 +00:00
Felix Fietkau
f31a576caf kernel config: refresh using kconfig.pl
SVN-Revision: 25682
2011-02-24 00:29:52 +00:00
Michael Büsch
002847add7 2.6.38: Remove patches that are upstream in -rc6
SVN-Revision: 25680
2011-02-23 23:44:59 +00:00
Jo-Philipp Wich
c5a65a0373 Send ipkg-make-index.sh output to stdout
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>

SVN-Revision: 25678
2011-02-23 22:59:57 +00:00
Jo-Philipp Wich
3edf9c3544 Never write errors to stdout from ipkg-make-index.sh
Since the output of ipkg-make-index.sh is unconditionally used to create
the Packages file, sending the errors into this file is unacceptable
(both because they are not shown to users and because they make an
invalid Packages file).

For incorrect invocation, write to stderr.
For errors from which, send to /dev/null with stdout.

Signed-off-by: Kevin Locke <klocke@digitalenginesoftware.com>

SVN-Revision: 25677
2011-02-23 22:58:58 +00:00
Florian Fainelli
d071d17c46 switch to 2.6.37.1
SVN-Revision: 25675
2011-02-23 22:28:46 +00:00
Jo-Philipp Wich
1de2fe5617 kernel: fix path to pcidev driver
SVN-Revision: 25670
2011-02-23 21:51:17 +00:00
Jo-Philipp Wich
e733270b96 kernel: make xen pcidev driver depend on Linux 2.6.37 or 2.6.38
SVN-Revision: 25669
2011-02-23 21:43:50 +00:00
Jo-Philipp Wich
f84ba3d981 kernel: fix kmod-xen-evtchn for Linux 2.6.37+
SVN-Revision: 25668
2011-02-23 20:13:40 +00:00
Jo-Philipp Wich
b4c7bd03ac drop obsolete patch
SVN-Revision: 25661
2011-02-22 14:17:57 +00:00
Felix Fietkau
7f20657f4c qos-scripts: add missing dependency
SVN-Revision: 25656
2011-02-22 00:10:19 +00:00
Jo-Philipp Wich
e1c9f19660 jshn: add build dependency on libubox, it needs the list.h header from it
SVN-Revision: 25652
2011-02-21 19:49:48 +00:00
Alexandros C. Couloumbis
a05994173d package/madwifi: extend wlanconfig scan ssid field from 14 to 30 characters
SVN-Revision: 25649
2011-02-21 13:08:55 +00:00
Imre Kaloz
e733d679a0 remove the CS variant - broken since it's addition
SVN-Revision: 25648
2011-02-21 11:43:16 +00:00
Florian Fainelli
3d217da60b add a default network config file, patch from Wipster
SVN-Revision: 25647
2011-02-21 09:35:36 +00:00
Imre Kaloz
1352979f8c as [25641] removed kernel IMQ support, remove it from iptables as well
SVN-Revision: 25646
2011-02-21 09:27:32 +00:00
Lars-Peter Clausen
3ba2dbeb1d Refresh patches for 2.6.37.1
SVN-Revision: 25644
2011-02-21 06:14:25 +00:00
Felix Fietkau
5728d13d02 kernel: add missing config symbols
SVN-Revision: 25643
2011-02-21 02:45:56 +00:00
Felix Fietkau
bc85dd19bc ar71xx: revert accidental kernel upgrade
SVN-Revision: 25642
2011-02-21 02:42:47 +00:00
Felix Fietkau
9dad83362d kernel: remove imq support, refresh patches
SVN-Revision: 25641
2011-02-21 02:06:51 +00:00
Felix Fietkau
fca74c3a44 qos-scripts: drop the use of IMQ, use ifb and act_connmark instead
SVN-Revision: 25640
2011-02-21 01:33:27 +00:00
Felix Fietkau
c0f0316109 kernel: add a new scheduler action for restoring the connection tracking mark - useful for ingress shaping, will be used for replacing IMQ later
SVN-Revision: 25639
2011-02-21 00:03:20 +00:00
Michael Büsch
67a4d9ac3c omap24xx: Use noatime for maemo partitions
SVN-Revision: 25638
2011-02-20 23:50:59 +00:00
Michael Büsch
e6100a161b boot.sh: Tabs are used for indent. Also use tabs in jffs2_ready()
SVN-Revision: 25635
2011-02-20 22:40:47 +00:00