diff options
Diffstat (limited to 'env/remote.c')
-rw-r--r-- | env/remote.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/env/remote.c b/env/remote.c index e003e02fb9e..c221d55c4f7 100644 --- a/env/remote.c +++ b/env/remote.c @@ -56,3 +56,11 @@ void env_relocate_spec(void) env_import((char *)env_ptr, 1); #endif } + +U_BOOT_ENV_LOCATION(remote) = { + .location = ENVL_REMOTE, + .get_char = env_get_char_spec, + .load = env_relocate_spec, + .save = env_save_ptr(saveenv), + .init = env_init, +}; |