mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] Revert "startup: Load default environment earlier"
@ 2018-03-19  8:29 Sascha Hauer
  0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2018-03-19  8:29 UTC (permalink / raw)
  To: Barebox List

Several boards use defaultenv_append_directory() to append a board
specific envfs snippet during runtime. This only works when
defaultenv_append_directory() is called before defaultenv_load() is
exectuted. Since that was executed at the end of the start process
every initcall level could be used to append a env directory. With this
patch only initcall levels earlier than fsdevice_initcall work and
most boards do not cope with this.

Revert this patch until a better solution is found.

Reported-by: Alexander Kurz <akurz@blala.de>

This reverts commit 5b92cfceff38f3a6462a21cf6b69159ad0ae9744.
---
 common/startup.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/common/startup.c b/common/startup.c
index 8940674528..8553849cb3 100644
--- a/common/startup.c
+++ b/common/startup.c
@@ -67,9 +67,6 @@ static int mount_root(void)
 		mount("none", "pstore", "/pstore", NULL);
 	}
 
-	if (IS_ENABLED(CONFIG_DEFAULT_ENVIRONMENT))
-		defaultenv_load("/env", 0);
-
 	return 0;
 }
 fs_initcall(mount_root);
@@ -82,6 +79,9 @@ static int load_environment(void)
 
 	default_environment_path = default_environment_path_get();
 
+	if (IS_ENABLED(CONFIG_DEFAULT_ENVIRONMENT))
+		defaultenv_load("/env", 0);
+
 	envfs_load(default_environment_path, "/env", 0);
 	nvvar_load();
 
-- 
2.16.1


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

^ permalink raw reply	[flat|nested] 2+ messages in thread
* [PATCH 0/3] APBH DMA fixes for i.MX7
@ 2018-04-01  1:13 Andrey Smirnov
  2018-04-01  1:13 ` [PATCH] Revert "startup: Load default environment earlier" Andrey Smirnov
  0 siblings, 1 reply; 2+ messages in thread
From: Andrey Smirnov @ 2018-04-01  1:13 UTC (permalink / raw)
  To: barebox; +Cc: Andrey Smirnov

Hi everyone:

The following two patches are to fix a case of broken boot I
discovered when I built a mult-image build for i.MX6 and i.MX7 and
tried to boot it on my i.MX7 SabreSD board.

Let me know if anything needs changing.

Thanks,
Andrey Smirnov

Andrey Smirnov (3):
  clk: i.MX7: Port NAND clock setup code from Linux
  clk: Forward declare struct of_device_id in linux/clk.h
  dma: apbh: Enable clock as a part of probing

 drivers/clk/imx/clk-imx7.c |  5 +++--
 drivers/clk/imx/clk.h      |  7 +++++++
 drivers/dma/apbh_dma.c     | 13 +++++++++++++
 include/linux/clk.h        |  1 +
 4 files changed, 24 insertions(+), 2 deletions(-)

-- 
2.14.3


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

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

end of thread, other threads:[~2018-04-01  1:14 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-19  8:29 [PATCH] Revert "startup: Load default environment earlier" Sascha Hauer
2018-04-01  1:13 [PATCH 0/3] APBH DMA fixes for i.MX7 Andrey Smirnov
2018-04-01  1:13 ` [PATCH] Revert "startup: Load default environment earlier" Andrey Smirnov

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