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 "mtdids=nand0=orion_nand\0" \
17 "mtdparts=" CONFIG_MTDPARTS_DEFAULT \
18 "kernel=/boot/uImage\0" \
19 "bootargs_root=noinitrd ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs\0"
22 * Ethernet driver configuration
24 * This board has PCIe Wifi card, so allow Ethernet to be disabled
27 #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
28 #define CONFIG_PHY_BASE_ADR 11
29 #endif /* CONFIG_CMD_NET */
31 #endif /* _CONFIG_ICONNECT_H */