summaryrefslogtreecommitdiffstats
path: root/package/kernel
Commit message (Collapse)AuthorAgeFilesLines
* [package] kernel: fix i2c section after r28334florian2011-10-101-1/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28399 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Add patch for linux-3.0 as well.cshore2011-10-031-0/+2
| | | | | | | Fix typo from previous submission with input-keys-polled. Philip Prindeville - 2011-10-03 01:44:55 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28356 3c298f89-4303-0410-b956-a3cf2f4a3e73
* The name gpio-cs5535 used to refer to the drivers/char/ module, but in 3.1 ↵cshore2011-10-031-0/+5
| | | | | | | | it refers to what had been drivers/gpio/cs5535-gpio in more recent kernels. Philip Prindeville - 2011-08-29 04:55:59 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28354 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] package I2C_MUX_GPIOblogic2011-10-011-0/+15
| | | | | | | | this module was missing from [28334] buildbots timed out as the symbol was not defined git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28352 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] add kmod-hwmon-lm95241florian2011-09-301-0/+14
| | | | | | | | This allows building the module for the national lm95241 i2c temperature sensor. Signed-off-by: Daniel Golle <dgolle@allnet.de> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28335 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] add support for more i2c muxesflorian2011-09-301-0/+92
| | | | | | | | | | | | | | | | This patch should bring support for several kernel modules related to I2C to openwrt, which are existing for several years now. Namely there is the i2c-tiny-usb bus driver, to hook up an I2C bus on any device with usb support (prevent voiding warranty when opening and soldering). Second, there is support for the i2c-mux driver and pca954x as a I2C switch driver. Finally there is support for common I2C gpio expander driver modules pca953x and pcf857x. They work without providing platform data recently (can be instantiated at runtime). Signed-off-by: Hartmut Knaack <knaack.h@gmx.de> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28334 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: remove the x86 dependency from kmod-sky2 so that it can be used on ↵nbd2011-09-281-1/+0
| | | | | | other platforms as well git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28314 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: modules: usb.mk: fix a typojogo2011-09-221-1/+1
| | | | | | Closes #10143. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28290 3c298f89-4303-0410-b956-a3cf2f4a3e73
* package: dwc_otg is required for external root on ramips.juhosg2011-08-221-1/+1
| | | | | | Signed-off-by: Cezary Jackiewicz <cezary@eko.one.pl> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28074 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] kernel: add kmod-crypto-userflorian2011-08-171-0/+16
| | | | | | | | | Add kernel crypto user-space interface (af_alg). Includes interface for hash algorithms (algif_hash) and skcipher algorithms (algif_skcipher). Signed-off-by: Lars Hjersted <lars@hjersted.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28026 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] add support for DS2482 1-Wire I2C bus masterflorian2011-08-161-0/+17
| | | | | | Signed-off-by: Wojciech Dubowik <Wojciech.Dubowik@neratec.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28010 3c298f89-4303-0410-b956-a3cf2f4a3e73
* package/kernel: create package for the RT305x dwc_otg driverjuhosg2011-08-151-0/+19
| | | | | | Based on a patch by Layne Edwards <ledwards76@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27998 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: remove kmod-input-core just for some x86 profiles.hauke2011-08-151-2/+2
| | | | | | | | | Not all x86 profiles have CONFIG_INPUT=y in their configuration. Just remove kmod-input-core for them. Thank you Philip Prindeville for pointing out this problem. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27988 3c298f89-4303-0410-b956-a3cf2f4a3e73
* package/kernel: kmod-hid: can't mix and match DEPENDS:= and $(call ↵jogo2011-08-141-2/+1
| | | | | | | | | | | | | | SetDepends/...) Since the SetDepends macro does a: DEPENDS:= ... it can't be used after setting DEPENDS:= explicitly, or it will clobber the previous value. Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27983 3c298f89-4303-0410-b956-a3cf2f4a3e73
* package/kernel: Fix AddDepends/SetDepends calls with make 3.82jogo2011-08-141-1/+1
| | | | | | | | | | The module definitions depend on 001-depends.mk being the first included, but make 3.82 does not sort the results of wildcards anymore, so do an explicit sort of the includes. Found by Philip Prindeville, thanks! git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27982 3c298f89-4303-0410-b956-a3cf2f4a3e73
* package/kernel: Mark mvswitch as broken for linux 3.1jogo2011-08-091-1/+1
| | | | | | mvswitch does not compile because of VLAN API changes. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27936 3c298f89-4303-0410-b956-a3cf2f4a3e73
* package/kernel: invert dependencies for current kernel featuresjogo2011-08-094-7/+7
| | | | | | | Instead of depending on new kernel versions, depend on not having one of the older ones (or vice versa for modules removed in current kernels). git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27934 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: typo in cs5535 and cs5536 pata driver kernel definitionshauke2011-08-061-4/+4
| | | | | | | closes #9773 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27924 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: Fix firewire for 2.6.37+jogo2011-08-021-3/+71
| | | | | | | | The old ieee1394 stack was removed in 2.6.37. The new firewire stack is available for all kernel versions, but experimental for the older one, so make both available where appropriate. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27874 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] kernel/modules: Add missing config symbolacinonyx2011-08-011-2/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27862 3c298f89-4303-0410-b956-a3cf2f4a3e73
* package/kernel: move kmod-fs-mbcache into fs-ext4jogo2011-07-311-23/+9
| | | | | | | mbcache is only needed if xattr support is enabled, but this is only true for ext4 on 2.6.37+, so just bundle it with ext4 when needed. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27849 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: crypto: fix spellinghauke2011-07-241-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27757 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ocf-linux: version bump to 20110720hauke2011-07-241-0/+16
| | | | | | | | | | | | | | | | | Fixes problem with TFM allocation in cryptosoft.c Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com> Hauke: * remove ubsec_ssb package and take it from ocf-linux * use patches from ocf-linux package * refresh all patches * readd some build fixes for OpenWrt. * readd CRYPTO_MANAGER dependency git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27753 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: add bcma packagehauke2011-07-231-0/+23
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27732 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fixup orion compilekaloz2011-07-111-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27591 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kmod-dm9000 should build as a moduleblogic2011-07-071-2/+4
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27543 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] add kmod-sched-netem (#8839)florian2011-07-051-0/+15
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27458 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: use lib80211 from compat-wireless instead of the kernelnbd2011-07-041-32/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27436 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add kmod for dm9000blogic2011-07-031-0/+14
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27402 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add kmod definitions for at24(i2c) and at25(spi) eepromsblogic2011-07-031-0/+31
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27401 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [x86] package/kernel/modules: Alexandros pointed me at this patch, and I ↵cshore2011-07-031-2/+20
| | | | | | | | | noted that not only the MFGPT module but also the new GPIO driver both rely on the mfd_core functionality to operate correctly. Signed-off-by: Alexandros C. Couloumbis <alex@ozo.com> Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27372 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [x86] Revert "Like the earlier mfgpt patch, the new GPIO drivers also ↵cshore2011-07-031-20/+2
| | | | | | | | require the MFD driver to be present for the BAR's to be mapped." This reverts commit c485487b63d1c1de72a375f1278d8a98546ba3af. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27370 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Like the earlier mfgpt patch, the new GPIO drivers also require the MFD ↵cshore2011-07-031-2/+20
| | | | | | | | driver to be present for the BAR's to be mapped. Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27369 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: fix wrong line for the +@DRIVER_WEXT_SUPPORT dependency in ↵nbd2011-06-241-2/+2
| | | | | | kmod-net-zd1201 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27274 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [kernel] fix and make usable kmod-pcmcia-rsrcflorian2011-06-211-14/+23
| | | | | | This module is also needed for e.g: kmod-bcm63xx-pcmcia git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27253 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] kernel: package more NIC drivers:jow2011-06-201-0/+66
| | | | | | | | | | | | | * SiS 190 Fast/Gigabit Ethernet support * SysKonnect Yukon support * Atheros L2 Fast Ethernet support * Atheros L1 Gigabit Ethernet support * Atheros L1C * Atheros L1E Patch by Lauri Võsandi<lauri.vosandi@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27242 3c298f89-4303-0410-b956-a3cf2f4a3e73
* package/kernel: Fixed missing CONFIG_HID_SUPPORT required for successful ↵rwhitby2011-06-171-1/+2
| | | | | | kmod-bluetooth compile. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27201 3c298f89-4303-0410-b956-a3cf2f4a3e73
* package/kernel: Update version dependencies and kmods for linux 3.0hauke2011-06-154-7/+12
| | | | | | | | | | Also disable rtc-core for now since this changed to a bool, now directly used in the kernel if enabled. Signed-off-by: Jonas Gorski <jonas.gorski+openwrt@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27186 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] kernel: revert unrelated change in previous commitjow2011-06-091-1/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27150 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] kernel: gre depends on ipv6 is Kernel is built with IPv6 supportjow2011-06-091-0/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27149 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: fix description of kmod-pata-cs5535 and kmod-pata-cs5536hauke2011-06-071-2/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27126 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: fix call of kmod-pata-cs5535 and kmod-pata-cs5536hauke2011-06-071-2/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27125 3c298f89-4303-0410-b956-a3cf2f4a3e73
* x86: remove pata-amd driver from generic x86 images, add addition cs553x modulesnbd2011-05-312-1/+97
| | | | | | | | | | The pata-cs5535/pata-cs5536 driver is actually fairly rare: it only gets used on embedded platforms. Therefore, we remove it from the generic x86 configuration. Also, add definitions for other useful geode modules (high-res timers, MFGPT timers, etc). Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27037 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: generic: Update 2.6.39 to finalhauke2011-05-254-10/+15
| | | | | | | | | | | | * Add missing config symbols * Update package/kernel for 2.6.39 CONFIG_BT_L2CAP=y and CONFIG_BT_SCO=y are set to build them into the bluetooth module. Thank you Jonas Gorski for the patch git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27010 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [PATCH] kernel: kmod-crypto-iv depends on kmod-crypto-managerjow2011-05-241-1/+1
| | | | | | | | | | | Add a missing dependency to kmod-crypto-iv. chainiv.ko and eseqiv.ko from kmod-crypto-iv depend on crypto_blkcipher.ko from kmod-crypto-manager. Signed-off-by: Lars Hjersted <lars@hjersted.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26984 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [netfilter] package u32 match and TEE target, patches by Maxim Uvarovjow2011-05-241-0/+35
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26977 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [modules]blogic2011-05-171-1/+1
| | | | | | | | | * add missing aes dependency to mv_cesa Signed-off-by: Jan Willies <jan@willies.info> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26920 3c298f89-4303-0410-b956-a3cf2f4a3e73
* package/kernel: crypto: Remove renamed modules hackacinonyx2011-05-151-23/+9
| | | | | | | | | Since the oldest kernel in trunk is 2.6.30 the modules always use the newer names, so we can just use the _generic prefix directly. Signed-off-by: Jonas Gorski <jonas.gorski+openwrt@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26903 3c298f89-4303-0410-b956-a3cf2f4a3e73
* package/kernel: netfilter: Remove 2.4/2.6 referencesacinonyx2011-05-151-12/+8
| | | | | | | | | There's only 2.6, so it doesn't make sense to mention modules that are 2.4 only or for modules that they are available only for 2.6. Signed-off-by: Jonas Gorski <jonas.gorski+openwrt@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26902 3c298f89-4303-0410-b956-a3cf2f4a3e73
* package/kernel: Remove all 2.4 definitionsacinonyx2011-05-155-106/+32
| | | | | | | | | With no 2.4 support in trunk, we can safely remove any 2.4 definitions for kmods and merge the 2.6 definitions into the generic ones. Signed-off-by: Jonas Gorski <jonas.gorski+openwrt@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26901 3c298f89-4303-0410-b956-a3cf2f4a3e73