mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 1/2] scripts: fix kernel-install-target config
@ 2013-11-19  1:08 Alexander Aring
  2013-11-19  1:08 ` [PATCH 2/2] common: add dependency !SANDBOX on target tools Alexander Aring
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Alexander Aring @ 2013-11-19  1:08 UTC (permalink / raw)
  To: barebox

Signed-off-by: Alexander Aring <alex.aring@gmail.com>
---
This confused me a little bit... commit id
61cf2b51bccbf18c3df505a77db759454e8574ca looks different than the commit
on barebox mailinglist [1]. What's happend there? :-)

[1] http://lists.infradead.org/pipermail/barebox/2013-September/016457.html

 scripts/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/Makefile b/scripts/Makefile
index ce3fd53..2f78c4b 100644
--- a/scripts/Makefile
+++ b/scripts/Makefile
@@ -25,7 +25,7 @@ subdir-$(CONFIG_X86)		+= setupmbr
 subdir-$(CONFIG_DTC)		+= dtc
 
 targetprogs-$(CONFIG_BAREBOXENV_TARGET) += bareboxenv-target
-targetprogs-$(CONFIG_KERNEL_INSTALL_TARGET) += bareboxenv-target
+targetprogs-$(CONFIG_KERNEL_INSTALL_TARGET) += kernel-install-target
 
 # Let clean descend into subdirs
 subdir-	+= basic kconfig setupmbr
-- 
1.8.4.2


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

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

* [PATCH 2/2] common: add dependency !SANDBOX on target tools
  2013-11-19  1:08 [PATCH 1/2] scripts: fix kernel-install-target config Alexander Aring
@ 2013-11-19  1:08 ` Alexander Aring
  2013-11-19  2:45 ` [PATCH 1/2] scripts: fix kernel-install-target config Alexander Aring
  2013-11-20  6:22 ` Sascha Hauer
  2 siblings, 0 replies; 4+ messages in thread
From: Alexander Aring @ 2013-11-19  1:08 UTC (permalink / raw)
  To: barebox

The build of target tools fails on sandbox architecture.
We don't need any target tools in this case, so add a dependency.

Signed-off-by: Alexander Aring <alex.aring@gmail.com>
---
 common/Kconfig | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/common/Kconfig b/common/Kconfig
index ccfbc80..06edbc2 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -453,6 +453,7 @@ config BLSPEC
 
 config KERNEL_INSTALL_TARGET
 	bool
+	depends on !SANDBOX
 	prompt "Build kernel-install utility for the target"
 	help
 	  Enable this to compile the kernel-install script using the cross
@@ -610,6 +611,7 @@ config DEFAULT_ENVIRONMENT_PATH
 
 config BAREBOXENV_TARGET
 	bool
+	depends on !SANDBOX
 	prompt "build bareboxenv tool for target"
 	help
 	  'bareboxenv' is a tool to access the barebox environment from a running Linux
-- 
1.8.4.2


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

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

* Re: [PATCH 1/2] scripts: fix kernel-install-target config
  2013-11-19  1:08 [PATCH 1/2] scripts: fix kernel-install-target config Alexander Aring
  2013-11-19  1:08 ` [PATCH 2/2] common: add dependency !SANDBOX on target tools Alexander Aring
@ 2013-11-19  2:45 ` Alexander Aring
  2013-11-20  6:22 ` Sascha Hauer
  2 siblings, 0 replies; 4+ messages in thread
From: Alexander Aring @ 2013-11-19  2:45 UTC (permalink / raw)
  To: barebox

On Tue, Nov 19, 2013 at 02:08:12AM +0100, Alexander Aring wrote:
> Signed-off-by: Alexander Aring <alex.aring@gmail.com>
> ---
> This confused me a little bit... commit id
> 61cf2b51bccbf18c3df505a77db759454e8574ca looks different than the commit
> on barebox mailinglist [1]. What's happend there? :-)
> 
s/happend/happened/

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

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

* Re: [PATCH 1/2] scripts: fix kernel-install-target config
  2013-11-19  1:08 [PATCH 1/2] scripts: fix kernel-install-target config Alexander Aring
  2013-11-19  1:08 ` [PATCH 2/2] common: add dependency !SANDBOX on target tools Alexander Aring
  2013-11-19  2:45 ` [PATCH 1/2] scripts: fix kernel-install-target config Alexander Aring
@ 2013-11-20  6:22 ` Sascha Hauer
  2 siblings, 0 replies; 4+ messages in thread
From: Sascha Hauer @ 2013-11-20  6:22 UTC (permalink / raw)
  To: Alexander Aring; +Cc: barebox

On Tue, Nov 19, 2013 at 02:08:12AM +0100, Alexander Aring wrote:
> Signed-off-by: Alexander Aring <alex.aring@gmail.com>
> ---
> This confused me a little bit... commit id
> 61cf2b51bccbf18c3df505a77db759454e8574ca looks different than the commit
> on barebox mailinglist [1]. What's happend there? :-)

No idea, looks like copy-paste error. Stopped thinking about it and
applied ;)

Sascha

> 
> [1] http://lists.infradead.org/pipermail/barebox/2013-September/016457.html
> 
>  scripts/Makefile | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/scripts/Makefile b/scripts/Makefile
> index ce3fd53..2f78c4b 100644
> --- a/scripts/Makefile
> +++ b/scripts/Makefile
> @@ -25,7 +25,7 @@ subdir-$(CONFIG_X86)		+= setupmbr
>  subdir-$(CONFIG_DTC)		+= dtc
>  
>  targetprogs-$(CONFIG_BAREBOXENV_TARGET) += bareboxenv-target
> -targetprogs-$(CONFIG_KERNEL_INSTALL_TARGET) += bareboxenv-target
> +targetprogs-$(CONFIG_KERNEL_INSTALL_TARGET) += kernel-install-target
>  
>  # Let clean descend into subdirs
>  subdir-	+= basic kconfig setupmbr
> -- 
> 1.8.4.2
> 
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

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

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

end of thread, other threads:[~2013-11-20  6:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-11-19  1:08 [PATCH 1/2] scripts: fix kernel-install-target config Alexander Aring
2013-11-19  1:08 ` [PATCH 2/2] common: add dependency !SANDBOX on target tools Alexander Aring
2013-11-19  2:45 ` [PATCH 1/2] scripts: fix kernel-install-target config Alexander Aring
2013-11-20  6:22 ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox