Gabor Juhos
5dd433ee41
ip17xx: Add VLAN tag field
...
Since IP175D uses tag-based VLANs, we need an ability to set VLAN tag
of every VLAN.
Signed-off-by: Martin Mares <mj@ucw.cz>
Signed-off-by: Patrick Horn <patrick.horn@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21718 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-08 20:18:38 +00:00
Gabor Juhos
7b4b5ffe70
ip17xx: Maintain state->remove_tag incrementally
...
So far, state->remove_tag was sometimes updated incrementally, sometimes
left to correct_vlan_state() to recalculate. Since I want to avoid use of
correct_vlan_state() for IP175D, this patch fixes the only two remaining
places which leave state->remove_tag inconsistent with state->add_tag
and it drops the recalculation.
Signed-off-by: Martin Mares <mj@ucw.cz>
Signed-off-by: Patrick Horn <patrick.horn@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21717 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-08 20:18:34 +00:00
Gabor Juhos
b4a61f51bb
ip17xx: Initialize VLAN state upon reset
...
Let VLAN state variables be initialized not only when the enable VLAN bit
is toggled, but also upon reset.
At this point, this should be a no-op, since the driver reads the current
hardware state before doing any modifications anyway, but I plan to keep
some state locally in the subsequent patches.
Signed-off-by: Martin Mares <mj@ucw.cz>
Signed-off-by: Patrick Horn <patrick.horn@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21716 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-08 20:18:30 +00:00
Gabor Juhos
21c047cd0b
ip17xx: Introduce vlan array
...
Replace vlan_ports array in struct ip175c_state by an array of structures.
Signed-off-by: Martin Mares <mj@ucw.cz>
Signed-off-by: Patrick Horn <patrick.horn@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21715 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-08 20:18:25 +00:00
Gabor Juhos
83ae20132e
ip17xx: Introduce indirection of low-level operations
...
This patch introduces seperation between low-level and high-level parts
of the driver. The low-level functions are now called via pointers stored
in struct ip175c_regs.
The only functional changes are:
o correct_vlan_state() is now called as a part of every update_state().
o The order of setting of MODE_REG and resetting switch ports
has changed. (These are independent actions, so it should not matter.)
o ip175c_set_tagged() sets the tags via update_state() instead of writing
directly to the registers.
o The same for ip175c_set_pvid().
The only gaps in this abstraction are operations on ports (get_port_speed
and friends), which access PHY registers directly.
Signed-off-by: Martin Mares <mj@ucw.cz>
Signed-off-by: Patrick Horn <patrick.horn@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21714 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-08 20:18:20 +00:00
Gabor Juhos
ce244e155a
ip17xx: Fix use of MODE_VAL
...
The value written to MODE_REG in ip175c_reset() should be obviously MODE_VAL,
not RESET_VAL. Actually, this change is a NOP, because in the only case where
the MODE_REG is used, the two values are identical, but it makes the code
more readable.
Signed-off-by: Martin Mares <mj@ucw.cz>
Signed-off-by: Patrick Horn <patrick.horn@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21713 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-08 20:18:15 +00:00
Gabor Juhos
a8c13fe54f
ip17xx: Fix indentation in get_state() and update_state()
...
Signed-off-by: Martin Mares <mj@ucw.cz>
Signed-off-by: Patrick Horn <patrick.horn@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21712 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-08 20:18:10 +00:00
Gabor Juhos
0bff315185
ip17xx: Fixed error handling in ip175c_set_val()
...
Upon error, ip175c_set_val() returned 0 instead of -EINVAL.
Signed-off-by: Martin Mares <mj@ucw.cz>
Signed-off-by: Patrick Horn <patrick.horn@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21711 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-08 20:18:05 +00:00
Gabor Juhos
b9eb7def42
ip17xx: Cosmetic cleanups
...
Trying to unify capitalization and formatting of comments. Writing of periods
at the end of comments is however still inconsistent.
Signed-off-by: Martin Mares <mj@ucw.cz>
Signed-off-by: Patrick Horn <patrick.horn@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21710 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-08 20:18:00 +00:00
Gabor Juhos
9d0a3a6f6b
ip17xx: Consolidate operations with PHY registers
...
Call mdiobus_{read,write} instead of duplicating their code.
Introduce ip_phy_write_masked(), which changes a part of a register. Will
be used later in this patch series. Please note that it does not hold any
lock between reading and writing, so it is up to the caller to serialize.
Also add DUMP_MII_IO, which enables logging of all MII accesses.
Signed-off-by: Martin Mares <mj@ucw.cz>
Signed-off-by: Patrick Horn <patrick.horn@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21709 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-08 20:17:55 +00:00
Gabor Juhos
966a9bdb93
swconfig: Fix a bug in use of SWITCH_PORT_FLAG_TAGGED
...
SWITCH_PORT_FLAG_TAGGED is a bit index, not a bit mask.
Signed-off-by: Martin Mares <mj@ucw.cz>
Signed-off-by: Patrick Horn <patrick.horn@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21708 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-08 20:17:03 +00:00
Alexandros C. Couloumbis
436ce23dd9
brcm47xx: add kernel 2.6.35 preliminary support
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21707 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-08 16:58:06 +00:00
Alexandros C. Couloumbis
7bc4ea6c95
generic-2.6: fix mini_fo 2.6.35 kernel issue
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21706 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-08 16:44:42 +00:00
Alexandros C. Couloumbis
321c2089bd
fix a typo on commit r21704
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21705 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-08 16:19:34 +00:00
Alexandros C. Couloumbis
3b03d777c7
generic-2.6: generic: add missing config symbols for 2.6.35
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21704 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-08 16:13:37 +00:00
Alexandros C. Couloumbis
ba30477904
atheros: add kernel 2.6.35 preliminary support
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21703 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-08 15:01:35 +00:00
Gabor Juhos
ea4d51d1b3
generic: add missing config symbol for 2.6.34
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21699 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-07 09:18:18 +00:00
Gabor Juhos
e61a8b2e88
ar71xx: fix 2.6.34 build errors
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21698 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-07 09:18:13 +00:00
Gabor Juhos
650572a2c8
ar71xx: add missing 2.6.34 config symbol
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21697 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-07 09:17:34 +00:00
Alexandros C. Couloumbis
80d01892f1
generic-2.6: add kernel 2.6.35 preliminary support (patches)
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21696 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-07 05:56:49 +00:00
Alexandros C. Couloumbis
6c0c19ae77
refresh kernel patches
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21694 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-06 21:16:31 +00:00
Florian Fainelli
5bf6ca1e2c
[ar7] generate NA and non-NA images for Titan platforms
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21692 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-06 19:17:01 +00:00
Florian Fainelli
7023050cc8
[ar7] add Titan MTD partitionning support ( #6632 )
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21691 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-06 19:16:55 +00:00
Florian Fainelli
ce097a54e0
[ar7] titan board also have CYWL as a product id
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21690 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-06 19:16:49 +00:00
Florian Fainelli
56102b8a7b
[kernel] do not override kmod-usb-storage-extras Kconfig symbols ( #7285 )
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21688 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-06 19:02:30 +00:00
Gabor Juhos
8c9776b550
ar71xx: build firmware images if Minimal profile is selected
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21684 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-06 17:41:39 +00:00
Gabor Juhos
3859e97282
ar71xx: rename Minimal profile
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21683 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-06 17:41:34 +00:00
Hauke Mehrtens
9d9eb999e1
orion: Update Orion in trunk to kernel 2.6.34.
...
Was flashed on WRT350Nv2, booted and is running for several days.
Closes #7405
Thank you maddes for your patch.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21682 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-06 10:51:52 +00:00
Gabor Juhos
e69562eb28
generic: update mips multimachine patch
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21681 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-05 18:26:45 +00:00
Gabor Juhos
bfa2da2042
adm5120: convert to use the new mips multimachine stuff
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21680 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-05 18:26:40 +00:00
Felix Fietkau
891dbee64e
ar71xx: clarify the nand subtarget a bit
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21679 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-05 11:55:49 +00:00
Gabor Juhos
d501f36856
generic: merge mips multi machine update to generic patches for 2.6.34
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21675 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-04 19:09:52 +00:00
Gabor Juhos
110d363959
generic: merge mips multi machine update to generic patches for 2.6.33
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21674 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-04 19:09:49 +00:00
Gabor Juhos
c60cbd2e61
generic: merge mips multi machine update to generic patches for 2.6.32
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21673 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-04 19:09:46 +00:00
Gabor Juhos
2670b70915
adm5120: don't use linux/autoconf.h
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21672 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-04 19:09:43 +00:00
Gabor Juhos
3e30c92940
adm5120: fix build error on 2.6.34
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21671 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-04 19:09:39 +00:00
Claudio Mignanti
ebfb87169d
[etrax] Force usb features, fix depends
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21664 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-03 09:52:34 +00:00
Felix Fietkau
050d5201af
orion: fix lan and wan mac address for wrt530n v2 (patch by maddes from #7113 )
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21647 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-01 14:41:37 +00:00
Alexandros C. Couloumbis
6210bf767f
ar71xx: fix rootfs mount issue ( closes #7319 )
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21645 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-06-01 08:49:57 +00:00
John Crispin
c463512391
Fix ramips build when CONFIG_RALINK_DEV_GPIO_BUTTONS is not set.
...
Signed-off-by: Helmut Schaa
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21643 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-31 11:57:32 +00:00
Daniel Dickinson
9232721abc
brcm-2.4: preinit: Renamed failsafe echo scriplet to reflect that it is brcm-specific
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21637 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-30 03:21:22 +00:00
Daniel Dickinson
5e5a288fef
brcm-2.4: preinit: Removed duplicate failsafe switch config file
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21636 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-30 03:21:11 +00:00
Daniel Dickinson
fe3f850ad0
ramips: Added preinit scriptlet to set vars based on cpuinfo during preinit_main. This fixes a bug in which the vars were not set due to /proc not being mounted when ramips.sh was sourced
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21635 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-30 03:21:00 +00:00
Daniel Dickinson
9de82160b1
ar71xx: Added preinit scriptlet to set vars based on cpuinfo during preinit_main. This fixes a bug in which the vars were not set due to /proc not being mounted when ar71xx.sh was sourced
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21634 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-30 03:20:49 +00:00
Daniel Dickinson
f165cba5c1
adm5120: Added preinit script to set vars based on cpuinfo during preinit main; This fixes a bug in which the per-board vars were not set due to cpuinfo not being mounted when the adm5120.sh was run
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21633 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-30 03:20:38 +00:00
Daniel Dickinson
f3d7a5138d
adm5120: Fixed name of preinit_iface scriptlet
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21632 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-30 03:20:27 +00:00
Daniel Dickinson
9a6f5981fe
brcm63xx: Fixed 96348GW (Tecom Gx00) LED definitions to match reality (vs reference design)
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21631 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-30 02:04:56 +00:00
Daniel Dickinson
1f0332b969
brcm63xx: Tecom GW6x00 profile: Added hotplug button events and gpio-leds kmods
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21630 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-30 01:44:37 +00:00
Daniel Dickinson
03a1fd3779
brcm63xx: Fixed vlan packet leakage in preinit for known devices with a switch on eth1 (currently only 96348GW - Tecom 6x00)
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21629 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-30 01:33:20 +00:00
Daniel Dickinson
d0f8de305f
brcm63xx: Added preinit reset button module loading for devices known to support it and for which /lib/brcm63xx.sh has the definitions (currently only 96348GW - Tecom 6x00)
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21628 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-30 01:33:09 +00:00
Daniel Dickinson
f8e8dcf746
brcm63xx: Added LED code for preinit (/etc/diag.sh) for 96348GW (Tecom 6x00)
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21627 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-30 01:32:58 +00:00
Daniel Dickinson
089ea4a93c
brcm63xx: Added preinit board-type detection (currently only 96348GW - Tecom 6x00)
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21626 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-30 01:32:47 +00:00
Hauke Mehrtens
933e42b581
kernel: add missing config symbols.
...
Thank you Maddes for your patch
This closes #7375 .
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21623 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-29 14:32:58 +00:00
Hauke Mehrtens
b5805d7bfd
kernel: add lzma support for arm cpu.
...
This patch appears to be lost beetween 2.6.32 and 2.6.33.
Thank you Maddes for the patch.
This helps making orion work with kernel 2.6.34.
closes #7377 .
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21622 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-29 14:31:56 +00:00
Lars-Peter Clausen
2a9a2ac4af
[xburst] udc: Fix recursive spinlocks
...
Driver had recursive spinlock locking: 1. jz4740_queue() acquires lock 2. done()
is called in chain:
jz4740_queue()->jz4740_ep0_kick()->jz4740_ep0_in()->write_fifo_ep0()->done() and
it tries to acquire same lock. 3. Deadlock.
Signed-off-by:
Yauhen Kharuzhy <jekhor@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21619 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-29 00:12:09 +00:00
Lars-Peter Clausen
77e64f323d
[xburst] ASoC: Fix and cleaup dma config
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21618 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-29 00:09:51 +00:00
Lars-Peter Clausen
0af48c7785
[xburst] core fixes
...
* Mask timer irq on startup
* Fix dma width constants
* Do not try to ack intc irqs
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21617 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-29 00:09:11 +00:00
Jo-Philipp Wich
1343492a6c
[brcm47xx] Rename .trx2 image to openwrt-wrt54g3gv2-vf-squashfs-sysupgrade.bin and openwrt-wrt54g3gv2-vf-squashfs.bin to openwrt-wrt54g3gv2-vf-squashfs-factory.bin
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21616 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-29 00:08:07 +00:00
Lars-Peter Clausen
a3dd9c185c
[xburst] jzcodec: Enable support for S8 format
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21615 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-29 00:06:59 +00:00
Lars-Peter Clausen
740fcb14b1
[xburst] fb: Fix pseudo palette for non 32bit color depth.
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21614 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-29 00:06:19 +00:00
Lars-Peter Clausen
5e34b48574
[xburst] rtc: Put rtc Kconfig entry into the correct section
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21613 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-29 00:05:13 +00:00
Felix Fietkau
12abbd4d08
x86: build fully functional images on Mac OS X, now that grub is fixed
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21609 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-28 19:48:21 +00:00
Gabor Juhos
464c781c2b
ramips: merge slab patch
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21607 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-28 19:45:28 +00:00
Gabor Juhos
5430b616f4
ramips: use COMMAND_LINE_SIZE directly
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21606 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-28 19:45:24 +00:00
Gabor Juhos
03224479d8
ramips: add missing 2.6.34 config files
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21605 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-28 19:45:21 +00:00
Gabor Juhos
60a510ae0a
ramips: refresh 2.6.34 patches
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21604 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-28 19:45:16 +00:00
Gabor Juhos
dd563c22da
ramips: sync 2.6.32 config
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21603 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-28 19:45:10 +00:00
Nicolas Thill
de002a7d39
update linux kernel to 2.6.32.14
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21583 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-27 18:09:09 +00:00
John Crispin
02c3a2aa53
[ramips] update to 2.6.34, signed of by russiane39, thx
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21573 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-26 15:53:05 +00:00
Nicolas Thill
6598259ef5
target/linux: refresh 2.6.32 patches
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21566 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-24 20:35:46 +00:00
Hauke Mehrtens
f1f4b36850
kernel: add lzma support for arm cpu.
...
This patch appears to be lost beetween 2.6.32 and 2.6.33.
Thank you Maddes for the patch.
This helps making orion work with kernel 2.6.33.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21552 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-23 17:44:32 +00:00
Hauke Mehrtens
0d6ac72c65
orion: fix build
...
This patch does not apply any more because of changes in target/linux/generic-2.6/patches-2.6.32/089-mtd-samsung-flash.patch
TODO: find out if this patch is still needed.
Fixes build problem decsripted in #7348 .
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21551 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-23 17:02:43 +00:00
Hauke Mehrtens
110826dc6c
brcm47xx: refresh patches
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21543 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-23 13:17:56 +00:00
Hauke Mehrtens
cfb9268507
generic-2.6: refresh patches
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21542 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-23 13:17:32 +00:00
Hauke Mehrtens
0710ef015d
kernel: update kernel to version 2.6.32.13 and 2.6.33.4
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21540 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-23 13:16:51 +00:00
Florian Fainelli
3bbc276e5d
[rdc] include swconfig in ar525w profile
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21532 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-21 21:25:51 +00:00
Florian Fainelli
b8420e1fb8
[rdc] load all r6040 modules dependencies in preinit hook
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21531 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-21 21:25:45 +00:00
Florian Fainelli
99c94303e8
[rdc] add r6040 phylib support which allows to use the ip175c switch driver on ar525w
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21521 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-21 09:53:59 +00:00
Nicolas Thill
2cce948705
target/generic-2.6: add missing bits for 2.6.30 ssb update
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21507 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-19 17:07:40 +00:00
John Crispin
de85a5733d
[ifxmips] adds proper kconfig to select the new mach types
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21500 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-18 10:21:05 +00:00
John Crispin
c8e6b1378f
[ifxmips] oops, missing fix from [21485]
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21499 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-18 09:14:01 +00:00
Lars-Peter Clausen
00e07cf808
[kernel] Add checksum for 2.6.34, refresh 2.6.34 patches and update targets from 2.6.34-rcX to 2.6.34
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21498 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-17 22:05:07 +00:00
John Crispin
5bb4773eb4
[ifxmips]
...
* adds support for speedport w502V
* bump kernel to 2.6.33.4
* make ethernet be configurable as MII/RMII
* on xway we now assign a static amount of cp1 ram (still need to find a
sane value)
* remove bogus board.c
* jiffies were running with a (1 << 2) multiplier
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21485 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-17 10:06:46 +00:00
Florian Fainelli
62d49bfca7
[kernel] add missing ifxmips crypto config symbols, spotted by buildbot
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21483 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-17 09:28:44 +00:00
Florian Fainelli
52961860a3
[rdc] set vendor to RDC even if CPU id is not known
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21475 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-16 13:40:26 +00:00
Florian Fainelli
7f9edb0460
[rdc] squash platform_support.patch into rdc_boards.patch
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21474 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-16 13:40:20 +00:00
Florian Fainelli
3a6671b60c
[rdc] fix link checking with switches, only port1 of switches would report link up
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21471 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-16 12:36:26 +00:00
Florian Fainelli
49554ca96f
[rdc] switch to 2.6.32.12
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21467 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-16 11:00:51 +00:00
Felix Fietkau
55de6aeeb9
get rid of CRLF encoding in various files
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21462 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-16 00:20:17 +00:00
Jo-Philipp Wich
8d429d0e2e
[brcm-2.4] fix a kernel bug where IPv6 packets are received on IPv4 sockets, this fixes dual stack software like OLSRd when running on Kernel 2.4
...
Signed-off-by: Alina Friedrichsen <x-alina@gmx.net>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21461 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-15 22:36:56 +00:00
Florian Fainelli
730a6da763
[rdc] fix wrong hunk introduced by r21309, thanks rtz2
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21460 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-15 21:27:02 +00:00
Florian Fainelli
62accf6c04
[rdc] fix panic on boot due to invalid IORESOURCE for MFD cells, fix gpio value setting
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21459 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-15 21:26:56 +00:00
Florian Fainelli
994b4517fa
[rdc] fix 2.6.30 lzma tuning patch to output file size at end of kernel, otherwise decompressor remains stuck
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21458 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-15 19:15:10 +00:00
Florian Fainelli
06a4afce30
[ar7] use correct port type, which sets the correct receive fifo trigger options ( #7095 )
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21457 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-15 19:15:03 +00:00
Florian Fainelli
85118b7bff
[kernel] do not export find_task_by_vpid twice on 2.6.30
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21456 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-15 19:14:50 +00:00
Hauke Mehrtens
6a4f17a036
ssb: activate CONFIG_SSB_BLOCKIO in the kernel and not in compat-wireless.
...
Before this patch CONFIG_SSB_BLOCKIO was set to y in compat-wireless
but the in kernel ssb system had it set to n, this causes an invalid pointer.
b43 now needs CONFIG_SSB_BLOCKIO=y
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21449 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-15 11:04:53 +00:00
Gabor Juhos
dae241a475
ar71xx: Make wget2nand fail if copying the kernel fails and use the correct file extension for the rootfs image
...
wget2nand didnt check the exit status after copying the kernel, if the
copying failed for some reason ( for example not enougs space on the
kernel partition) it simply continued extracting the rootfs.
I also changed the filename, which wget2nand trys to download (
.tar.gz instead of .tgz ).
Signed-off-by: Marko Foerster <mrkfoerster@googlemail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21444 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-14 08:38:39 +00:00
Gabor Juhos
0eea4b85a2
ar71xx: fix nbg460n mtd partitions
...
This fixes the NBG460N/550N/550NH mtd partitions.
Signed-off-by: Michael Kurz <michi.kurz@googlemail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21443 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-14 08:37:58 +00:00
Lars-Peter Clausen
b2d6bdcdda
[xburst] Add 2.6.34 patches
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21438 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-12 23:12:41 +00:00
Lars-Peter Clausen
d172024875
[kernel] Move CONFIG_LZMA_{DE,}COMPRESS to generic config
...
It is selected by CONFIG_JFFS2_LZMA which is set in the generic config.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21437 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-12 23:04:18 +00:00
Lars-Peter Clausen
2be7a845d8
[kernel] gpio_buttons: include slab.h
...
Fixes build with 2.6.34
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21436 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-12 22:50:26 +00:00
Nicolas Thill
f2fc44f5e5
target/uml: add missing CONFIG_MATOM config symbol
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21434 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-12 21:34:48 +00:00
Hauke Mehrtens
847f0e0f12
brcm47xx: use tab instead of space
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21430 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-12 20:28:39 +00:00
Hauke Mehrtens
f4b0f28250
kernel: add missing symbol
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21429 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-12 20:15:51 +00:00
Lars-Peter Clausen
083aabf7f1
[kernel] Add missing symbols to generic 2.6.34 config
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21428 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-12 19:39:04 +00:00
Hauke Mehrtens
2703e61c3a
brcm47xx: ehci-ssb: some updates:
...
* update pointers in struct hc_driver
* make ssb_ehci_detach more look like the pci version
* remove resume and suspend as they are never activated and not compiling
* replace ssb_ehci_start with ehci_run as it only calls this method
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21427 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-12 18:28:41 +00:00
Daniel Dickinson
42b39a2f16
brcm-2.4: Fixed preinit and failsafe switch configuration
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21417 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-10 17:10:47 +00:00
Mirko Vogt
8cc8b5f22c
sound-soc-qi_lb60: rename package as underscores are not allowed by opkg
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21412 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-09 22:24:13 +00:00
Florian Fainelli
6e2b8d4b68
[kernel] refresh 2.6.32 patches
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21411 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-09 18:13:49 +00:00
Florian Fainelli
b145752f2d
[ar7] refresh kernel patches
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21410 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-09 18:13:43 +00:00
Florian Fainelli
5eae0a2d3d
[ar7] rework 130-clocks_devices_init.patch to make it more robust
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21409 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-09 18:13:37 +00:00
Florian Fainelli
6828466d4f
[kernel] make etrax samsung flash patch generic ( #6552 )
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21408 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-09 09:25:41 +00:00
Felix Fietkau
cdea3cc534
ar71xx: remove madwifi from the default profile
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21406 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-08 20:06:50 +00:00
Felix Fietkau
b7aa34d796
ar71xx: use the lzma kernel and a proper size limit for pb92
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21405 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-08 20:06:44 +00:00
Florian Fainelli
4fd86ccb7b
[ar7] prevent race between clocks and devices registration ( #6532 )
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21404 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-08 16:58:08 +00:00
Nicolas Thill
c0eb3b3611
image/x86: fix typo when building on Mac OS X ( closes : #7303 )
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21401 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-08 12:46:25 +00:00
Alexandros C. Couloumbis
5064ee8c36
adm5120: include r21398 actual changes
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21399 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-08 08:19:56 +00:00
Alexandros C. Couloumbis
3ec9ee9705
adm5120: update files-2.6.33 and files-2.6.34
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21398 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-08 08:15:40 +00:00
Felix Fietkau
07c5b4cc79
ar71xx: remove some bogus kernel config overrides
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21397 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-07 16:20:37 +00:00
Felix Fietkau
aa319d87f6
ar71xx: add a new subtarget for nand based devices - saves around 44k on the lzma compressed generic kernel image
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21396 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-07 16:20:32 +00:00
Felix Fietkau
84407eb7cb
brcm47xx: adjust the brcm4710 cache workaround code so that it does not break bcm4716 (patch by Bernhard Loos)
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21395 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-07 11:48:15 +00:00
Florian Fainelli
065e231246
[kernel] backport r21373 to 2.4 kernel
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21374 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-05 09:08:02 +00:00
Florian Fainelli
641da1e31a
[kernel] fix build error on hifnHIPP spotted by buildbot
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21373 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-05 09:03:59 +00:00
Florian Fainelli
3e2ffbf933
[rdc] fix bad lzma tuning options bad hunks
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21372 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-05 09:03:55 +00:00
Nicolas Thill
d6cfedc7ca
target/x86: cleanup image config options
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21365 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-05 02:11:15 +00:00
Nicolas Thill
711491bad1
target/x86: use common config items for options shared between generic and olpc targets
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21364 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-05 02:07:38 +00:00
Nicolas Thill
7bfd126b31
target/rb532: use -combined suffix for kernel+rootfs images
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21363 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-05 01:59:43 +00:00
Nicolas Thill
560f2614b5
images: rename CONFIG_TARGET_ROOTFS_FSPART to CONFIG_TARGET_ROOTFS_PARTSIZE
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21362 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-05 01:52:54 +00:00
Jo-Philipp Wich
b663320802
[generic-2.4] add OCF 20100325 support to brcm-2.4
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21357 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-04 21:00:14 +00:00
Jo-Philipp Wich
0f34590d55
[generic-2.6] update OCF framework to version 20100325
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21356 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-04 20:59:19 +00:00
Florian Fainelli
bc4ae75a7d
[brcm63xx] revert r21085, fixes #7282
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21352 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-04 08:07:39 +00:00
Florian Fainelli
563cbc922c
[adm5120] let 802.1q support be built-in ( #7280 )
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21349 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-04 07:39:00 +00:00
Jo-Philipp Wich
071c65060f
[generic-2.6] remove a bogus byteswap in the hifn_795x driver, should fix support for the VPN1411 crypto accelerator
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21344 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-03 20:24:49 +00:00
Florian Fainelli
c70f0ec79b
[kernel] use AMD standard command-set with winbond flash chips ( #6966 ), patch from obinou
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21333 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-03 09:03:14 +00:00
Nicolas Thill
7b4aa86560
target/uml: fix host processor type selection on x86_64 (proper fix for [13166])
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21318 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-02 21:03:16 +00:00
Florian Fainelli
3aae5d1aba
[rdc] add lzma tuning options, patch from Bernhard Loos
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21311 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-02 19:31:05 +00:00
Florian Fainelli
9d53b1924e
[rdc] fix upgrade detection logic, patch from Bernhard Loos
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21310 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-02 19:30:59 +00:00
Florian Fainelli
2346270ff7
[rdc] fix sitecom firmware partition size, patch from Bernhard Loos
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21309 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-02 19:30:52 +00:00
Florian Fainelli
b4cf72b4f9
[ar7] include second ethernet interface in bridge after r20022
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21307 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-02 19:30:36 +00:00
Florian Fainelli
4a0dfb52df
[brcm63xx] do not write to per-port over-current register, which is bogus ( #6898 )
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21306 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-02 19:14:10 +00:00
Nicolas Thill
443cf0e427
package/grub: build a host grub and a target grub ( #7269 )
...
- use the host grub binary for grub install, but with target stage files
- disable SSP (-fno-stack-protector) & Compile Time Buffer Checks (-U_FORTIFY_SOURCE) if appropriate
- create a target grub package
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21305 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-02 17:32:25 +00:00
Nicolas Thill
f216c1d9a7
target/uml: bump to 2.6.32.12
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21301 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-02 16:33:34 +00:00
Nicolas Thill
c649340898
target/uml: fix memcpy export on x86_64 with gcc < 4.3 ( closes : #6918 )
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21293 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-02 04:20:03 +00:00
Nicolas Thill
60cd28872f
target/uml: rename patch 003 to match what we have in 2.6.30
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21292 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-02 04:14:57 +00:00
Nicolas Thill
3fcf91d372
target/uml: refresh 2.6.30 patches
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21291 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-02 02:40:21 +00:00
Nicolas Thill
e020dc9666
target/uml: add patches for 2.6.32
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21290 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-02 00:59:04 +00:00
Nicolas Thill
8aea0611d9
target/x86: add to changes missed from [21246] preventing .vdi & .vmdk image generation
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21277 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-04-30 18:43:39 +00:00
Felix Fietkau
a4314a8ccf
kernel: bring ssb in sync with upstream (as of current wireless-testing)
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21269 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-04-30 15:53:08 +00:00
Florian Fainelli
ce01b55b4f
[uml] add upstream patch to fix linking failures on '__rela_iplt_end'
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21267 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-04-30 12:20:24 +00:00
Alexandros C. Couloumbis
07215235b2
brcm47xx: update config-2.6.33 options
...
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21266 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-04-30 11:10:04 +00:00