blob: b5ed9460231db84815c1f2ab0ac31aebb5e9d444 [file] [log] [blame]
Uwe Hermann2dc5f422006-11-20 20:32:35 +00001-------------------------------------------------------------------------------
Peter Stuge44dd3042009-04-20 12:34:30 +00002flashrom README
Uwe Hermann2dc5f422006-11-20 20:32:35 +00003-------------------------------------------------------------------------------
Ronald G. Minnich1e5003f2002-04-10 18:02:07 +00004
Carl-Daniel Hailfinger1ebf8452009-08-18 23:50:14 +00005flashrom is a utility for detecting, reading, writing, verifying and erasing
6flash chips. It is often used to flash BIOS/EFI/coreboot/firmware images
7in-system using a supported mainboard, but it also supports flashing of network
Uwe Hermannc7e8a0c2009-05-19 14:14:21 +00008cards (NICs), SATA controller cards, and other external devices which can
9program flash chips.
Uwe Hermanne74b9f82009-04-10 14:41:29 +000010
Stefan Tauner23e10b82016-01-23 16:16:49 +000011It supports a wide range of flash chips (most commonly found in SOIC8, DIP8,
12SOIC16, WSON8, PLCC32, DIP32, TSOP32, and TSOP40 packages), which use various
13protocols such as LPC, FWH, parallel flash, or SPI.
Uwe Hermann42eb17f2008-01-18 17:48:51 +000014
Stefan Tauner23e10b82016-01-23 16:16:49 +000015Do not use flashrom on laptops (yet)! The embedded controller (EC) present in
16many laptops might interact badly with any attempts to communicate with the
17flash chip and may brick your laptop.
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +000018
19Please make a backup of your flash chip before writing to it.
20
Stefan Reinauer009c51b2010-01-03 23:50:28 +000021Please see the flashrom(8) manpage.
22
Uwe Hermann2dc5f422006-11-20 20:32:35 +000023
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +000024Packaging
25---------
26
Nico Huber68917092017-11-13 20:12:58 +010027To package flashrom and remove dependencies on Git, either use
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +000028make export
29or
30make tarball
31
Nico Huber68917092017-11-13 20:12:58 +010032'make export' will export all flashrom files from the Git repository at
33revision HEAD into a directory named "$EXPORTDIR/flashrom-$RELEASENAME"
34and will additionally add a "versioninfo.inc" file in that directory to
35contain the Git revision of the exported tree and a date for the manual
36page.
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +000037
Nico Huber68917092017-11-13 20:12:58 +010038'make tarball' will simply tar up the result of make export and compress
39it with bzip2.
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +000040
Nico Huber68917092017-11-13 20:12:58 +010041The snapshot tarballs are the result of 'make tarball' and require no
42further processing.
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +000043
44
Uwe Hermannd1129ac2009-05-28 15:07:42 +000045Build Instructions
Stefan Reinauer06b2c4d2005-12-01 10:51:08 +000046------------------
47
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +000048To build flashrom you need to install the following software:
49
50 * pciutils+libpci (if you want support for mainboard or PCI device flashing)
James Lairdc60de0e2013-03-27 13:00:23 +000051 * libusb (if you want FT2232, Dediprog or USB-Blaster support)
52 * libftdi (if you want FT2232 or USB-Blaster support)
Stefan Reinauer06b2c4d2005-12-01 10:51:08 +000053
Idwer Vollering5e410de2009-05-03 23:33:05 +000054Linux et al:
Uwe Hermann87c07932009-05-05 16:15:46 +000055
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +000056 * pciutils / libpci
Uwe Hermann87c07932009-05-05 16:15:46 +000057 * pciutils-devel / pciutils-dev / libpci-dev
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +000058 * zlib-devel / zlib1g-dev (needed if libpci was compiled with libz support)
Stefan Reinauer06b2c4d2005-12-01 10:51:08 +000059
Idwer Vollering5e410de2009-05-03 23:33:05 +000060On FreeBSD, you need the following ports:
Idwer Vollering5e410de2009-05-03 23:33:05 +000061
Uwe Hermann87c07932009-05-05 16:15:46 +000062 * devel/gmake
63 * devel/libpci
Idwer Vollering5e410de2009-05-03 23:33:05 +000064
Carl-Daniel Hailfingerb63b0672010-07-02 17:12:50 +000065On OpenBSD, you need the following ports:
66
67 * devel/gmake
68 * sysutils/pciutils
69
Uwe Hermann87c07932009-05-05 16:15:46 +000070To compile on Linux, use:
Carl-Daniel Hailfinger9abf5292009-05-01 16:34:32 +000071
Uwe Hermann87c07932009-05-05 16:15:46 +000072 make
73
Stefan Tauner8d21ff12015-01-10 09:33:06 +000074To compile on FreeBSD, OpenBSD or DragonFly BSD, use:
Uwe Hermann87c07932009-05-05 16:15:46 +000075
76 gmake
77
Carl-Daniel Hailfinger10572fa2009-08-17 16:30:53 +000078To compile on Nexenta, use:
79
80 make
81
Uwe Hermann87c07932009-05-05 16:15:46 +000082To compile on Solaris, use:
83
Carl-Daniel Hailfinger10572fa2009-08-17 16:30:53 +000084 gmake LDFLAGS="-L$pathtolibpci" CC="gcc -I$pathtopciheaders" CFLAGS=-O2
Uwe Hermann87c07932009-05-05 16:15:46 +000085
Stefan Tauner8d21ff12015-01-10 09:33:06 +000086To compile on NetBSD (with pciutils, libftdi, libusb installed in /usr/pkg/), use:
Carl-Daniel Hailfingerb63b0672010-07-02 17:12:50 +000087
88 gmake
89
Carl-Daniel Hailfinger9abf5292009-05-01 16:34:32 +000090To compile and run on Darwin/Mac OS X:
Uwe Hermann87c07932009-05-05 16:15:46 +000091
Carl-Daniel Hailfingerf992c192010-10-06 23:16:10 +000092 Install DirectHW from coresystems GmbH.
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +000093 DirectHW is available at http://www.coreboot.org/DirectHW .
Carl-Daniel Hailfinger9abf5292009-05-01 16:34:32 +000094
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +000095To cross-compile on Linux for DOS:
96
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +000097 Get packages of the DJGPP cross compiler and install them:
98 djgpp-filesystem djgpp-gcc djgpp-cpp djgpp-runtime djgpp-binutils
99 As an alternative, the DJGPP web site offers packages for download as well:
Rudolf Marek25fde402017-12-29 16:30:49 +0100100 djcross-binutils-2.29.1-1ap.x86_64.rpm
101 djcross-gcc-7.2.0-1ap.x86_64.rpm
102 djcrx-2.05-5.x86_64.rpm
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000103 The cross toolchain packages for your distribution may have slightly different
104 names (look for packages named *djgpp*).
Stefan Tauner449abe22013-09-11 23:34:57 +0000105
Rudolf Marek25fde402017-12-29 16:30:49 +0100106 Alternatively, you could use a script to build it from scratch:
107 https://github.com/andrewwutw/build-djgpp
Stefan Tauner449abe22013-09-11 23:34:57 +0000108
Rudolf Marek25fde402017-12-29 16:30:49 +0100109 You will need the libpci and libgetopt library source trees and
110 their compiled static libraries and header files installed in some
111 directory say libpci-libgetopt/, which will be later specified with
112 LIBS_BASE parameter during flashrom compilation. Easiest way to
113 handle it is to put pciutils, libgetopt and flashrom directories
114 in one subdirectory. There will be an extra subdirectory libpci-libgetopt
115 created, which will contain compiled libpci and libgetopt.
116
117 Download pciutils 3.5.6 and apply http://flashrom.org/File:Pciutils-3.5.6.patch.gz
118 Compile pciutils, using following command line:
119
120 make ZLIB=no DNS=no HOST=i386-djgpp-djgpp CROSS_COMPILE=i586-pc-msdosdjgpp- \
121 PREFIX=/ DESTDIR=$PWD/../libpci-libgetopt \
122 STRIP="--strip-program=i586-pc-msdosdjgpp-strip -s" install install-lib
123
124 Download and compile with 'make' http://flashrom.org/File:Libgetopt.tar.gz
125
126 Copy the libgetopt.a to ../libpci-libgetopt/lib and
127 getopt.h to ../libpci-libgetopt/include
128
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000129 Enter the flashrom directory.
Rudolf Marek25fde402017-12-29 16:30:49 +0100130
131 make CC=i586-pc-msdosdjgpp-gcc STRIP=i586-pc-msdosdjgpp-strip LIBS_BASE=../libpci-libgetopt/ strip
132
133 If you like, you can compress the resulting executable with UPX:
134
135 upx -9 flashrom.exe
136
Stefan Tauner449abe22013-09-11 23:34:57 +0000137 To run flashrom.exe, download http://flashrom.org/File:Csdpmi7b.zip and
138 unpack CWSDPMI.EXE into the current directory or one in PATH.
Stefan Reinauer06b2c4d2005-12-01 10:51:08 +0000139
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000140To cross-compile on Linux for Windows:
141
142 Get packages of the MinGW cross compiler and install them:
143 mingw32-filesystem mingw32-cross-cpp mingw32-cross-binutils mingw32-cross-gcc
144 mingw32-runtime mingw32-headers
145 The cross toolchain packages for your distribution may have slightly different
146 names (look for packages named *mingw*).
147 PCI-based programmers (internal etc.) are not supported on Windows.
148 Run (change CC= and STRIP= settings where appropriate)
149 make CC=i686-w64-mingw32-gcc STRIP=i686-w64-mingw32-strip
150
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000151Processor architecture dependent features:
152
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000153 On non-x86 architectures a few programmers don't work (yet) because they
154 use port-based I/O which is not directly available on non-x86. Those
155 programmers will be disabled automatically if you run "make".
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000156
Stefan Tauner0be072c2016-03-13 15:16:30 +0000157Compiler quirks:
158
159If you are using clang and if you want to enable only one driver, you may hit an
160overzealous compiler warning from clang. Compile with "make WARNERROR=no" to
161force it to continue and enjoy.
162
Uwe Hermannd1129ac2009-05-28 15:07:42 +0000163Installation
164------------
165
166In order to install flashrom and the manpage into /usr/local, type:
167
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000168 make install
Uwe Hermannd1129ac2009-05-28 15:07:42 +0000169
170For installation in a different directory use DESTDIR, e.g. like this:
171
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000172 make DESTDIR=/usr install
173
174If you have insufficient permissions for the destination directory, use sudo
175by adding sudo in front of the commands above.
Uwe Hermannd1129ac2009-05-28 15:07:42 +0000176
177
Joerg Mayer7221d5f2009-08-24 13:24:52 +0000178Contact
Uwe Hermanne94dbf22009-05-22 13:18:38 +0000179-------
180
181The official flashrom website is:
182
Stefan Reinauer22ea8cd2009-07-30 13:32:26 +0000183 http://www.flashrom.org/
Uwe Hermannb6d28322006-12-04 08:15:47 +0000184
Joerg Mayer7221d5f2009-08-24 13:24:52 +0000185The IRC channel is
186
187 #flashrom at irc.freenode.net
188
Uwe Hermann4e3d0b32010-03-25 23:18:41 +0000189The mailing list address is
Joerg Mayer7221d5f2009-08-24 13:24:52 +0000190
191 flashrom@flashrom.org