mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH v1 0/2] ELF fixes
@ 2018-06-18  7:06 Oleksij Rempel
  2018-06-18  7:06 ` [PATCH v1 1/2] fixup! add basic ELF parser Oleksij Rempel
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Oleksij Rempel @ 2018-06-18  7:06 UTC (permalink / raw)
  To: barebox; +Cc: Oleksij Rempel

Since ELF support patches are not in master, I send them as fixups.
This should resolve Kconfig warning on other platforms.

Oleksij Rempel (2):
  fixup! add basic ELF parser
  fixup! MIPS: bootm: add ELF handler

 arch/mips/Kconfig | 1 +
 common/Kconfig    | 1 -
 2 files changed, 1 insertion(+), 1 deletion(-)

-- 
2.17.1


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

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

* [PATCH v1 1/2] fixup! add basic ELF parser
  2018-06-18  7:06 [PATCH v1 0/2] ELF fixes Oleksij Rempel
@ 2018-06-18  7:06 ` Oleksij Rempel
  2018-06-18  7:06 ` [PATCH v1 2/2] fixup! MIPS: bootm: add ELF handler Oleksij Rempel
  2018-06-18 20:53 ` [PATCH v1 0/2] ELF fixes Sascha Hauer
  2 siblings, 0 replies; 4+ messages in thread
From: Oleksij Rempel @ 2018-06-18  7:06 UTC (permalink / raw)
  To: barebox; +Cc: Oleksij Rempel

---
 common/Kconfig | 1 -
 1 file changed, 1 deletion(-)

diff --git a/common/Kconfig b/common/Kconfig
index 6f839ea57..4909c8232 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -552,7 +552,6 @@ config TIMESTAMP
 	  automatically enabled when you select CFG_CMD_DATE .
 
 menuconfig BOOTM
-	select ELF
 	select UIMAGE
 	default y if COMMAND_SUPPORT
 	bool "bootm support"
-- 
2.17.1


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

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

* [PATCH v1 2/2] fixup! MIPS: bootm: add ELF handler
  2018-06-18  7:06 [PATCH v1 0/2] ELF fixes Oleksij Rempel
  2018-06-18  7:06 ` [PATCH v1 1/2] fixup! add basic ELF parser Oleksij Rempel
@ 2018-06-18  7:06 ` Oleksij Rempel
  2018-06-18 20:53 ` [PATCH v1 0/2] ELF fixes Sascha Hauer
  2 siblings, 0 replies; 4+ messages in thread
From: Oleksij Rempel @ 2018-06-18  7:06 UTC (permalink / raw)
  To: barebox; +Cc: Oleksij Rempel

---
 arch/mips/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig
index 359f67883..9aedf9a77 100644
--- a/arch/mips/Kconfig
+++ b/arch/mips/Kconfig
@@ -7,6 +7,7 @@ config MIPS
 	select HAVE_CONFIGURABLE_MEMORY_LAYOUT
 	select HAVE_CONFIGURABLE_TEXT_BASE
 	select HAS_DMA
+	select ELF
 	default y
 
 config SYS_SUPPORTS_BIG_ENDIAN
-- 
2.17.1


_______________________________________________
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 v1 0/2] ELF fixes
  2018-06-18  7:06 [PATCH v1 0/2] ELF fixes Oleksij Rempel
  2018-06-18  7:06 ` [PATCH v1 1/2] fixup! add basic ELF parser Oleksij Rempel
  2018-06-18  7:06 ` [PATCH v1 2/2] fixup! MIPS: bootm: add ELF handler Oleksij Rempel
@ 2018-06-18 20:53 ` Sascha Hauer
  2 siblings, 0 replies; 4+ messages in thread
From: Sascha Hauer @ 2018-06-18 20:53 UTC (permalink / raw)
  To: Oleksij Rempel; +Cc: barebox

On Mon, Jun 18, 2018 at 09:06:15AM +0200, Oleksij Rempel wrote:
> Since ELF support patches are not in master, I send them as fixups.
> This should resolve Kconfig warning on other platforms.
> 
> Oleksij Rempel (2):
>   fixup! add basic ELF parser
>   fixup! MIPS: bootm: add ELF handler

Applied, thanks

Sascha

> 
>  arch/mips/Kconfig | 1 +
>  common/Kconfig    | 1 -
>  2 files changed, 1 insertion(+), 1 deletion(-)
> 
> -- 
> 2.17.1
> 
> 
> _______________________________________________
> 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:[~2018-06-18 20:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-18  7:06 [PATCH v1 0/2] ELF fixes Oleksij Rempel
2018-06-18  7:06 ` [PATCH v1 1/2] fixup! add basic ELF parser Oleksij Rempel
2018-06-18  7:06 ` [PATCH v1 2/2] fixup! MIPS: bootm: add ELF handler Oleksij Rempel
2018-06-18 20:53 ` [PATCH v1 0/2] ELF fixes Sascha Hauer

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