mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] Fix build if MULTI_ENV_HANDLING is disabled
@ 2010-04-26 11:43 Ivo Clarysse
  2010-04-28 10:53 ` Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Ivo Clarysse @ 2010-04-26 11:43 UTC (permalink / raw)
  To: barebox, s.hauer


Signed-off-by: Ivo Clarysse <ivo.clarysse@gmail.com>
---
diff --git a/commands/loadenv.c b/commands/loadenv.c
index cb66bb4..b233343 100644
--- a/commands/loadenv.c
+++ b/commands/loadenv.c
@@ -33,9 +33,9 @@ static int do_loadenv(struct command *cmdtp, int argc, char *argv[])
 {
 	char *dirname;
 	int rc = 0;
-	int i = 0;
 	char file[9 + 5];	/* '/dev/env.....' */
 #ifdef CONFIG_MULTI_ENV_HANDLING
+	int i = 0;
 	struct stat file_info;
 #endif

@@ -64,7 +64,7 @@ static int do_loadenv(struct command *cmdtp, int argc, char *argv[])
 	}
 #else
 	sprintf(file, "/dev/env0");
-	rc = envfs_load(file, dirname);
+	rc = envfs_load(file, dirname, NULL);
 #endif

 	return rc ? 1 : 0;
diff --git a/commands/saveenv.c b/commands/saveenv.c
index efc89bd..a56c296 100644
--- a/commands/saveenv.c
+++ b/commands/saveenv.c
@@ -65,9 +65,9 @@ static int do_saveenv(struct command *cmdtp, int argc, char *argv[])
 {
 	int ret = 0;
 	char *dirname;
-	int i = 0;
 	char file[9 + 5];
 #ifdef CONFIG_MULTI_ENV_HANDLING
+	int i = 0;
 	struct stat file_info;
 #endif

diff --git a/common/startup.c b/common/startup.c
index 2d63ce8..b8ae29a 100644
--- a/common/startup.c
+++ b/common/startup.c
@@ -184,7 +184,7 @@ out:
 #else /* MULTI_ENV_HANDLING */
 static int init_envfs_load(void)
 {
-	if (envfs_load("/dev/env0", "/env")) {
+	if (envfs_load("/dev/env0", "/env", NULL)) {
 #ifdef CONFIG_DEFAULT_ENVIRONMENT
 		printf("no valid environment found. "
 			"Using default environment\n");

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

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

* Re: [PATCH] Fix build if MULTI_ENV_HANDLING is disabled
  2010-04-26 11:43 [PATCH] Fix build if MULTI_ENV_HANDLING is disabled Ivo Clarysse
@ 2010-04-28 10:53 ` Sascha Hauer
  0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2010-04-28 10:53 UTC (permalink / raw)
  To: Ivo Clarysse; +Cc: barebox

Hi Ivo,

Thanks for testing and patching. I just had a closer look to the
multienv patches and decided to drop them from next for now as they are
not bisectable. I asked Fu to rework them.

Sascha

On Mon, Apr 26, 2010 at 01:43:11PM +0200, Ivo Clarysse wrote:
> 
> Signed-off-by: Ivo Clarysse <ivo.clarysse@gmail.com>
> ---
> diff --git a/commands/loadenv.c b/commands/loadenv.c
> index cb66bb4..b233343 100644
> --- a/commands/loadenv.c
> +++ b/commands/loadenv.c
> @@ -33,9 +33,9 @@ static int do_loadenv(struct command *cmdtp, int argc, char *argv[])
>  {
>  	char *dirname;
>  	int rc = 0;
> -	int i = 0;
>  	char file[9 + 5];	/* '/dev/env.....' */
>  #ifdef CONFIG_MULTI_ENV_HANDLING
> +	int i = 0;
>  	struct stat file_info;
>  #endif
> 
> @@ -64,7 +64,7 @@ static int do_loadenv(struct command *cmdtp, int argc, char *argv[])
>  	}
>  #else
>  	sprintf(file, "/dev/env0");
> -	rc = envfs_load(file, dirname);
> +	rc = envfs_load(file, dirname, NULL);
>  #endif
> 
>  	return rc ? 1 : 0;
> diff --git a/commands/saveenv.c b/commands/saveenv.c
> index efc89bd..a56c296 100644
> --- a/commands/saveenv.c
> +++ b/commands/saveenv.c
> @@ -65,9 +65,9 @@ static int do_saveenv(struct command *cmdtp, int argc, char *argv[])
>  {
>  	int ret = 0;
>  	char *dirname;
> -	int i = 0;
>  	char file[9 + 5];
>  #ifdef CONFIG_MULTI_ENV_HANDLING
> +	int i = 0;
>  	struct stat file_info;
>  #endif
> 
> diff --git a/common/startup.c b/common/startup.c
> index 2d63ce8..b8ae29a 100644
> --- a/common/startup.c
> +++ b/common/startup.c
> @@ -184,7 +184,7 @@ out:
>  #else /* MULTI_ENV_HANDLING */
>  static int init_envfs_load(void)
>  {
> -	if (envfs_load("/dev/env0", "/env")) {
> +	if (envfs_load("/dev/env0", "/env", NULL)) {
>  #ifdef CONFIG_DEFAULT_ENVIRONMENT
>  		printf("no valid environment found. "
>  			"Using default environment\n");
> 

-- 
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] 2+ messages in thread

end of thread, other threads:[~2010-04-28 10:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-04-26 11:43 [PATCH] Fix build if MULTI_ENV_HANDLING is disabled Ivo Clarysse
2010-04-28 10:53 ` Sascha Hauer

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