All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] packagegroup-arago-tisdk-connectivity-sdk-host: Add ti-compat-wireless-wl18xx-src.
@ 2015-03-02 15:46 Jacob Stiffler
  2015-03-02 15:46 ` [PATCH 2/2] ti-tisdk-makefile: Add wl18xx driver targets Jacob Stiffler
  2015-03-03  6:30 ` [PATCH 1/2] packagegroup-arago-tisdk-connectivity-sdk-host: Add ti-compat-wireless-wl18xx-src Denys Dmytriyenko
  0 siblings, 2 replies; 4+ messages in thread
From: Jacob Stiffler @ 2015-03-02 15:46 UTC (permalink / raw)
  To: meta-arago

From: Jake Stiffler <j-stiffler@ti.com>

* Add out of tree wl18xx driver sources to the SDK.

Signed-off-by: Jake Stiffler <j-stiffler@ti.com>
---
 ...ckagegroup-arago-tisdk-connectivity-sdk-host.bb |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-connectivity-sdk-host.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-connectivity-sdk-host.bb
index e367c28..3862816 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-connectivity-sdk-host.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-connectivity-sdk-host.bb
@@ -1,6 +1,6 @@
 DESCRIPTION = "Task to install wlan and bluetooth sources into the SDK"
 LICENSE = "MIT"
-PR = "r9"
+PR = "r10"
 
 inherit packagegroup
 
@@ -8,6 +8,7 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
 
 FIRMWARE_AND_DRIVERS_SRC = "\
     wl18xx-firmware-src \
+    ti-compat-wireless-wl18xx-src \
 "
 
 CONNECTIVITY_RDEPENDS = ""
-- 
1.7.9.5



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

* [PATCH 2/2] ti-tisdk-makefile: Add wl18xx driver targets.
  2015-03-02 15:46 [PATCH 1/2] packagegroup-arago-tisdk-connectivity-sdk-host: Add ti-compat-wireless-wl18xx-src Jacob Stiffler
@ 2015-03-02 15:46 ` Jacob Stiffler
  2015-03-03  6:30 ` [PATCH 1/2] packagegroup-arago-tisdk-connectivity-sdk-host: Add ti-compat-wireless-wl18xx-src Denys Dmytriyenko
  1 sibling, 0 replies; 4+ messages in thread
From: Jacob Stiffler @ 2015-03-02 15:46 UTC (permalink / raw)
  To: meta-arago

From: Jake Stiffler <j-stiffler@ti.com>

* Enables the wl18xx drivers to be built from the SDK Makefile.

Signed-off-by: Jake Stiffler <j-stiffler@ti.com>
---
 .../ti-tisdk-makefile/Makefile_wireless            |   33 +++++++++++++++++---
 .../ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb     |    2 +-
 2 files changed, 30 insertions(+), 5 deletions(-)

diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_wireless b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_wireless
index a3c7463..00a1931 100644
--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_wireless
+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_wireless
@@ -1,7 +1,6 @@
-# Wireless build targets
-wireless: wifi-firmware
-wireless_install: wifi-firmware_install
-wireless_clean: wifi-firmware_clean
+wireless: wifi-firmware compat-modules
+wireless_install: wifi-firmware_install compat-modules_install
+wireless_clean: wifi-firmware_clean compat-modules_clean
 
 wifi-firmware:
 	@echo ================================
@@ -22,3 +21,29 @@ wifi-firmware_clean:
 	@echo      Cleaning wifi firmware
 	@echo ================================
 	@echo "Nothing to do" 
+
+compat-modules: linux
+	@echo ================================
+	@echo      Building compat-modules
+	@echo ================================
+	@cd board-support/extra-drivers; \
+	cd `find . -maxdepth 1 -name "*compat-wireless*"`; \
+	make KLIB_BUILD=${LINUXKERNEL_INSTALL_DIR} KLIB=${DESTDIR} CC="cc" defconfig-wl18xx; \
+	make KLIB_BUILD=${LINUXKERNEL_INSTALL_DIR} KLIB=${DESTDIR} CROSS_COMPILE=${CROSS_COMPILE} ARCH=arm
+
+compat-modules_install:
+	@echo ================================
+	@echo      Installing compat-modules
+	@echo ================================
+	@cd board-support/extra-drivers; \
+	cd `find . -maxdepth 1 -name "*compat-wireless*"`; \
+	make DEPMOD=echo DESTDIR=${DESTDIR} KLIB_BUILD=${LINUXKERNEL_INSTALL_DIR} KLIB=${DESTDIR} INSTALL_MOD_PATH=${DESTDIR} CROSS_COMPILE=${CROSS_COMPILE} ARCH=arm modules_install
+
+compat-modules_clean:
+	@echo ================================
+	@echo      Cleaning compat-modules
+	@echo ================================
+	@cd board-support/extra-drivers; \
+	cd `find . -maxdepth 1 -name "*compat-wireless*"`; \
+	make KLIB_BUILD=${LINUXKERNEL_INSTALL_DIR} KLIB=${DESTDIR} CROSS_COMPILE=${CROSS_COMPILE} ARCH=arm clean
+
diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
index 578dcf3..a39f7db 100644
--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
@@ -36,7 +36,7 @@ SRC_URI = "\
     file://Makefile_cryptodev \
 "
 
