mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] sandbox: add a minimal defconfig to build only the host tools
@ 2020-08-23 21:13 Roland Hieber
  2020-08-23 22:39 ` [PATCH v2] " Roland Hieber
  0 siblings, 1 reply; 5+ messages in thread
From: Roland Hieber @ 2020-08-23 21:13 UTC (permalink / raw)
  To: Barebox Mailing List; +Cc: Roland Hieber

For distro packaging, make it possible to build all host tools in one go
(and a very minimal barebox image as an unimportant side artifact).

Signed-off-by: Roland Hieber <rhi@pengutronix.de>
---
 arch/sandbox/configs/hosttools_defconfig | 6 ++++++
 1 file changed, 6 insertions(+)
 create mode 100644 arch/sandbox/configs/hosttools_defconfig

diff --git a/arch/sandbox/configs/hosttools_defconfig b/arch/sandbox/configs/hosttools_defconfig
new file mode 100644
index 000000000000..91b03e691ee4
--- /dev/null
+++ b/arch/sandbox/configs/hosttools_defconfig
@@ -0,0 +1,6 @@
+CONFIG_COMPILE_HOST_TOOLS=y
+CONFIG_ARCH_IMX_USBLOADER=y
+CONFIG_MVEBU_HOSTTOOLS=y
+CONFIG_MXS_HOSTTOOLS=y
+CONFIG_OMAP3_USB_LOADER=y
+CONFIG_OMAP4_HOSTTOOL_USBBOOT=y
-- 
2.28.0


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

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

* [PATCH v2] sandbox: add a minimal defconfig to build only the host tools
  2020-08-23 21:13 [PATCH] sandbox: add a minimal defconfig to build only the host tools Roland Hieber
@ 2020-08-23 22:39 ` Roland Hieber
  2020-08-28  6:10   ` Sascha Hauer
  2020-08-28  8:40   ` Antony Pavlov
  0 siblings, 2 replies; 5+ messages in thread
From: Roland Hieber @ 2020-08-23 22:39 UTC (permalink / raw)
  To: Barebox Mailing List; +Cc: Roland Hieber

For distro packaging, make it possible to build all host tools in one go
(and a very minimal barebox image as an unimportant side artifact).

Signed-off-by: Roland Hieber <rhi@pengutronix.de>
---
v2:
 * also select IMD to get scripts/bareboximd

 arch/sandbox/configs/hosttools_defconfig | 7 +++++++
 1 file changed, 7 insertions(+)
 create mode 100644 arch/sandbox/configs/hosttools_defconfig

diff --git a/arch/sandbox/configs/hosttools_defconfig b/arch/sandbox/configs/hosttools_defconfig
new file mode 100644
index 000000000000..72ec0fc462b2
--- /dev/null
+++ b/arch/sandbox/configs/hosttools_defconfig
@@ -0,0 +1,7 @@
+CONFIG_IMD=y
+CONFIG_COMPILE_HOST_TOOLS=y
+CONFIG_ARCH_IMX_USBLOADER=y
+CONFIG_MVEBU_HOSTTOOLS=y
+CONFIG_MXS_HOSTTOOLS=y
+CONFIG_OMAP3_USB_LOADER=y
+CONFIG_OMAP4_HOSTTOOL_USBBOOT=y
-- 
2.28.0


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

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

