libretech-ac.h 430 B

123456789101112131415161718192021
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Configuration for LibreTech AC
  4. *
  5. * Copyright (C) 2017 Baylibre, SAS
  6. * Author: Neil Armstrong <narmstrong@baylibre.com>
  7. */
  8. #ifndef __CONFIG_H
  9. #define __CONFIG_H
  10. #define BOOT_TARGET_DEVICES(func) \
  11. func(ROMUSB, romusb, na) \
  12. func(MMC, mmc, 0) \
  13. BOOT_TARGET_DEVICES_USB(func) \
  14. func(PXE, pxe, na) \
  15. func(DHCP, dhcp, na)
  16. #include <configs/meson64.h>
  17. #endif /* __CONFIG_H */