All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: How to integrate the latest ath10k driver into an older kernel release ?
@ 2017-03-24 11:25 Wu Chung-I
  2017-03-25 11:14 ` K.Mani
  2017-03-28 10:20 ` Janusz Dziedzic
  0 siblings, 2 replies; 7+ messages in thread
From: Wu Chung-I @ 2017-03-24 11:25 UTC (permalink / raw)
  To: ath10k

Hi Janusz:
I follow your procedure (include patched your attachment).
I can generate but failing compile.
Any advise?
My environment is Ubuntu 16.04 (same with you), git the backports and 
checkout to master.

Log of make:
make[5]: 'conf' is up to date.
#
# configuration written to .config
#
Building backport-include/backport/autoconf.h ... done.
   CC [M]  /home/chungyi/backports-output/compat/main.o
   CC [M]  /home/chungyi/backports-output/compat/backport-4.5.o
   CC [M]  /home/chungyi/backports-output/compat/backport-4.6.o
   CC [M]  /home/chungyi/backports-output/compat/backport-4.7.o
   CC [M]  /home/chungyi/backports-output/compat/backport-4.8.o
   CC [M]  /home/chungyi/backports-output/compat/lib-rhashtable.o
scripts/Makefile.build:258: recipe for target 
'/home/chungyi/backports-output/compat/lib-rhashtable.o' failed
scripts/Makefile.build:403: recipe for target 
'/home/chungyi/backports-output/compat' failed
Makefile:1418: recipe for target 
'_module_/home/chungyi/backports-output' failed
Makefile.build:6: recipe for target 'modules' failed
Makefile.real:88: recipe for target 'modules' failed
Makefile:40: recipe for target 'modules' failed
Makefile:30: recipe for target 'default' failed
   CC [M]  /home/chungyi/backports-output/compat/lib-rhashtable.o
scripts/Makefile.build:258: recipe for target 
'/home/chungyi/backports-output/compat/lib-rhashtable.o' failed
scripts/Makefile.build:403: recipe for target 
'/home/chungyi/backports-output/compat' failed
Makefile:1418: recipe for target 
'_module_/home/chungyi/backports-output' failed
Makefile.build:6: recipe for target 'modules' failed
Makefile.real:88: recipe for target 'modules' failed
Makefile:40: recipe for target 'modules' failed
Makefile:30: recipe for target 'default' failed


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: How to integrate the latest ath10k driver into an older kernel release ?
  2017-03-24 11:25 How to integrate the latest ath10k driver into an older kernel release ? Wu Chung-I
@ 2017-03-25 11:14 ` K.Mani
  2017-03-28 10:20 ` Janusz Dziedzic
  1 sibling, 0 replies; 7+ messages in thread
From: K.Mani @ 2017-03-25 11:14 UTC (permalink / raw)
  To: Wu Chung-I; +Cc: ath10k

i'd used 'compat-wireless-2016-10-08' from lede-dev, to run
qca9984(PCIe) on linux-3.10.20
https://sources.lede-project.org/

i remember facing issue in 'skb_get_hash_perturb' as the symbol is not
defined & build was failing, but mac80211 in lede-dev patches the
symbol definition.
You can make verbose build to find the exact cause of build fail.

I'd also applied few minor patch on my own to support my board.

Thanks
Mani

