Re: [linux-sunxi] Re: Build sunxi-next for A20

2014-03-05 Thread hmandevteam
Hi Priit, > You need at least version 3.12 of Linus' tree because support for > A20-OLinuXino was only added then: > http://linux-sunxi.org/Mainlining_Effort > To test the latest goodness like SATA and USB follow this page: > http://linux-sunxi.org/Mainline_Kernel_Howto i follow howto and using $

Re: [linux-sunxi] Re: How to decide NAND boot address?

2014-03-05 Thread hunter hu
Thanks Pat, I have used the correct syntax, but still, stuck at the SUNXI logo; at this moment I have a few questions: 1> my cpu is A13, your u-boot is for A20, I would think that is not working for me? 2> I have been using lichee-dev, sun5i_a13 board, trying to modify the configurations as s

Re: [linux-sunxi] Possible G2D kernel bug

2014-03-05 Thread Siarhei Siamashka
On Wed, 05 Mar 2014 20:32:42 +0100 Andreas Baierl wrote: > Am 04.03.2014 11:56, schrieb Andreas Baierl: > > Hi all, > > it seems, that the G2D kernel driver has some issue: > > > > libvdpau-sunxi uses G2D_CMD_BITBLT for creating surfaces, so at the > > end of mixer_blt, there is g2d_wait_cmd_fin

Re: [linux-sunxi] [PATCH] arch/arm/mach-sun7i/pm/standby/mem_printk.c used non-const char arrays. However gcc 4.6.3 likes to replace these by calls to memcpy. memcpy doesn't exist in the kernel. Havin

2014-03-05 Thread Patrick Wood
On Wednesday, March 5, 2014 5:55:50 PM UTC-5, Alejandro Mery wrote: > > > On 05/03/14 16:14, Andreas Baierl wrote: > > Hi Alejandro, > > this patch breaks building because it's not applied as Danny sent it :) > > yes, I couldn't "apply" it because of ^Ms... but compiled fine for me > > I'

Re: [linux-sunxi] Re: How to decide NAND boot address?

2014-03-05 Thread Patrick Wood
fatload nand 0 kernel_address kernel_file Note that my u-boot is based on a heavily-modified version of the one used by android. On Wednesday, March 5, 2014 10:10:03 PM UTC-5, hunter hu wrote: > > Hi Pat, > > I was not be able to get serial port access yet, work in progress. > > Regarding the sy

Re: [linux-sunxi] Re: How to decide NAND boot address?

2014-03-05 Thread hunter hu
Hi Pat, I was not be able to get serial port access yet, work in progress. Regarding the syntax, what are the correct ones? thanks, -Hunter On Wednesday, March 5, 2014 8:51:22 PM UTC-6, Patrick Wood wrote: > > That's not the right syntax for file access. Don't you have a serial port > you can

Re: [linux-sunxi] Re: How to decide NAND boot address?

2014-03-05 Thread Patrick Wood
That's not the right syntax for file access. Don't you have a serial port you can get boot logs from? -- You received this message because you are subscribed to the Google Groups "linux-sunxi" group. To unsubscribe from this group and stop receiving emails from it, send an email to linux-sunxi

Re: [linux-sunxi] [PATCH] arch/arm/mach-sun7i/pm/standby/mem_printk.c used non-const char arrays. However gcc 4.6.3 likes to replace these by calls to memcpy. memcpy doesn't exist in the kernel. Havin

2014-03-05 Thread Alejandro Mery
On 05/03/14 16:14, Andreas Baierl wrote: Hi Alejandro, this patch breaks building because it's not applied as Danny sent it :) yes, I couldn't "apply" it because of ^Ms... but compiled fine for me I'm kind of lost on why is `const char foo* =` instead of `const char foo[] =`. can you s

Re: [linux-sunxi] Re: How to decide NAND boot address?

2014-03-05 Thread hunter hu
Hi Henrik, I tried to use fatload in the configurations like these: 182 #define CONFIG_EXTRA_ENV_SETTINGS \ 183 "bootdelay=3\0" \ 184 "bootcmd=run setargs load_uimage boot_uimage\0" \ 185 "console=ttyS0,115200\0" \ 186 "nand_root=/dev/nandb\0" \ 187 "init=/init\0" \ 188 "lo

[linux-sunxi] [PATCH] regulator: helpers: Modify helpers enabling multi-bit control

