Lines Matching full:environment
16 * The "environment" is stored as a list of '\0' terminated
22 * The environment is preceded by a 32 bit CRC over the data part.
170 unsigned char data[ENV_SIZE]; /* Environment data */
179 extern env_t environment;
205 /* Value for environment validity */
207 ENV_INVALID, /* No valid environment */
208 ENV_VALID, /* First or only environment is valid */
209 ENV_REDUND, /* Redundant environment is valid */
236 * get_char() - Read a character from the environment
247 * load() - Load the environment from storage
249 * This method is optional. If not provided, no environment will be
257 * save() - Save the environment to storage
266 * init() - Set up the initial pre-relocation environment
270 * @return 0 if OK, -ENOENT if no initial environment could be found,
276 /* Declare a new environment location driver */
298 /* Look up the variable from the default environment */
301 /* [re]set to the default environment */
304 /* [re]set to the board environment */
307 /* [re]set individual variables to their value in the default environment */
322 * env_driver_lookup_default() - Look up the default environment driver
329 * env_get_char() - Get a character from the early environment
339 * env_load() - Load the environment from storage
346 * env_save() - Save the environment to storage