-PR = "r39"
+PR = "r40"
 
 MAKEFILES_COMMON = "linux \
                     matrix-gui \
-- 
1.7.9.5



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

* Re: [PATCH 1/2] packagegroup-arago-tisdk-connectivity-sdk-host: Add ti-compat-wireless-wl18xx-src.
  2015-03-02 15:46 [PATCH 1/2] packagegroup-arago-tisdk-connectivity-sdk-host: Add ti-compat-wireless-wl18xx-src Jacob Stiffler
  2015-03-02 15:46 ` [PATCH 2/2] ti-tisdk-makefile: Add wl18xx driver targets Jacob Stiffler
@ 2015-03-03  6:30 ` Denys Dmytriyenko
  2015-03-03 11:37   ` Stiffler, Jacob
  1 sibling, 1 reply; 4+ messages in thread
From: Denys Dmytriyenko @ 2015-03-03  6:30 UTC (permalink / raw)
  To: Jacob Stiffler; +Cc: meta-arago

The patch is fine, but have we found out what is the deal with in-tree and 
compat mopules?


On Mon, Mar 02, 2015 at 10:46:06AM -0500, Jacob Stiffler wrote:
> From: Jake Stiffler <j-stiffler@ti.com>
> 
> * Add out of tree wl18xx driver sources to the SDK.
> 
> Signed-off-by: Jake Stiffler <j-stiffler@ti.com>
> ---
>  ...ckagegroup-arago-tisdk-connectivity-sdk-host.bb |    3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-connectivity-sdk-host.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-connectivity-sdk-host.bb
> index e367c28..3862816 100644
> --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-connectivity-sdk-host.bb
> +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-connectivity-sdk-host.bb
> @@ -1,6 +1,6 @@
>  DESCRIPTION = "Task to install wlan and bluetooth sources into the SDK"
>  LICENSE = "MIT"
> -PR = "r9"
> +PR = "r10"
>  
>  inherit packagegroup
>  
> @@ -8,6 +8,7 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
>  
>  FIRMWARE_AND_DRIVERS_SRC = "\
>      wl18xx-firmware-src \
> +    ti-compat-wireless-wl18xx-src \
>  "
>  
>  CONNECTIVITY_RDEPENDS = ""
> -- 
> 1.7.9.5
> 
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [PATCH 1/2] packagegroup-arago-tisdk-connectivity-sdk-host: Add ti-compat-wireless-wl18xx-src.
  2015-03-03  6:30 ` [PATCH 1/2] packagegroup-arago-tisdk-connectivity-sdk-host: Add ti-compat-wireless-wl18xx-src Denys Dmytriyenko
@ 2015-03-03 11:37   ` Stiffler, Jacob
  0 siblings, 0 replies; 4+ messages in thread
From: Stiffler, Jacob @ 2015-03-03 11:37 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org

I do not have any history on this...

-----Original Message-----
From: Dmytriyenko, Denys 
Sent: Tuesday, March 03, 2015 1:30 AM
To: Stiffler, Jacob
Cc: meta-arago@arago-project.org
Subject: Re: [meta-arago] [PATCH 1/2] packagegroup-arago-tisdk-connectivity-sdk-host: Add ti-compat-wireless-wl18xx-src.

The patch is fine, but have we found out what is the deal with in-tree and compat mopules?


On Mon, Mar 02, 2015 at 10:46:06AM -0500, Jacob Stiffler wrote:
> From: Jake Stiffler <j-stiffler@ti.com>
> 
> * Add out of tree wl18xx driver sources to the SDK.
> 
> Signed-off-by: Jake Stiffler <j-stiffler@ti.com>
> ---
>  ...ckagegroup-arago-tisdk-connectivity-sdk-host.bb |    3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-connectivity-sdk-host.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-connectivity-sdk-host.bb
> index e367c28..3862816 100644
> --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-connectivity-sdk-host.bb
> +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-connectivity-sdk-host.bb
> @@ -1,6 +1,6 @@
>  DESCRIPTION = "Task to install wlan and bluetooth sources into the SDK"
>  LICENSE = "MIT"
> -PR = "r9"
> +PR = "r10"
>  
>  inherit packagegroup
>  
> @@ -8,6 +8,7 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
>  
>  FIRMWARE_AND_DRIVERS_SRC = "\
>      wl18xx-firmware-src \
> +    ti-compat-wireless-wl18xx-src \
>  "
>  
>  CONNECTIVITY_RDEPENDS = ""
> -- 
> 1.7.9.5
> 
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

end of thread, other threads:[~2015-03-03 11:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-02 15:46 [PATCH 1/2] packagegroup-arago-tisdk-connectivity-sdk-host: Add ti-compat-wireless-wl18xx-src Jacob Stiffler
2015-03-02 15:46 ` [PATCH 2/2] ti-tisdk-makefile: Add wl18xx driver targets Jacob Stiffler
2015-03-03  6:30 ` [PATCH 1/2] packagegroup-arago-tisdk-connectivity-sdk-host: Add ti-compat-wireless-wl18xx-src Denys Dmytriyenko
2015-03-03 11:37   ` Stiffler, Jacob

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.