* Re: [PATCH v2] sandbox: add a minimal defconfig to build only the host tools
  2020-08-23 22:39 ` [PATCH v2] " Roland Hieber
@ 2020-08-28  6:10   ` Sascha Hauer
  2020-08-28  8:40   ` Antony Pavlov
  1 sibling, 0 replies; 5+ messages in thread
From: Sascha Hauer @ 2020-08-28  6:10 UTC (permalink / raw)
  To: Roland Hieber; +Cc: Barebox Mailing List

On Mon, Aug 24, 2020 at 12:39:27AM +0200, Roland Hieber wrote:
> For distro packaging, make it possible to build all host tools in one go
> (and a very minimal barebox image as an unimportant side artifact).
> 
> Signed-off-by: Roland Hieber <rhi@pengutronix.de>
> ---
> v2:
>  * also select IMD to get scripts/bareboximd
> 
>  arch/sandbox/configs/hosttools_defconfig | 7 +++++++
>  1 file changed, 7 insertions(+)
>  create mode 100644 arch/sandbox/configs/hosttools_defconfig

Applied, thanks

Sascha

> 
> diff --git a/arch/sandbox/configs/hosttools_defconfig b/arch/sandbox/configs/hosttools_defconfig
> new file mode 100644
> index 000000000000..72ec0fc462b2
> --- /dev/null
> +++ b/arch/sandbox/configs/hosttools_defconfig
> @@ -0,0 +1,7 @@
> +CONFIG_IMD=y
> +CONFIG_COMPILE_HOST_TOOLS=y
> +CONFIG_ARCH_IMX_USBLOADER=y
> +CONFIG_MVEBU_HOSTTOOLS=y
> +CONFIG_MXS_HOSTTOOLS=y
> +CONFIG_OMAP3_USB_LOADER=y
> +CONFIG_OMAP4_HOSTTOOL_USBBOOT=y
> -- 
> 2.28.0
> 
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
> 

-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
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] 5+ messages in thread

* Re: [PATCH v2] sandbox: add a minimal defconfig to build only the host tools
  2020-08-23 22:39 ` [PATCH v2] " Roland Hieber
  2020-08-28  6:10   ` Sascha Hauer
@ 2020-08-28  8:40   ` Antony Pavlov
  2020-08-28 10:26     ` Roland Hieber
  1 sibling, 1 reply; 5+ messages in thread
From: Antony Pavlov @ 2020-08-28  8:40 UTC (permalink / raw)
  To: Roland Hieber; +Cc: Barebox Mailing List

On Mon, 24 Aug 2020 00:39:27 +0200
Roland Hieber <rhi@pengutronix.de> wrote:

Hi!

> For distro packaging, make it possible to build all host tools in one go

Is there any stuff for Debian packaging?

There is u-boot-tools package for Debian distro.
Alas there is no barebox-tools package still.


> (and a very minimal barebox image as an unimportant side artifact).
> 
> Signed-off-by: Roland Hieber <rhi@pengutronix.de>
> ---
> v2:
>  * also select IMD to get scripts/bareboximd
> 
>  arch/sandbox/configs/hosttools_defconfig | 7 +++++++
>  1 file changed, 7 insertions(+)
>  create mode 100644 arch/sandbox/configs/hosttools_defconfig
> 
> diff --git a/arch/sandbox/configs/hosttools_defconfig b/arch/sandbox/configs/hosttools_defconfig
> new file mode 100644
> index 000000000000..72ec0fc462b2
> --- /dev/null
> +++ b/arch/sandbox/configs/hosttools_defconfig
> @@ -0,0 +1,7 @@
> +CONFIG_IMD=y
> +CONFIG_COMPILE_HOST_TOOLS=y
> +CONFIG_ARCH_IMX_USBLOADER=y
> +CONFIG_MVEBU_HOSTTOOLS=y
> +CONFIG_MXS_HOSTTOOLS=y
> +CONFIG_OMAP3_USB_LOADER=y
> +CONFIG_OMAP4_HOSTTOOL_USBBOOT=y
> -- 
> 2.28.0
> 
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox


-- 
Best regards,
  Antony Pavlov

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

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

* Re: [PATCH v2] sandbox: add a minimal defconfig to build only the host tools
  2020-08-28  8:40   ` Antony Pavlov
@ 2020-08-28 10:26     ` Roland Hieber
  0 siblings, 0 replies; 5+ messages in thread
From: Roland Hieber @ 2020-08-28 10:26 UTC (permalink / raw)
  To: Antony Pavlov; +Cc: Barebox Mailing List

On Fri, Aug 28, 2020 at 11:40:58AM +0300, Antony Pavlov wrote:
> On Mon, 24 Aug 2020 00:39:27 +0200
> Roland Hieber <rhi@pengutronix.de> wrote:
> 
> Hi!
> 
> > For distro packaging, make it possible to build all host tools in one go
> 
> Is there any stuff for Debian packaging?
> 
> There is u-boot-tools package for Debian distro.
> Alas there is no barebox-tools package still.

Current state is at <https://git.pengutronix.de/cgit/debian/barebox/>.
ITP bug is at <https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=900958>.

 - Roland

-- 
Roland Hieber, Pengutronix e.K.          | r.hieber@pengutronix.de     |
Steuerwalder Str. 21                     | https://www.pengutronix.de/ |
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] 5+ messages in thread

end of thread, other threads:[~2020-08-28 10:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-23 21:13 [PATCH] sandbox: add a minimal defconfig to build only the host tools Roland Hieber
2020-08-23 22:39 ` [PATCH v2] " Roland Hieber
2020-08-28  6:10   ` Sascha Hauer
2020-08-28  8:40   ` Antony Pavlov
2020-08-28 10:26     ` Roland Hieber

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