2014-03-05 Thread Carlo Caione
This patch extends the regulator helpers to account for device that use multiple bits for control when using regmap enable/disable/bypass ops. The actual regulator helpers wrongly assume that the regulator control is always performed using single bits, using in the regulator_desc struct only two p

Re: [linux-sunxi] Re: [PATCH 0/7] mfd: AXP20x: Add support for AXP202 and AXP209

2014-03-05 Thread Carlo Caione
On Wed, Mar 5, 2014 at 9:02 PM, Hans de Goede wrote: > > So I've added your patches to my sunxi-devel tree and they work as advertised > :) Thank you for keeping the tree updated :) > I've also added dt support for the axp209 to the cubietruck dts file, to avoid > things becoming a copy and pas

[linux-sunxi] sunxi-devel branch updated to 3.14-rc5

2014-03-05 Thread Hans de Goede
Hi All, I've just updated: https://github.com/linux-sunxi/linux-sunxi/commits/sunxi-devel to 3.14-rc5. Besides rebasing to 3.14-rc5, this contains the following over the previous sunxi-devel branch update: -sun7i nmi irq controller support (by Carlo Caione) -axp209 support (by Carlo Caione) -sun

Re: [linux-sunxi] Re: [PATCH 0/7] mfd: AXP20x: Add support for AXP202 and AXP209

2014-03-05 Thread Hans de Goede
Hi, On 03/01/2014 08:29 PM, Hans de Goede wrote: > Hi, > > On 03/01/2014 06:17 PM, Carlo Caione wrote: >> On Sat, Mar 1, 2014 at 5:56 PM, Hans de Goede wrote: >>> Hi Carlo, >>> >>> Great work, thanks for all the time you're putting into this! >> >> Hi Hans :) >> >>> I've 2 questions: >>> >>> 1)

[linux-sunxi] [PATCH v5 2/3] ARM: sun7i/sun6i: dts: Add NMI irqchip support

2014-03-05 Thread Carlo Caione
This patch adds DTS entries for NMI controller as child of GIC. Signed-off-by: Carlo Caione --- arch/arm/boot/dts/sun6i-a31.dtsi | 9 + arch/arm/boot/dts/sun7i-a20.dtsi | 9 + 2 files changed, 18 insertions(+) diff --git a/arch/arm/boot/dts/sun6i-a31.dtsi b/arch/arm/boot/dts/sun

[linux-sunxi] [PATCH v5 0/3] ARM: sun7i/sun6i: irqchip: Irqchip driver for NMI

2014-03-05 Thread Carlo Caione
Allwinner A20/A31 SoCs have a special interrupt controller for managing NMI. Three register are present to (un)mask, control and acknowledge NMI. These two patches add a new irqchip driver in cascade with GIC. Changes since v1: - added binding document Changes since v2: - fixed tr

[linux-sunxi] [PATCH v5 3/3] ARM: sun7i/sun6i: irqchip: Update the documentation

2014-03-05 Thread Carlo Caione
Added documentation for NMI irqchip. Signed-off-by: Carlo Caione --- .../allwinner,sun67i-sc-nmi.txt| 27 ++ 1 file changed, 27 insertions(+) create mode 100644 Documentation/devicetree/bindings/interrupt-controller/allwinner,sun67i-sc-nmi.txt diff --gi

[linux-sunxi] [PATCH v5 1/3] ARM: sun7i/sun6i: irqchip: Add irqchip driver for NMI controller

2014-03-05 Thread Carlo Caione
Allwinner A20/A31 SoCs have special registers to control / (un)mask / acknowledge NMI. This NMI controller is separated and independent from GIC. This patch adds a new irqchip to manage NMI. Signed-off-by: Carlo Caione Acked-by: Maxime Ripard --- drivers/irqchip/Makefile| 1 + drivers

[linux-sunxi] Re: [PATCH] ahci_imx: Put #ifdef CONFIG_PM_SLEEP around suspend / resume functions

