diff options
author | Vladimir Zapolskiy | 2016-11-28 00:15:23 +0200 |
---|---|---|
committer | Tom Rini | 2016-12-02 21:32:45 -0500 |
commit | 40166c8d1b3eea4d2f15bf7c274bded2a2036def (patch) | |
tree | b1de3e326f0f5c62f48c3c995a119be672d9ed2e /configs | |
parent | 765270472285665fbb01735cd74ce2ba6232493f (diff) |
r2dplus: select rtl8139 driver in defconfig
CONFIG_RTL8139 was moved to a board defconfig by a commit 86e9dc86b1a2
("net: Move CONFIG_RTL8139 to Kconfig"), however it was done
incorrectly due to a missing CONFIG_NETDEVICES selection, thus
virtually it was just a removal of the driver compilation.
As an unlucky consequence the option was completely removed by a purge
commit adad96e60d0e ("configs: Re-sync HUSH options"), restore the
driver inclusion back.
Signed-off-by: Vladimir Zapolskiy <vz@mleia.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/r2dplus_defconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configs/r2dplus_defconfig b/configs/r2dplus_defconfig index f4dc68e38bd..2637723b0c7 100644 --- a/configs/r2dplus_defconfig +++ b/configs/r2dplus_defconfig @@ -5,5 +5,7 @@ CONFIG_BOOTDELAY=-1 CONFIG_CMD_PING=y CONFIG_CMD_CACHE=y CONFIG_CMD_EXT2=y +CONFIG_NETDEVICES=y +CONFIG_RTL8139=y CONFIG_PCI=y CONFIG_USE_PRIVATE_LIBGCC=y |