forked from pool/u-boot
8bb7d3f247
- Enable new RPi3 B+ (bsc#1085262) - Fix network boot (bsc#1070775) - Patch queue updated from git://github.com/openSUSE/u-boot.git tumbleweed-2018.03 * Patches added: 0005-rpi3-Enable-lan78xx-driver.patch 0006-net-Only-access-network-devices-aft.patch 0007-rpi-Add-identifier-for-the-new-RPi3.patch 0008-efi_loader-Fix-network-DP-with-DM_E.patch OBS-URL: https://build.opensuse.org/request/show/587586 OBS-URL: https://build.opensuse.org/package/show/hardware:boot/u-boot?expand=0&rev=5
24 lines
747 B
Diff
24 lines
747 B
Diff
From e75d103c47d687ecc49cb522833084ebf5da04fd Mon Sep 17 00:00:00 2001
|
|
From: Alexander Graf <agraf@suse.de>
|
|
Date: Thu, 15 Mar 2018 09:54:10 +0100
|
|
Subject: [PATCH] rpi3: Enable lan78xx driver
|
|
|
|
The new Raspberry Pi B 3+ has a lan78xx device attached to it. Let's add
|
|
driver support in U-Boot for it.
|
|
|
|
Signed-off-by: Alexander Graf <agraf@suse.de>
|
|
---
|
|
configs/rpi_3_defconfig | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/configs/rpi_3_defconfig b/configs/rpi_3_defconfig
|
|
index ca55f8dc66..1ee04c68f8 100644
|
|
--- a/configs/rpi_3_defconfig
|
|
+++ b/configs/rpi_3_defconfig
|
|
@@ -36,3 +36,5 @@ CONFIG_SYS_WHITE_ON_BLACK=y
|
|
CONFIG_CONSOLE_SCROLL_LINES=10
|
|
CONFIG_PHYS_TO_BUS=y
|
|
CONFIG_OF_LIBFDT_OVERLAY=y
|
|
+CONFIG_PHYLIB=y
|
|
+CONFIG_USB_ETHER_LAN78XX=y
|