blob: 419dc615874d55b95ee3df107db7423964d05ae3 [file] [log] [blame]
Neil Armstrong4a327e82019-03-26 11:20:35 +01001/* 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 CONFIG_ENV_SECT_SIZE 0x10000
13#define CONFIG_ENV_OFFSET (-0x10000)
14
15#define BOOT_TARGET_DEVICES(func) \
16 func(ROMUSB, romusb, na) \
17 func(MMC, mmc, 0) \
18 BOOT_TARGET_DEVICES_USB(func) \
19 func(PXE, pxe, na) \
20 func(DHCP, dhcp, na)
21
22#include <configs/meson64.h>
23
24#endif /* __CONFIG_H */