All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/rpi-userland: don't isntall file in random location
@ 2017-03-07 21:16 Yann E. MORIN
  2017-03-08 22:02 ` Peter Seiderer
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Yann E. MORIN @ 2017-03-07 21:16 UTC (permalink / raw)
  To: buildroot

Currently, rpi-userland installs files in $(@D)/../../bin/ which is
entirely stupid, especially in cross-compilation.

Get rid of the dubious, broken, custom install command.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
---
 ...toverlay-don-t-install-script-in-random-l.patch | 45 ++++++++++++++++++++++
 1 file changed, 45 insertions(+)
 create mode 100644 package/rpi-userland/0006-host-apps-dtoverlay-don-t-install-script-in-random-l.patch

diff --git a/package/rpi-userland/0006-host-apps-dtoverlay-don-t-install-script-in-random-l.patch b/package/rpi-userland/0006-host-apps-dtoverlay-don-t-install-script-in-random-l.patch
new file mode 100644
index 0000000..2900eb7
--- /dev/null
+++ b/package/rpi-userland/0006-host-apps-dtoverlay-don-t-install-script-in-random-l.patch
@@ -0,0 +1,45 @@
+From a5a4e361c8116ca9228a896f672102c02be56bb7 Mon Sep 17 00:00:00 2001
+From: "Yann E. MORIN" <yann.morin.1998@free.fr>
+Date: Tue, 7 Mar 2017 22:01:39 +0100
+Subject: [PATCH] host-apps/dtoverlay: don't install script in random location
+
+Currently, we add a custom command that installs the dtoverlay pre/post
+scripts in ${CMAKE_BINARY_DIR}/../../bin
+
+However:
+
+  - this points outside of the package directory.; it even points two
+    directories higher;
+
+  - when doing cross-compilation, this is definitely not the place where
+    the /bin directory really is;
+
+  - the scripts are already properly installed without this code.
+
+Remove that code, it serves no purpose and breaks for cross-compilation.
+
+Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
+---
+ host_applications/linux/apps/dtoverlay/CMakeLists.txt | 8 --------
+ 1 file changed, 8 deletions(-)
+
+diff --git a/host_applications/linux/apps/dtoverlay/CMakeLists.txt b/host_applications/linux/apps/dtoverlay/CMakeLists.txt
+index 9009200..dd48d83 100755
+--- a/host_applications/linux/apps/dtoverlay/CMakeLists.txt
++++ b/host_applications/linux/apps/dtoverlay/CMakeLists.txt
+@@ -22,12 +22,4 @@ add_custom_command(TARGET dtoverlay POST_BUILD COMMAND ln;-sf;dtoverlay;dtparam)
+ install(FILES ${CMAKE_CURRENT_BINARY_DIR}/dtparam DESTINATION bin)
+ 
+ set(DTOVERLAY_SCRIPTS dtoverlay-pre dtoverlay-post)
+-foreach(_script ${DTOVERLAY_SCRIPTS})
+-   add_custom_command(
+-     TARGET dtoverlay
+-     COMMAND ${CMAKE_COMMAND}
+-     -E copy ${CMAKE_CURRENT_SOURCE_DIR}/${_script}
+-     ${CMAKE_BINARY_DIR}/../../bin/${_script}
+-   )
+-endforeach()
+ install(PROGRAMS ${DTOVERLAY_SCRIPTS} DESTINATION bin)
+-- 
+2.7.4
+
-- 
2.7.4

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

* [Buildroot] [PATCH] package/rpi-userland: don't isntall file in random location
  2017-03-07 21:16 [Buildroot] [PATCH] package/rpi-userland: don't isntall file in random location Yann E. MORIN
@ 2017-03-08 22:02 ` Peter Seiderer
  2017-03-10 21:46 ` Thomas Petazzoni
  2017-03-13 23:08 ` Peter Korsgaard
  2 siblings, 0 replies; 5+ messages in thread
From: Peter Seiderer @ 2017-03-08 22:02 UTC (permalink / raw)
  To: buildroot

Hello Yann,

On Tue,  7 Mar 2017 22:16:28 +0100, "Yann E. MORIN" <yann.morin.1998@free.fr> wrote:

