1 // SPDX-License-Identifier: GPL-2.0+ 2 /* 3 * (C) Copyright 2000-2010 4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 * 6 * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com> 7 * Andreas Heppel <aheppel@sysgo.de> 8 */ 9 10 #include <common.h> 11 #include <command.h> 12 #include <env.h> 13 #include <env_internal.h> 14 #include <linux/stddef.h> 15 16 DECLARE_GLOBAL_DATA_PTR; 17 18 /* 19 * Because we only ever have the default environment available we must mark 20 * it as invalid. 21 */ env_nowhere_init(void)22static int env_nowhere_init(void) 23 { 24 gd->env_addr = (ulong)&default_environment[0]; 25 gd->env_valid = ENV_INVALID; 26 27 return 0; 28 } 29 30 U_BOOT_ENV_LOCATION(nowhere) = { 31 .location = ENVL_NOWHERE, 32 .init = env_nowhere_init, 33 ENV_NAME("nowhere") 34 }; 35