On 30.05.2010 19:42, Michael Karcher wrote:
> Also modifies nvidia_mcp_gpio_set to cope with multiple MCP55 chips on
> the same board, like on the Tyan S2915-E.
>
> Signed-off-by: Michael Karcher <flashrom(a)mkarcher.dialup.fu-berlin.de>
>
This was committed in r1025.
Regards,
Carl-Daniel
--
http://www.hailfinger.org/
The ECS P6IWP-Fe can be added to the list of out of the box boards.
Confirmed with two Intel 82802AB
But it killed a PMC Pm49FL004 as well as another 512KB FWH chip (I think
it was a SST).
-Anders
NetBSD needs libpciutils (which is called libpci on pretty much every
other platform and lives in the pciutils package) and apparently the
libpciutils on NetBSD needs the NetBSD-native libpci (no equivalent on
other platforms).
Thanks to Jonathan A. Kollasch for reporting.
Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006(a)gmx.net>
Index: flashrom-netbsd/Makefile
===================================================================
--- flashrom-netbsd/Makefile (Revision 1028)
+++ flashrom-netbsd/Makefile (Arbeitskopie)
@@ -220,8 +220,10 @@
FEATURE_CFLAGS += -D'NEED_PCI=1'
PROGRAMMER_OBJS += pcidev.o physmap.o hwaccess.o
ifeq ($(OS_ARCH), NetBSD)
-LIBS += -lpciutils # The libpci we want.
-LIBS += -l$(shell uname -p) # For (i386|x86_64)_iopl(2).
+# The libpci we want is called libpciutils on NetBSD and needs NetBSD libpci.
+LIBS += -lpciutils -lpci
+# For (i386|x86_64)_iopl(2).
+LIBS += -l$(shell uname -p)
else
ifeq ($(OS_ARCH), DOS)
# FIXME There needs to be a better way to do this
--
http://www.hailfinger.org/
Author: hailfinger
Date: Sat Jun 5 01:24:57 2010
New Revision: 1033
URL: http://flashrom.org/trac/coreboot/changeset/1033
Log:
NetBSD needs libpciutils (which is called libpci on pretty much every
other platform and lives in the pciutils package) and apparently the
libpciutils on NetBSD needs the NetBSD-native libpci (no equivalent on
other platforms).
Thanks to Jonathan A. Kollasch for reporting.
Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006(a)gmx.net>
Acked-by: Jonathan A. Kollasch <jakllsch(a)kollasch.net>
Modified:
trunk/Makefile
Modified: trunk/Makefile
==============================================================================
--- trunk/Makefile Sat Jun 5 01:20:21 2010 (r1032)
+++ trunk/Makefile Sat Jun 5 01:24:57 2010 (r1033)
@@ -220,8 +220,10 @@
FEATURE_CFLAGS += -D'NEED_PCI=1'
PROGRAMMER_OBJS += pcidev.o physmap.o hwaccess.o
ifeq ($(OS_ARCH), NetBSD)
-LIBS += -lpciutils # The libpci we want.
-LIBS += -l$(shell uname -p) # For (i386|x86_64)_iopl(2).
+# The libpci we want is called libpciutils on NetBSD and needs NetBSD libpci.
+LIBS += -lpciutils -lpci
+# For (i386|x86_64)_iopl(2).
+LIBS += -l$(shell uname -p)
else
ifeq ($(OS_ARCH), DOS)
# FIXME There needs to be a better way to do this
Here is the output of the requested information for the HP NetServer E
800, chipset not detected by flashrom.
BIOS and other onboard firmware (SCSI controller/s):
http://h20000.www2.hp.com/bizsupport/TechSupport/SoftwareIndex.jsp?lang=en&…
The name is the name of the machine, I don't know if the board has a
different identifier.
--
Andrew.