Re: [linux-sunxi] linux backports

2014-11-24 Thread nilsnuls0
пятница, 21 ноября 2014 г., 22:37:53 UTC+3 пользователь Tim Tisdall написал:
 Thanks.  I think I was a little confused at how to use the tarballs.  I tried 
 using those but now when I boot up I get plastered with:
 
 compat: exports duplicate symbol clk_disable (owned by kernel)

Remove that code from the end of compat/compat-3.6.c :

/* whoopsie ! */
#ifndef CONFIG_COMMON_CLK
int clk_enable(struct clk *clk)
{
return 0;
}
EXPORT_SYMBOL_GPL(clk_enable);

void clk_disable(struct clk *clk)
{
}
EXPORT_SYMBOL_GPL(clk_disable);
#endif

-- 
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+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [linux-sunxi] linux backports

2014-11-21 Thread Tim Tisdall
Thanks.  I think I was a little confused at how to use the tarballs.  I
tried using those but now when I boot up I get plastered with:


compat: exports duplicate symbol clk_disable (owned by kernel)


The major driver I was looking at updating was the Atheros ath9k_htc
driver.  Maybe I'll just try to find that independently...

On Thu, Nov 20, 2014 at 5:18 PM, Julian Calaby julian.cal...@gmail.com
wrote:

 Hi Tim,

 On Fri, Nov 21, 2014 at 8:18 AM, Tim Tisdall tisd...@gmail.com wrote:
  Has anyone tried running linux backports on the sunxi-3.4 branch?  I'm
  trying to backport from linux-stable and here's the output:
 
  tim@ebtim:~/engage/txcz_a20/backports$ ../env/bin/python gentree.py
  --integrate --clean --gitdebug --git-revision master
  ~/engage/txcz_a20/linux-stable/ ~/engage/txcz_a20/linux-sunxi/

 [snip]

  I've never done this stuff before, so it's possible I'm also just doing
 it
  wrong.

 I'm not overly familiar with it either, however it looks like it's not
 compatible with your kernel tree.

 From what I read when the latest version was released a couple of days
 ago, --integrate only works with linux-next newer than 2014-11-14.

 Unless you _need_ the drivers built in, I strongly recommend you just
 use their pre-patched tarballs instead of gentree as it's much easier.

 Thanks,

 --
 Julian Calaby

 Email: julian.cal...@gmail.com
 Profile: http://www.google.com/profiles/julian.calaby/

 --
 You received this message because you are subscribed to a topic in the
 Google Groups linux-sunxi group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/linux-sunxi/mGRSdX5KKrc/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to
 linux-sunxi+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
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+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [linux-sunxi] linux backports

2014-11-21 Thread Julian Calaby
Hi Tim,

On Sat, Nov 22, 2014 at 6:37 AM, Tim Tisdall tisd...@gmail.com wrote:
 Thanks.  I think I was a little confused at how to use the tarballs.  I
 tried using those but now when I boot up I get plastered with:


 compat: exports duplicate symbol clk_disable (owned by kernel)

Ugh. It's possible that some stuff has been already backported for our
3.4 kernel.

 The major driver I was looking at updating was the Atheros ath9k_htc driver.
 Maybe I'll just try to find that independently...

I don't believe you will as everyone's supposed to get backported
versions through the backports project.

IIRC you can configure backports so it'll only produce a specific set
of drivers - that might mean that it doesn't try to duplicate symbols
already in our tree.

Thanks,

Julian Calaby


 On Thu, Nov 20, 2014 at 5:18 PM, Julian Calaby julian.cal...@gmail.com
 wrote:

 Hi Tim,

 On Fri, Nov 21, 2014 at 8:18 AM, Tim Tisdall tisd...@gmail.com wrote:
  Has anyone tried running linux backports on the sunxi-3.4 branch?  I'm
  trying to backport from linux-stable and here's the output:
 
  tim@ebtim:~/engage/txcz_a20/backports$ ../env/bin/python gentree.py
  --integrate --clean --gitdebug --git-revision master
  ~/engage/txcz_a20/linux-stable/ ~/engage/txcz_a20/linux-sunxi/

 [snip]

  I've never done this stuff before, so it's possible I'm also just doing
  it
  wrong.

 I'm not overly familiar with it either, however it looks like it's not
 compatible with your kernel tree.

 From what I read when the latest version was released a couple of days
 ago, --integrate only works with linux-next newer than 2014-11-14.

 Unless you _need_ the drivers built in, I strongly recommend you just
 use their pre-patched tarballs instead of gentree as it's much easier.

 Thanks,

 --
 Julian Calaby

 Email: julian.cal...@gmail.com
 Profile: http://www.google.com/profiles/julian.calaby/

 --
 You received this message because you are subscribed to a topic in the
 Google Groups linux-sunxi group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/linux-sunxi/mGRSdX5KKrc/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to
 linux-sunxi+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


 --
 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+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.



-- 
Julian Calaby

Email: julian.cal...@gmail.com
Profile: http://www.google.com/profiles/julian.calaby/

-- 
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+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [linux-sunxi] linux backports

2014-11-20 Thread Julian Calaby
Hi Tim,

On Fri, Nov 21, 2014 at 8:18 AM, Tim Tisdall tisd...@gmail.com wrote:
 Has anyone tried running linux backports on the sunxi-3.4 branch?  I'm
 trying to backport from linux-stable and here's the output:

 tim@ebtim:~/engage/txcz_a20/backports$ ../env/bin/python gentree.py
 --integrate --clean --gitdebug --git-revision master
 ~/engage/txcz_a20/linux-stable/ ~/engage/txcz_a20/linux-sunxi/

[snip]

 I've never done this stuff before, so it's possible I'm also just doing it
 wrong.

I'm not overly familiar with it either, however it looks like it's not
compatible with your kernel tree.

From what I read when the latest version was released a couple of days
ago, --integrate only works with linux-next newer than 2014-11-14.

Unless you _need_ the drivers built in, I strongly recommend you just
use their pre-patched tarballs instead of gentree as it's much easier.

Thanks,

-- 
Julian Calaby

Email: julian.cal...@gmail.com
Profile: http://www.google.com/profiles/julian.calaby/

-- 
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+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.