1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (C) 2022 Tony Dinh <mibodhi@gmail.com>
4 * (C) Copyright 2009-2012
5 * Wojciech Dubowik <wojciech.dubowik@neratec.com>
6 * Luka Perkov <luka@openwrt.org>
9 #ifndef _CONFIG_ICONNECT_H
10 #define _CONFIG_ICONNECT_H
12 #include "mv-common.h"
14 #define CONFIG_EXTRA_ENV_SETTINGS \
15 "console=console=ttyS0,115200\0" \
16 "kernel=/boot/uImage\0" \
17 "bootargs_root=noinitrd ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs\0"
20 * Ethernet driver configuration
22 * This board has PCIe Wifi card, so allow Ethernet to be disabled
25 #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
26 #define CONFIG_PHY_BASE_ADR 11
27 #endif /* CONFIG_CMD_NET */
29 #endif /* _CONFIG_ICONNECT_H */