emulation-u-boot.dtsi 337 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (C) 2016 Google, Inc
  3. * Written by Simon Glass <sjg@chromium.org>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #include <u-boot.dtsi>
  8. #ifdef CONFIG_ROM_SIZE
  9. / {
  10. binman {
  11. #ifdef CONFIG_SPL
  12. u-boot-spl-with-ucode-ptr {
  13. optional-ucode;
  14. };
  15. #else
  16. u-boot-with-ucode-ptr {
  17. optional-ucode;
  18. };
  19. #endif
  20. };
  21. };
  22. #endif