diff options
author | Damien Zammit <damien@zamaudio.com> | 2016-05-21 02:24:19 +1000 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-05-31 20:03:39 +0200 |
commit | e983f0cb4ba6bc86bdf75aa2d334cab36723eb02 (patch) | |
tree | e4d23fd2413607c0fc81e9b816c275e42a5177ff /src/drivers/net/Makefile.inc | |
parent | 2abd3f9e1ce054aef415d59c48dc5e763b2f613e (diff) | |
download | coreboot-e983f0cb4ba6bc86bdf75aa2d334cab36723eb02.tar.xz |
drivers/net/r8168: Add driver for realtek nic
One thing that is vital to this patch is the MAC address setting
in case the EEPROM/efuse is unconfigured.
Linux now recognises the default MAC address on GA-G41M-ES2L which
does rely on the default bios settings for the MAC address.
Change-Id: I32e070b545b4c6369686a7087b7ff838d00764e3
Signed-off-by: Damien Zammit <damien@zamaudio.com>
Reviewed-on: https://review.coreboot.org/14927
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/drivers/net/Makefile.inc')
-rw-r--r-- | src/drivers/net/Makefile.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/drivers/net/Makefile.inc b/src/drivers/net/Makefile.inc index 9b3008dd8b..e435d483e7 100644 --- a/src/drivers/net/Makefile.inc +++ b/src/drivers/net/Makefile.inc @@ -1,2 +1,3 @@ romstage-$(CONFIG_CONSOLE_NE2K) += ne2k.c ramstage-$(CONFIG_CONSOLE_NE2K) += ne2k.c +ramstage-$(CONFIG_REALTEK_8168_RESET) += r8168.c |