u-boot.h 870 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * (C) Copyright 2002
  3. * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  4. * Marius Groeger <mgroeger@sysgo.de>
  5. *
  6. * (C) Copyright 2002
  7. * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  8. * Alex Zuepke <azu@sysgo.de>
  9. *
  10. * SPDX-License-Identifier: GPL-2.0+
  11. *
  12. ********************************************************************
  13. * NOTE: This header file defines an interface to U-Boot. Including
  14. * this (unmodified) header file in another file is considered normal
  15. * use of U-Boot, and does *not* fall under the heading of "derived
  16. * work".
  17. ********************************************************************
  18. */
  19. #ifndef _U_BOOT_H_
  20. #define _U_BOOT_H_ 1
  21. /* Use the generic board which requires a unified bd_info */
  22. #include <asm-generic/u-boot.h>
  23. /* For image.h:image_check_target_arch() */
  24. #define IH_ARCH_DEFAULT IH_ARCH_SANDBOX
  25. #endif /* _U_BOOT_H_ */