emulation-u-boot.dtsi 334 B

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