On Fri, Mar 24, 2017 at 4:55 PM, Wu Chung-I <uranus0206@gmail.com> wrote:
> Hi Janusz:
> I follow your procedure (include patched your attachment).
> I can generate but failing compile.
> Any advise?
> My environment is Ubuntu 16.04 (same with you), git the backports and
> checkout to master.
>
> Log of make:
> make[5]: 'conf' is up to date.
> #
> # configuration written to .config
> #
> Building backport-include/backport/autoconf.h ... done.
>   CC [M]  /home/chungyi/backports-output/compat/main.o
>   CC [M]  /home/chungyi/backports-output/compat/backport-4.5.o
>   CC [M]  /home/chungyi/backports-output/compat/backport-4.6.o
>   CC [M]  /home/chungyi/backports-output/compat/backport-4.7.o
>   CC [M]  /home/chungyi/backports-output/compat/backport-4.8.o
>   CC [M]  /home/chungyi/backports-output/compat/lib-rhashtable.o
> scripts/Makefile.build:258: recipe for target
> '/home/chungyi/backports-output/compat/lib-rhashtable.o' failed
> scripts/Makefile.build:403: recipe for target
> '/home/chungyi/backports-output/compat' failed
> Makefile:1418: recipe for target '_module_/home/chungyi/backports-output'
> failed
> Makefile.build:6: recipe for target 'modules' failed
> Makefile.real:88: recipe for target 'modules' failed
> Makefile:40: recipe for target 'modules' failed
> Makefile:30: recipe for target 'default' failed
>   CC [M]  /home/chungyi/backports-output/compat/lib-rhashtable.o
> scripts/Makefile.build:258: recipe for target
> '/home/chungyi/backports-output/compat/lib-rhashtable.o' failed
> scripts/Makefile.build:403: recipe for target
> '/home/chungyi/backports-output/compat' failed
> Makefile:1418: recipe for target '_module_/home/chungyi/backports-output'
> failed
> Makefile.build:6: recipe for target 'modules' failed
> Makefile.real:88: recipe for target 'modules' failed
> Makefile:40: recipe for target 'modules' failed
> Makefile:30: recipe for target 'default' failed
>
>
> _______________________________________________
> ath10k mailing list
> ath10k@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/ath10k

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: How to integrate the latest ath10k driver into an older kernel release ?
  2017-03-24 11:25 How to integrate the latest ath10k driver into an older kernel release ? Wu Chung-I
  2017-03-25 11:14 ` K.Mani
@ 2017-03-28 10:20 ` Janusz Dziedzic
  2017-03-29  8:53   ` 吳重毅
  1 sibling, 1 reply; 7+ messages in thread
From: Janusz Dziedzic @ 2017-03-28 10:20 UTC (permalink / raw)
  To: Wu Chung-I; +Cc: ath10k

On 24 March 2017 at 12:25, Wu Chung-I <uranus0206@gmail.com> wrote:
> Hi Janusz:
> I follow your procedure (include patched your attachment).
> I can generate but failing compile.
> Any advise?
> My environment is Ubuntu 16.04 (same with you), git the backports and
> checkout to master.
>
I have ubuntu with 4.9-rc6 kernel - probably because of that works for me.
With 4.4 (ubuntu orginal kernel) also fail - don't know kvmalloc() -
seems like bug in backports ...
Best, report this to backports group :)


> Log of make:
> make[5]: 'conf' is up to date.
> #
> # configuration written to .config
> #
> Building backport-include/backport/autoconf.h ... done.
>   CC [M]  /home/chungyi/backports-output/compat/main.o
>   CC [M]  /home/chungyi/backports-output/compat/backport-4.5.o
>   CC [M]  /home/chungyi/backports-output/compat/backport-4.6.o
>   CC [M]  /home/chungyi/backports-output/compat/backport-4.7.o
>   CC [M]  /home/chungyi/backports-output/compat/backport-4.8.o
>   CC [M]  /home/chungyi/backports-output/compat/lib-rhashtable.o
> scripts/Makefile.build:258: recipe for target
> '/home/chungyi/backports-output/compat/lib-rhashtable.o' failed
> scripts/Makefile.build:403: recipe for target
> '/home/chungyi/backports-output/compat' failed
> Makefile:1418: recipe for target '_module_/home/chungyi/backports-output'
> failed
> Makefile.build:6: recipe for target 'modules' failed
> Makefile.real:88: recipe for target 'modules' failed
> Makefile:40: recipe for target 'modules' failed
> Makefile:30: recipe for target 'default' failed
>   CC [M]  /home/chungyi/backports-output/compat/lib-rhashtable.o
> scripts/Makefile.build:258: recipe for target
> '/home/chungyi/backports-output/compat/lib-rhashtable.o' failed
> scripts/Makefile.build:403: recipe for target
> '/home/chungyi/backports-output/compat' failed
> Makefile:1418: recipe for target '_module_/home/chungyi/backports-output'
> failed
> Makefile.build:6: recipe for target 'modules' failed
> Makefile.real:88: recipe for target 'modules' failed
> Makefile:40: recipe for target 'modules' failed
> Makefile:30: recipe for target 'default' failed
>
>
> _______________________________________________
> ath10k mailing list
> ath10k@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/ath10k

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: How to integrate the latest ath10k driver into an older kernel release ?
  2017-03-28 10:20 ` Janusz Dziedzic
