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 
9 #ifndef __CONFIG_H
10 #define __CONFIG_H
11 
12 #define BOOT_TARGET_DEVICES(func) \
13 	func(ROMUSB, romusb, na)  \
14 	func(USB_DFU, usbdfu, na)  \
15 	func(MMC, mmc, 0) \
16 	BOOT_TARGET_DEVICES_USB(func) \
17 	func(PXE, pxe, na) \
18 	func(DHCP, dhcp, na)
19 
20 #include <configs/meson64.h>
21 
22 #endif /* __CONFIG_H */
23