> Currently, rpi-userland installs files in $(@D)/../../bin/ which is
> entirely stupid, especially in cross-compilation.
> 
> Get rid of the dubious, broken, custom install command.
> 
> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> ---
>  ...toverlay-don-t-install-script-in-random-l.patch | 45 ++++++++++++++++++++++
>  1 file changed, 45 insertions(+)
>  create mode 100644 package/rpi-userland/0006-host-apps-dtoverlay-don-t-install-script-in-random-l.patch
> 
> diff --git a/package/rpi-userland/0006-host-apps-dtoverlay-don-t-install-script-in-random-l.patch b/package/rpi-userland/0006-host-apps-dtoverlay-don-t-install-script-in-random-l.patch
> new file mode 100644
> index 0000000..2900eb7
> --- /dev/null
> +++ b/package/rpi-userland/0006-host-apps-dtoverlay-don-t-install-script-in-random-l.patch
> @@ -0,0 +1,45 @@
> +From a5a4e361c8116ca9228a896f672102c02be56bb7 Mon Sep 17 00:00:00 2001
> +From: "Yann E. MORIN" <yann.morin.1998@free.fr>
> +Date: Tue, 7 Mar 2017 22:01:39 +0100
> +Subject: [PATCH] host-apps/dtoverlay: don't install script in random location
> +
> +Currently, we add a custom command that installs the dtoverlay pre/post
> +scripts in ${CMAKE_BINARY_DIR}/../../bin
> +
> +However:
> +
> +  - this points outside of the package directory.; it even points two
> +    directories higher;
> +
> +  - when doing cross-compilation, this is definitely not the place where
> +    the /bin directory really is;
> +
> +  - the scripts are already properly installed without this code.
> +
> +Remove that code, it serves no purpose and breaks for cross-compilation.
> +
> +Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> +---
> + host_applications/linux/apps/dtoverlay/CMakeLists.txt | 8 --------
> + 1 file changed, 8 deletions(-)
> +
> +diff --git a/host_applications/linux/apps/dtoverlay/CMakeLists.txt b/host_applications/linux/apps/dtoverlay/CMakeLists.txt
> +index 9009200..dd48d83 100755
> +--- a/host_applications/linux/apps/dtoverlay/CMakeLists.txt
> ++++ b/host_applications/linux/apps/dtoverlay/CMakeLists.txt
> +@@ -22,12 +22,4 @@ add_custom_command(TARGET dtoverlay POST_BUILD COMMAND ln;-sf;dtoverlay;dtparam)
> + install(FILES ${CMAKE_CURRENT_BINARY_DIR}/dtparam DESTINATION bin)
> + 
> + set(DTOVERLAY_SCRIPTS dtoverlay-pre dtoverlay-post)
> +-foreach(_script ${DTOVERLAY_SCRIPTS})
> +-   add_custom_command(
> +-     TARGET dtoverlay
> +-     COMMAND ${CMAKE_COMMAND}
> +-     -E copy ${CMAKE_CURRENT_SOURCE_DIR}/${_script}
> +-     ${CMAKE_BINARY_DIR}/../../bin/${_script}
> +-   )
> +-endforeach()
> + install(PROGRAMS ${DTOVERLAY_SCRIPTS} DESTINATION bin)
> +-- 
> +2.7.4
> +

No more spurious bin directory created...
 
Tested-by: Peter Seiderer <ps.report@gmx.net>

Regards,
Peter

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

* [Buildroot] [PATCH] package/rpi-userland: don't isntall file in random location
  2017-03-07 21:16 [Buildroot] [PATCH] package/rpi-userland: don't isntall file in random location Yann E. MORIN
  2017-03-08 22:02 ` Peter Seiderer
@ 2017-03-10 21:46 ` Thomas Petazzoni
  2017-03-10 21:57   ` Yann E. MORIN
  2017-03-13 23:08 ` Peter Korsgaard
  2 siblings, 1 reply; 5+ messages in thread
From: Thomas Petazzoni @ 2017-03-10 21:46 UTC (permalink / raw)
  To: buildroot

Hello,

On Tue,  7 Mar 2017 22:16:28 +0100, Yann E. MORIN wrote:
> Currently, rpi-userland installs files in $(@D)/../../bin/ which is
> entirely stupid, especially in cross-compilation.
> 
> Get rid of the dubious, broken, custom install command.
> 
> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> ---
>  ...toverlay-don-t-install-script-in-random-l.patch | 45 ++++++++++++++++++++++
>  1 file changed, 45 insertions(+)
>  create mode 100644 package/rpi-userland/0006-host-apps-dtoverlay-don-t-install-script-in-random-l.patch

Applied to master after fixing the typo in the commit title. Please
don't forget to submit upstream.

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH] package/rpi-userland: don't isntall file in random location
  2017-03-10 21:46 ` Thomas Petazzoni
@ 2017-03-10 21:57   ` Yann E. MORIN
  0 siblings, 0 replies; 5+ messages in thread
From: Yann E. MORIN @ 2017-03-10 21:57 UTC (permalink / raw)
  To: buildroot

Thomas, All,

On 2017-03-10 22:46 +0100, Thomas Petazzoni spake thusly:
> On Tue,  7 Mar 2017 22:16:28 +0100, Yann E. MORIN wrote:
> > Currently, rpi-userland installs files in $(@D)/../../bin/ which is
> > entirely stupid, especially in cross-compilation.
> > 
> > Get rid of the dubious, broken, custom install command.
> > 
> > Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> > ---
> >  ...toverlay-don-t-install-script-in-random-l.patch | 45 ++++++++++++++++++++++
> >  1 file changed, 45 insertions(+)
> >  create mode 100644 package/rpi-userland/0006-host-apps-dtoverlay-don-t-install-script-in-random-l.patch
> 
> Applied to master after fixing the typo in the commit title. Please
> don't forget to submit upstream.

Already done 3 days ago:
    https://github.com/raspberrypi/userland/pull/380

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH] package/rpi-userland: don't isntall file in random location
  2017-03-07 21:16 [Buildroot] [PATCH] package/rpi-userland: don't isntall file in random location Yann E. MORIN
  2017-03-08 22:02 ` Peter Seiderer
  2017-03-10 21:46 ` Thomas Petazzoni
@ 2017-03-13 23:08 ` Peter Korsgaard
  2 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2017-03-13 23:08 UTC (permalink / raw)
  To: buildroot

>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

 > Currently, rpi-userland installs files in $(@D)/../../bin/ which is
 > entirely stupid, especially in cross-compilation.

 > Get rid of the dubious, broken, custom install command.

 > Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Committed to 2017.02.x, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2017-03-13 23:08 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-07 21:16 [Buildroot] [PATCH] package/rpi-userland: don't isntall file in random location Yann E. MORIN
2017-03-08 22:02 ` Peter Seiderer
2017-03-10 21:46 ` Thomas Petazzoni
2017-03-10 21:57   ` Yann E. MORIN
2017-03-13 23:08 ` Peter Korsgaard

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.