@ 2017-03-29  8:53   ` 吳重毅
  0 siblings, 0 replies; 7+ messages in thread
From: 吳重毅 @ 2017-03-29  8:53 UTC (permalink / raw)
  To: Janusz Dziedzic; +Cc: ath10k

Hi all:
I solved the problem from Steve deRosier's help. And my method as below:
Step 1: linux-next check out to latest version, backports also
checkout to master and apply ccm patch.

Step 2: generate tree by ./gentree.py --verbose --clean ~/linux-next/
~/backports-output

Step 3: modify DECLARE_EWMA(signal, 10, 8) to DECLARE_EWMA(signal,
1024, 8) in ../mac80211/sta_info.h of backports-output

Step 4: modify "skb=idr_remove(...);" to "skb=idr_find(...); if (skb)
idr_remove(...);"  in ../mac80211/status.h of backports-output

Step 5: Target linux kernel (the lower version or your specific
version ) need to be compiled first.

Step 6: export KLIB_BUILD="path/to/your_lower_linux_kernel"

Step 7: export KLIB="path/to/your/build/object" (I am about to get
*.ko, thus i point the directory to backports-output)

Step 8: make defconfig-your_choice (I am using defconfig-ath10k)

Step 9: make the backports-output and wait to compile.

My compile environment is Ubuntu16.04 with kernel 4.4 and I am porting
ath10k in linux kernel 4.11 back to linux 4.2.

On Tue, Mar 28, 2017 at 6:20 PM, Janusz Dziedzic
<janusz.dziedzic@tieto.com> wrote:
> On 24 March 2017 at 12:25, Wu Chung-I <uranus0206@gmail.com> wrote:
>> Hi Janusz:
>> I follow your procedure (include patched your attachment).
>> I can generate but failing compile.
>> Any advise?
>> My environment is Ubuntu 16.04 (same with you), git the backports and
>> checkout to master.
>>
> I have ubuntu with 4.9-rc6 kernel - probably because of that works for me.
> With 4.4 (ubuntu orginal kernel) also fail - don't know kvmalloc() -
> seems like bug in backports ...
> Best, report this to backports group :)
>
>
>> Log of make:
>> make[5]: 'conf' is up to date.
>> #
>> # configuration written to .config
>> #
>> Building backport-include/backport/autoconf.h ... done.
>>   CC [M]  /home/chungyi/backports-output/compat/main.o
>>   CC [M]  /home/chungyi/backports-output/compat/backport-4.5.o
>>   CC [M]  /home/chungyi/backports-output/compat/backport-4.6.o
>>   CC [M]  /home/chungyi/backports-output/compat/backport-4.7.o
>>   CC [M]  /home/chungyi/backports-output/compat/backport-4.8.o
>>   CC [M]  /home/chungyi/backports-output/compat/lib-rhashtable.o
>> scripts/Makefile.build:258: recipe for target
>> '/home/chungyi/backports-output/compat/lib-rhashtable.o' failed
>> scripts/Makefile.build:403: recipe for target
>> '/home/chungyi/backports-output/compat' failed
>> Makefile:1418: recipe for target '_module_/home/chungyi/backports-output'
>> failed
>> Makefile.build:6: recipe for target 'modules' failed
>> Makefile.real:88: recipe for target 'modules' failed
>> Makefile:40: recipe for target 'modules' failed
>> Makefile:30: recipe for target 'default' failed
>>   CC [M]  /home/chungyi/backports-output/compat/lib-rhashtable.o
>> scripts/Makefile.build:258: recipe for target
>> '/home/chungyi/backports-output/compat/lib-rhashtable.o' failed
>> scripts/Makefile.build:403: recipe for target
>> '/home/chungyi/backports-output/compat' failed
>> Makefile:1418: recipe for target '_module_/home/chungyi/backports-output'
>> failed
>> Makefile.build:6: recipe for target 'modules' failed
>> Makefile.real:88: recipe for target 'modules' failed
>> Makefile:40: recipe for target 'modules' failed
>> Makefile:30: recipe for target 'default' failed
>>
>>
>> _______________________________________________
>> ath10k mailing list
>> ath10k@lists.infradead.org
>> http://lists.infradead.org/mailman/listinfo/ath10k



-- 
吳重毅 Wu Chung-yi

On Tue, Mar 28, 2017 at 6:20 PM, Janusz Dziedzic
<janusz.dziedzic@tieto.com> wrote:
> On 24 March 2017 at 12:25, Wu Chung-I <uranus0206@gmail.com> wrote:
>> Hi Janusz:
>> I follow your procedure (include patched your attachment).
>> I can generate but failing compile.
>> Any advise?
>> My environment is Ubuntu 16.04 (same with you), git the backports and
>> checkout to master.
>>
> I have ubuntu with 4.9-rc6 kernel - probably because of that works for me.
> With 4.4 (ubuntu orginal kernel) also fail - don't know kvmalloc() -
> seems like bug in backports ...
> Best, report this to backports group :)
>
>
>> Log of make:
>> make[5]: 'conf' is up to date.
>> #
>> # configuration written to .config
>> #
>> Building backport-include/backport/autoconf.h ... done.
>>   CC [M]  /home/chungyi/backports-output/compat/main.o
>>   CC [M]  /home/chungyi/backports-output/compat/backport-4.5.o
>>   CC [M]  /home/chungyi/backports-output/compat/backport-4.6.o
>>   CC [M]  /home/chungyi/backports-output/compat/backport-4.7.o
>>   CC [M]  /home/chungyi/backports-output/compat/backport-4.8.o
>>   CC [M]  /home/chungyi/backports-output/compat/lib-rhashtable.o
>> scripts/Makefile.build:258: recipe for target
>> '/home/chungyi/backports-output/compat/lib-rhashtable.o' failed
>> scripts/Makefile.build:403: recipe for target
>> '/home/chungyi/backports-output/compat' failed
>> Makefile:1418: recipe for target '_module_/home/chungyi/backports-output'
>> failed
>> Makefile.build:6: recipe for target 'modules' failed
>> Makefile.real:88: recipe for target 'modules' failed
>> Makefile:40: recipe for target 'modules' failed
>> Makefile:30: recipe for target 'default' failed
>>   CC [M]  /home/chungyi/backports-output/compat/lib-rhashtable.o
>> scripts/Makefile.build:258: recipe for target
>> '/home/chungyi/backports-output/compat/lib-rhashtable.o' failed
>> scripts/Makefile.build:403: recipe for target
>> '/home/chungyi/backports-output/compat' failed
>> Makefile:1418: recipe for target '_module_/home/chungyi/backports-output'
>> failed
>> Makefile.build:6: recipe for target 'modules' failed
>> Makefile.real:88: recipe for target 'modules' failed
>> Makefile:40: recipe for target 'modules' failed
>> Makefile:30: recipe for target 'default' failed
>>
>>
>> _______________________________________________
>> ath10k mailing list
>> ath10k@lists.infradead.org
>> http://lists.infradead.org/mailman/listinfo/ath10k



-- 
Wu Chung-I

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: How to integrate the latest ath10k driver into an older kernel release ?
  2017-03-10 14:06 Chris Price
@ 2017-03-13  9:42 ` Janusz Dziedzic
  0 siblings, 0 replies; 7+ messages in thread
