Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/899ef7b84578b7cafadfd78488c2fd2aac93f636 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Added Am79C970A chip id to pcnet

Signed-off-by: Vlad Lungu <vlad@comsys.ro>
master
Vlad Lungu 18 years ago committed by Wolfgang Denk
parent 17c9de6bb3
commit 899ef7b845
  1. 3
      drivers/net/pcnet.c

@ -260,6 +260,9 @@ static int pcnet_probe(struct eth_device* dev, bd_t *bis, int dev_nr)
return -1;
chip_version = (chip_version >> 12) & 0xffff;
switch (chip_version) {
case 0x2621:
chipname = "PCnet/PCI II 79C970A"; /* PCI */
break;
#ifdef CONFIG_PCNET_79C973
case 0x2625:
chipname = "PCnet/FAST III 79C973"; /* PCI */

Loading…
Cancel
Save