nowhere.c 461 B

1234567891011121314151617181920212223
  1. /*
  2. * (C) Copyright 2000-2010
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. *
  5. * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  6. * Andreas Heppel <aheppel@sysgo.de>
  7. * SPDX-License-Identifier: GPL-2.0+
  8. */
  9. #include <common.h>
  10. #include <command.h>
  11. #include <environment.h>
  12. #include <linux/stddef.h>
  13. DECLARE_GLOBAL_DATA_PTR;
  14. env_t *env_ptr;
  15. U_BOOT_ENV_LOCATION(nowhere) = {
  16. .location = ENVL_NOWHERE,
  17. ENV_NAME("nowhere")
  18. };