From: Janusz Dziedzic @ 2017-03-13  9:42 UTC (permalink / raw)
  To: Chris Price; +Cc: ath10k

[-- Attachment #1: Type: text/plain, Size: 1254 bytes --]

On 10 March 2017 at 15:06, Chris Price <chris.price@dejero.com> wrote:
> I had similar problems doing the same thing with a 4.1 kernel. I'm not
> sure if you are having the same problem without seeing the compilation
> errors, but here is what worked for me:
>
I did it today:
- ./devel/backports-update-manager
- apply ccm patch from Arend (subscribe to backports mailing list -
you will see latest required patches)
- ./gentree.py --verbose --clean --git-revision next-20170310
--copy-list copy-list.ath ~/linux-next/ ~/backports-output

And backports generate/compile fine.
(coccinelle installed from APT, ubuntu 16.04)

BR
Janusz

> - Used linux-stable repo
> - Used the copy-list.ath file from
> https://wireless.wiki.kernel.org/en/users/drivers/ath10k/backports
> - Added the following files to copy-list.ath: include/net/codel.h,
> include/net/codel_impl.h, include/net/fq.h, include/net/fq_impl.h
> - Ensure you compile using the same compiler as was used to compile
> your kernel. Otherwise, I couldn't compile one of the arch modules and
> the 'mcount' symbol couldn't be found.
>
> YMMV
>
> _______________________________________________
> ath10k mailing list
> ath10k@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/ath10k

[-- Attachment #2: ccm.patch --]
[-- Type: application/octet-stream, Size: 4248 bytes --]

Delivered-To: janusz.dziedzic@gmail.com
Received: by 10.74.70.138 with SMTP id q10csp308983ood;
        Thu, 9 Mar 2017 05:06:27 -0800 (PST)
X-Received: by 10.99.123.75 with SMTP id k11mr13598685pgn.17.1489064786949;
        Thu, 09 Mar 2017 05:06:26 -0800 (PST)
Return-Path: <backports-owner@vger.kernel.org>
Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67])
        by mx.google.com with ESMTP id f35si6435938plh.40.2017.03.09.05.06.18;
        Thu, 09 Mar 2017 05:06:26 -0800 (PST)