2014-03-05 Thread Alexander Shiyan
Среда, 5 марта 2014, 20:23 +01:00 от Marek Vasut : > On Wednesday, March 05, 2014 at 08:17:49 PM, Hans de Goede wrote: > > This fixes the following warnings when CONFIG_PM_SLEEP is not set: > > > > drivers/ata/ahci_imx.c:284:12: warning: ‘imx_ahci_suspend’ defined but not > > used [-Wunused-funct

Re: [linux-sunxi] Possible G2D kernel bug

2014-03-05 Thread Andreas Baierl
Am 04.03.2014 11:56, schrieb Andreas Baierl: Hi all, it seems, that the G2D kernel driver has some issue: libvdpau-sunxi uses G2D_CMD_BITBLT for creating surfaces, so at the end of mixer_blt, there is g2d_wait_cmd_finish() called. As soon as (timeout==0) gets TRUE in https://github.com/linux-s

[linux-sunxi] Re: [PATCH] ahci_imx: Put #ifdef CONFIG_PM_SLEEP around suspend / resume functions

2014-03-05 Thread Marek Vasut
On Wednesday, March 05, 2014 at 08:17:49 PM, Hans de Goede wrote: > This fixes the following warnings when CONFIG_PM_SLEEP is not set: > > drivers/ata/ahci_imx.c:284:12: warning: ‘imx_ahci_suspend’ defined but not > used [-Wunused-function] drivers/ata/ahci_imx.c:299:12: warning: > ‘imx_ahci_resum

[linux-sunxi] [PATCH] ahci_imx: Put #ifdef CONFIG_PM_SLEEP around suspend / resume functions

2014-03-05 Thread Hans de Goede
This fixes the following warnings when CONFIG_PM_SLEEP is not set: drivers/ata/ahci_imx.c:284:12: warning: ‘imx_ahci_suspend’ defined but not used [-Wunused-function] drivers/ata/ahci_imx.c:299:12: warning: ‘imx_ahci_resume’ defined but not used [-Wunused-function] Reported-by: Bartlomiej Zolni

Re: [linux-sunxi] Re: Allwinner joins Linaro Digital Home Group, commits to open source chip support

2014-03-05 Thread jonsm...@gmail.com
On Wed, Mar 5, 2014 at 12:19 PM, Dmitriy B. wrote: >> That is not in the category of "what Linaro does". The code written at >> Linaro is open and open lists discuss it. > > > How do I discuss it when I cant even run it? > >> >> It is the vendor pushing >> those NDAs, not Linaro. Joining Linaro is

Re: [linux-sunxi] [PATCH] sun4i_csi: fixed null value in camera init, same fix as for csi0

2014-03-05 Thread rdv0011
пятница, 31 мая 2013 г., 17:21:17 UTC+3 пользователь behrou...@gmail.com написал: > On Thursday, May 30, 2013 11:44:39 PM UTC+4:30, npeacock wrote: > > > On 05/30/2013 11:48 AM, mahdi Chi > > > wrote: > > > > > > > > > > > > > > > > > > > > > i have same

Re: [linux-sunxi] Re: Build sunxi-next for A20

2014-03-05 Thread Priit Laes
Ühel kenal päeval, K, 05.03.2014 kell 02:48, kirjutas hmandevt...@gmail.com: > Many thanks, i trying to rebuild it. > I need to use USBTV007 drivers that need at least 3.10 kernel. I saw that > exists also some xxx-3.10 branches. > > which branch of 3.10 could be ok to use on olinuxino A20 ? > i

Re: [linux-sunxi] Re: Allwinner joins Linaro Digital Home Group, commits to open source chip support

2014-03-05 Thread Dmitriy B.
> > That is not in the category of "what Linaro does". The code written at > Linaro is open and open lists discuss it. How do I discuss it when I cant even run it? > It is the vendor pushing > those NDAs, not Linaro. Joining Linaro is not going to automatically > change Allwinner's position on

[linux-sunxi] Re: [PATCH v3 2/5] i2c: mv64xxx: Add support for the Allwinner A31 I2C driver

2014-03-05 Thread Wolfram Sang
On Tue, Mar 04, 2014 at 05:28:38PM +0100, Maxime Ripard wrote: > The Allwinner A31 I2C controller is almost identical to the one used in the > other Allwinner SoCs, except for the fact that it needs to clear the interrupt > by setting the INT_FLAGS bit in the control register, instead of clearing i

Re: [linux-sunxi] New u-boot from Hans de Geode's Git Repo won't boot any kernel (Cubieboard2)

2014-03-05 Thread Carlo Caione
On Wed, Mar 5, 2014 at 5:28 PM, Manfred Kreisl wrote: > > > Am Mittwoch, 5. März 2014 16:59:21 UTC+1 schrieb Hans de Goede: >> >> >> My sunxi-next u-boot branch is only intended for use with upstream >> kernels, >> not with the sunxi 3.4.x kernels. That it fails to boot the 3.4.x kernels >> is a k

[linux-sunxi] Re: [PATCH v3 1/5] i2c: mv64xxx: Add reset deassert call

2014-03-05 Thread Wolfram Sang
On Tue, Mar 04, 2014 at 05:28:37PM +0100, Maxime Ripard wrote: > The Allwinner A31 SoC using that IP has a reset controller maintaining > it reset unless told otherwise. > > Add some optional reset support to the driver. > > Signed-off-by: Maxime Ripard > Reviewed-by: Gregory CLEMENT > Tested-b

Re: [linux-sunxi] Re: Allwinner joins Linaro Digital Home Group, commits to open source chip support

2014-03-05 Thread jonsm...@gmail.com
On Wed, Mar 5, 2014 at 11:16 AM, Dmitriy B. wrote: >> Besides, why can't linux-sunxi cooperate with the Linaro people? >> Everything Linaro does is on open mailing lists and servers > > > Because its not. Try to find reference manuals for latest Exynos, HiSilicon > K3V2 and other Linaro members So

Re: [linux-sunxi] New u-boot from Hans de Geode's Git Repo won't boot any kernel (Cubieboard2)

2014-03-05 Thread Manfred Kreisl
Am Mittwoch, 5. März 2014 16:59:21 UTC+1 schrieb Hans de Goede: > > > My sunxi-next u-boot branch is only intended for use with upstream > kernels, > not with the sunxi 3.4.x kernels. That it fails to boot the 3.4.x kernels > is a known issue. > > Ah, I understand. So, I also tried to boot

[linux-sunxi] [PATCH 0/5] ARM: sun6i: dt: Add support for GMAC

2014-03-05 Thread Chen-Yu Tsai
Hi Maxime, This series add support for the GMAC in A31. The GMAC is the same as in the A20, except it has an extra reset control. The GMAC clock module is mostly the same as in the A20, without the extra dividers, which I left out intentionally from the clock driver. The register offsets and inte

[linux-sunxi] [PATCH 1/5] ARM: sun6i: dt: Add pin muxing options for GMAC

2014-03-05 Thread Chen-Yu Tsai
The A31 SoC has a GMAC gigabit ethernet controller supporting MII, GMII, RGMII modes. Add pin muxing options for these modes. Signed-off-by: Chen-Yu Tsai --- arch/arm/boot/dts/sun6i-a31.dtsi | 42 1 file changed, 42 insertions(+) diff --git a/arch/arm/bo

[linux-sunxi] [PATCH 5/5] ARM: sun6i: columbus: Enable the GMAC

2014-03-05 Thread Chen-Yu Tsai
The A31 Colombus board uses the GMAC with a Realtek RTL8211E-VB RGMII phy. Signed-off-by: Chen-Yu Tsai --- arch/arm/boot/dts/sun6i-a31-colombus.dts | 12 1 file changed, 12 insertions(+) diff --git a/arch/arm/boot/dts/sun6i-a31-colombus.dts b/arch/arm/boot/dts/sun6i-a31-colombus.d

[linux-sunxi] [PATCH 2/5] ARM: sun6i: dt: Add GMAC clock node to the A31 DTSI

2014-03-05 Thread Chen-Yu Tsai
The GMAC uses 1 of 2 sources for its transmit clock, depending on the PHY interface mode. Add both sources as dummy clocks, and as parents to the GMAC clock node. Signed-off-by: Chen-Yu Tsai --- arch/arm/boot/dts/sun6i-a31.dtsi | 28 1 file changed, 28 insertions(+)

[linux-sunxi] [PATCH 3/5] ARM: sun6i: dt: Add A31 GMAC gigabit ethernet controller node

2014-03-05 Thread Chen-Yu Tsai
The A31 has the same GMAC found on the A20 SoC, except it has an extra reset control. Signed-off-by: Chen-Yu Tsai --- arch/arm/boot/dts/sun6i-a31.dtsi | 16 1 file changed, 16 insertions(+) diff --git a/arch/arm/boot/dts/sun6i-a31.dtsi b/arch/arm/boot/dts/sun6i-a31.dtsi index e

[linux-sunxi] [PATCH 4/5] ARM: sun6i: dt: Add ethernet alias for GMAC

2014-03-05 Thread Chen-Yu Tsai
Alias GMAC as ethernet0 so U-boot can fill in the MAC address. Signed-off-by: Chen-Yu Tsai --- arch/arm/boot/dts/sun6i-a31.dtsi | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/boot/dts/sun6i-a31.dtsi b/arch/arm/boot/dts/sun6i-a31.dtsi index e958d5f..02d2270 100644 --- a/arch/arm/boo

Re: [linux-sunxi] Re: Allwinner joins Linaro Digital Home Group, commits to open source chip support

2014-03-05 Thread Dmitriy B.
> > Besides, why can't linux-sunxi cooperate with the Linaro people? > Everything Linaro does is on open mailing lists and servers Because its not. Try to find reference manuals for latest Exynos, HiSilicon K3V2 and other Linaro members SoCs and try to join the development, send a patch there (hi

Re: [linux-sunxi] Re: Allwinner joins Linaro Digital Home Group, commits to open source chip support

2014-03-05 Thread Dmitriy B.
> > For quite a few of the linaro member companies, this is really just > another consortium. They dispatch some fluff "engineers" that are > usually not too useful anywhere else, and then pat themselves on the > back that they are now actively doing the "open source" thing as well. Linaro is com

Re: [linux-sunxi] New u-boot from Hans de Geode's Git Repo won't boot any kernel (Cubieboard2)

2014-03-05 Thread Hans de Goede
Hi, On 03/05/2014 04:34 PM, Manfred Kreisl wrote: > Hi, > > I want to test the new 3.14-rc3 kernel and the first thing i did is to get > and install the new u-boot from here: > > https://github.com/jwrdegoede/u-boot-sunxi/commits/sunxi-next

[linux-sunxi] New u-boot from Hans de Geode's Git Repo won't boot any kernel (Cubieboard2)

2014-03-05 Thread Manfred Kreisl
Hi, I want to test the new 3.14-rc3 kernel and the first thing i did is to get and install the new u-boot from here: https://github.com/jwrdegoede/u-boot-sunxi/commits/sunxi-next

Re: [linux-sunxi] Re: Allwinner joins Linaro Digital Home Group, commits to open source chip support

2014-03-05 Thread Craig Whitcombe
What does this mean for the laymen? Will allwinner provide cedarx source code? Will allwinner release enough information that essentially linux distros (xbmclinux) can easiliy be created for allwinner based STBs and android sticks? (im thinking Mele M9 here!) Thanks, Craig On Wednesday, 5 Marc

Re: [linux-sunxi] Is it possible encode mpeg2 with CedarX?

2014-03-05 Thread Manuel Braga
On Wed, 5 Mar 2014 00:39:40 -0800 (PST) xavier.rovira.lanacc...@gmail.com wrote: > Hi: > > I would like to test if it is possible to encode mpeg2 at 4mbits/s > 25fps D1 with the A20. > > For no realtime I suppose FFMEPG is enough. > > Is it possible with the MALI? I can't answer for software e

Re: [linux-sunxi] [PATCH] arch/arm/mach-sun7i/pm/standby/mem_printk.c used non-const char arrays. However gcc 4.6.3 likes to replace these by calls to memcpy. memcpy doesn't exist in the kernel. Havin

2014-03-05 Thread Andreas Baierl
Hi Alejandro, this patch breaks building because it's not applied as Danny sent it :) Regards rellla Am 02.03.2014 19:54, schrieb Alejandro Mery: On 01/03/14 20:56, Danny Milosavljevic wrote: --- arch/arm/mach-sun7i/pm/standby/mem_printk.c |6 +++--- 1 file changed, 3 insertions(+), 3 d

Re: [linux-sunxi] Re: Allwinner joins Linaro Digital Home Group, commits to open source chip support

2014-03-05 Thread Luc Verhaegen
On Wed, Mar 05, 2014 at 09:22:45AM -0500, jonsm...@gmail.com wrote: > > I think you are misreading this. Allwinnner is trying to increase > their appeal in Western markets. Joining Linaro will increase these > Western ties. Big companies that have already made it send fluff > engineers, not small

Re: [linux-sunxi] Re: Allwinner joins Linaro Digital Home Group, commits to open source chip support

2014-03-05 Thread jonsm...@gmail.com
On Wed, Mar 5, 2014 at 6:45 AM, Luc Verhaegen wrote: > On Mon, Mar 03, 2014 at 07:46:21PM -0500, jonsm...@gmail.com wrote: >> Videos of the announcement here... >> http://www.linaro.org/linaro-blog/2014/03/03/linaro-connect-asia-2014-kicks-off-in-macau/ >> >> http://www.prnewswire.com/news-release

Re: [linux-sunxi] Re: Build sunxi-next for A20

2014-03-05 Thread Maxime Ripard
Hi, On Wed, Mar 05, 2014 at 02:48:20AM -0800, hmandevt...@gmail.com wrote: > Many thanks, i trying to rebuild it. I need to use USBTV007 drivers > that need at least 3.10 kernel. I saw that exists also some xxx-3.10 > branches. The USB support isn't in sunxi-next yet, but should arrive in the few

Re: [linux-sunxi] A10/A13/A20 interface asyncroneous memory

2014-03-05 Thread Dimitar Penev
Thanks Runzhong, It is as a big limitation of the AW SoC, isn't it? Dimitar 04 март 2014, вторник, 12:00:58 UTC+2, Runzhong Yi написа: > > For A10 or A13, the answer is absolutely NO! I didn't checked the > datasheet for A20, but I think it's the same. > > 2014-03-03 21:24 GMT+08:00 >: > >

[linux-sunxi] Is it possible encode mpeg2 with CedarX?

2014-03-05 Thread xavier . rovira . lanaccess
Hi: I would like to test if it is possible to encode mpeg2 at 4mbits/s 25fps D1 with the A20. For no realtime I suppose FFMEPG is enough. Is it possible to encode mpeg2 with CedarX? Is it possible with the MALI? In your page you say encode MPEG must be checked. So is it possible but it is not

[linux-sunxi] mpeg2 CedarX

2014-03-05 Thread xavier . rovira . lanaccess
Is it possible to encode mpeg2 with CedarX? in homepate it is said encode mpeg must be checked. -- You received this message because you are subscribed to the Google Groups "linux-sunxi" group. To unsubscribe from this group and stop receiving emails from it, send an email to linux-sunxi+unsubs

[linux-sunxi] Re: [PATCH] Revert "irqchip: irq-dove: Add PMU interrupt controller."

2014-03-05 Thread Carlo Caione
On Wed, Mar 5, 2014 at 1:41 AM, Russell King - ARM Linux wrote: > On Tue, Mar 04, 2014 at 05:32:40AM +, Jason Cooper wrote: > > Jason, Thomas, > > I've just been giving the above a whirl here with the RTC, and it > doesn't seem to quite work as it should. Not your problem, because it's > as t

Re: [linux-sunxi] Re: Allwinner joins Linaro Digital Home Group, commits to open source chip support

2014-03-05 Thread Luc Verhaegen
On Mon, Mar 03, 2014 at 07:46:21PM -0500, jonsm...@gmail.com wrote: > Videos of the announcement here... > http://www.linaro.org/linaro-blog/2014/03/03/linaro-connect-asia-2014-kicks-off-in-macau/ > > http://www.prnewswire.com/news-releases/allwinner-joins-linaro-as-a-founding-member-of-the-linaro

[linux-sunxi] Re: Build sunxi-next for A20

2014-03-05 Thread hmandevteam
Many thanks, i trying to rebuild it. I need to use USBTV007 drivers that need at least 3.10 kernel. I saw that exists also some xxx-3.10 branches. which branch of 3.10 could be ok to use on olinuxino A20 ? i could try to build usbtv module on it regards Armando -- You received this message bec

Re: [linux-sunxi] Build sunxi-next for A20

2014-03-05 Thread Maxime Ripard
Hi, On Wed, Mar 05, 2014 at 01:37:10AM -0800, hmandevt...@gmail.com wrote: > Hi all, > i trying to build kernel sunxi-next for my A20 Olinuxino. I using > prev work sd with 3.4 (Debian Wheezy) and update uImage, modules and > firmware. > > i follow standard steps: > > get linux-sunxi sunxi-next

[linux-sunxi] Build sunxi-next for A20

2014-03-05 Thread hmandevteam
Hi all, i trying to build kernel sunxi-next for my A20 Olinuxino. I using prev work sd with 3.4 (Debian Wheezy) and update uImage, modules and firmware. i follow standard steps: get linux-sunxi sunxi-next branch: $ git clone https://github.com/linux-sunxi/linux-sunxi -b sunxi-next get Olinuxin