Received-SPF: pass (google.com: best guess record for domain of backports-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67;
Authentication-Results: mx.google.com;
       spf=pass (google.com: best guess record for domain of backports-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=backports-owner@vger.kernel.org;
       dmarc=fail (p=QUARANTINE sp=QUARANTINE dis=NONE) header.from=broadcom.com
Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand
        id S932346AbdCINFj (ORCPT <rfc822;charubansal102@gmail.com>
        + 59 others); Thu, 9 Mar 2017 08:05:39 -0500
Received: from lpdvrndsmtp01.broadcom.com ([192.19.229.170]:43454 "EHLO
        rnd-relay.smtp.broadcom.com" rhost-flags-OK-OK-OK-OK)
        by vger.kernel.org with ESMTP id S932342AbdCINFi (ORCPT
        <rfc822;backports@vger.kernel.org>); Thu, 9 Mar 2017 08:05:38 -0500
Received: from mail-irv-17.broadcom.com (mail-irv-17.lvn.broadcom.net [10.75.224.233])
        by rnd-relay.smtp.broadcom.com (Postfix) with ESMTP id 0F55A30C26A;
        Thu,
  9 Mar 2017 04:57:41 -0800 (PST)
Received: from jenkins-cam-14.cam.broadcom.com (jenkins-cam-14.cam.broadcom.com [10.177.128.77])
        by mail-irv-17.broadcom.com (Postfix) with ESMTP id CE8CA81E9C;
        Thu,
  9 Mar 2017 04:57:40 -0800 (PST)
Received: by jenkins-cam-14.cam.broadcom.com (Postfix, from userid 25152)
        id DF6E2B84E66; Thu,
  9 Mar 2017 12:57:39 +0000 (GMT)
From: Arend van Spriel <arend.vanspriel@broadcom.com>
To: Johannes Berg <johannes.berg@intel.com>
Cc: backports@vger.kernel.org, Arend van Spriel <arend.vanspriel@broadcom.com>
Subject: [PATCH 1/4] patches: update crypto-ccm.patch for v4.11-rc1
Date: Thu,
  9 Mar 2017 12:57:30 +0000
Message-Id: <1489064253-3652-2-git-send-email-arend.vanspriel@broadcom.com>
X-Mailer: git-send-email 1.9.1
In-Reply-To: <1489064253-3652-1-git-send-email-arend.vanspriel@broadcom.com>
References: <1489064253-3652-1-git-send-email-arend.vanspriel@broadcom.com>
Sender: backports-owner@vger.kernel.org
Precedence: bulk
List-ID: <backports.vger.kernel.org>
X-Mailing-List: backports@vger.kernel.org

Since v4.11-rc1 the patch file for crypto/ccm.c, which is incorporated
in the compat module, no longer applies. Update the patch file to fix
the issue.

Signed-off-by: Arend van Spriel <arend.vanspriel@broadcom.com>
---
 patches/crypto-ccm.patch | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/patches/crypto-ccm.patch b/patches/crypto-ccm.patch
index 8bdea3d..7a44d37 100644
--- a/patches/crypto-ccm.patch
+++ b/patches/crypto-ccm.patch
@@ -1,7 +1,7 @@
 --- a/compat/crypto-ccm.c
 +++ b/compat/crypto-ccm.c
-@@ -13,13 +13,44 @@
- #include <crypto/internal/aead.h>
+@@ -14,13 +14,44 @@
+ #include <crypto/internal/hash.h>
  #include <crypto/internal/skcipher.h>
  #include <crypto/scatterwalk.h>
 +#include <crypto/algapi.h>
@@ -46,7 +46,7 @@
  
  struct ccm_instance_ctx {
  	struct crypto_skcipher_spawn ctr;
-@@ -897,7 +928,7 @@ static struct crypto_template crypto_rfc
+@@ -1001,7 +1032,7 @@ static int cbcmac_create(struct crypto_template *tmpl, struct rtattr **tb)
  	.module = THIS_MODULE,
  };
  
@@ -55,7 +55,7 @@
  {
  	int err;
  
-@@ -923,18 +954,9 @@ out_undo_base:
+@@ -1033,19 +1064,10 @@ static int __init crypto_ccm_module_init(void)
  	goto out;
  }
  
@@ -65,6 +65,7 @@
  	crypto_unregister_template(&crypto_rfc4309_tmpl);
  	crypto_unregister_template(&crypto_ccm_tmpl);
  	crypto_unregister_template(&crypto_ccm_base_tmpl);
+ 	crypto_unregister_template(&crypto_cbcmac_tmpl);
  }
 -
 -module_init(crypto_ccm_module_init);
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe backports" in


[-- Attachment #3: Type: text/plain, Size: 146 bytes --]

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: How to integrate the latest ath10k driver into an older kernel release ?
@ 2017-03-10 14:06 Chris Price
  2017-03-13  9:42 ` Janusz Dziedzic
  0 siblings, 1 reply; 7+ messages in thread
From: Chris Price @ 2017-03-10 14:06 UTC (permalink / raw)
  To: ath10k

I had similar problems doing the same thing with a 4.1 kernel. I'm not
sure if you are having the same problem without seeing the compilation
errors, but here is what worked for me:

- Used linux-stable repo
- Used the copy-list.ath file from
https://wireless.wiki.kernel.org/en/users/drivers/ath10k/backports
- Added the following files to copy-list.ath: include/net/codel.h,
include/net/codel_impl.h, include/net/fq.h, include/net/fq_impl.h
- Ensure you compile using the same compiler as was used to compile
your kernel. Otherwise, I couldn't compile one of the arch modules and
the 'mcount' symbol couldn't be found.

YMMV

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: How to integrate the latest ath10k driver into an older kernel release ?
       [not found] <F3E5DE47-C5E5-46B5-8E19-DF0DD43DBC9C@picocela.com>
@ 2017-03-10 12:57 ` Jean-Luc Kalmus
  0 siblings, 0 replies; 7+ messages in thread
From: Jean-Luc Kalmus @ 2017-03-10 12:57 UTC (permalink / raw)
  To: ath10k

Hi,
How can I integrate the latest ath10k driver into Linux kernel v3.10.20 ? 

According to this wiki https://backports.wiki.kernel.org/index.php/Documentation/integration the integration requires the backports.git and linux-next.git (or linux-next-history.git or linux-stable.git) trees to be on corresponding tags.
I found that the latest tag in the backports.git tree is ‘backports-20160324’. Therefore the latest ath10k driver I can integrate is from the kernel tag next-20160324.
I used the command: ./gentree.py --copy-list copy-list  --integrate --clean  ~/linux-next-history/ ~/linux-3.10.20/

However, when I tried to integrate drivers from the linux tag next-20170309 using a backports tree on backports-20160324, that resulted in patching errors.
How to do the integration in that case ? 

The same problem occurs when using the method explained in this wiki page https://wireless.wiki.kernel.org/en/users/drivers/ath10k/backports using the ath.git tree.

--
Jean-Luc Kalmus


_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2017-03-29  8:54 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-24 11:25 How to integrate the latest ath10k driver into an older kernel release ? Wu Chung-I
2017-03-25 11:14 ` K.Mani
2017-03-28 10:20 ` Janusz Dziedzic
2017-03-29  8:53   ` 吳重毅
  -- strict thread matches above, loose matches on Subject: below --
2017-03-10 14:06 Chris Price
2017-03-13  9:42 ` Janusz Dziedzic
     [not found] <F3E5DE47-C5E5-46B5-8E19-DF0DD43DBC9C@picocela.com>
2017-03-10 12:57 ` Jean-Luc Kalmus

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.