Uwe Hermann | 2dc5f42 | 2006-11-20 20:32:35 +0000 | [diff] [blame] | 1 | ------------------------------------------------------------------------------- |
Peter Stuge | 44dd304 | 2009-04-20 12:34:30 +0000 | [diff] [blame] | 2 | flashrom README |
Uwe Hermann | 2dc5f42 | 2006-11-20 20:32:35 +0000 | [diff] [blame] | 3 | ------------------------------------------------------------------------------- |
Ronald G. Minnich | 1e5003f | 2002-04-10 18:02:07 +0000 | [diff] [blame] | 4 | |
Carl-Daniel Hailfinger | 1ebf845 | 2009-08-18 23:50:14 +0000 | [diff] [blame] | 5 | flashrom is a utility for detecting, reading, writing, verifying and erasing |
| 6 | flash chips. It is often used to flash BIOS/EFI/coreboot/firmware images |
| 7 | in-system using a supported mainboard, but it also supports flashing of network |
Uwe Hermann | c7e8a0c | 2009-05-19 14:14:21 +0000 | [diff] [blame] | 8 | cards (NICs), SATA controller cards, and other external devices which can |
| 9 | program flash chips. |
Uwe Hermann | e74b9f8 | 2009-04-10 14:41:29 +0000 | [diff] [blame] | 10 | |
Stefan Tauner | 23e10b8 | 2016-01-23 16:16:49 +0000 | [diff] [blame] | 11 | It supports a wide range of flash chips (most commonly found in SOIC8, DIP8, |
| 12 | SOIC16, WSON8, PLCC32, DIP32, TSOP32, and TSOP40 packages), which use various |
| 13 | protocols such as LPC, FWH, parallel flash, or SPI. |
Uwe Hermann | 42eb17f | 2008-01-18 17:48:51 +0000 | [diff] [blame] | 14 | |
Stefan Tauner | 23e10b8 | 2016-01-23 16:16:49 +0000 | [diff] [blame] | 15 | Do not use flashrom on laptops (yet)! The embedded controller (EC) present in |
| 16 | many laptops might interact badly with any attempts to communicate with the |
| 17 | flash chip and may brick your laptop. |
Carl-Daniel Hailfinger | 2702376 | 2010-04-28 15:22:14 +0000 | [diff] [blame] | 18 | |
| 19 | Please make a backup of your flash chip before writing to it. |
| 20 | |
Stefan Reinauer | 009c51b | 2010-01-03 23:50:28 +0000 | [diff] [blame] | 21 | Please see the flashrom(8) manpage. |
| 22 | |
Uwe Hermann | 2dc5f42 | 2006-11-20 20:32:35 +0000 | [diff] [blame] | 23 | |
Carl-Daniel Hailfinger | a23041c | 2009-06-12 14:49:10 +0000 | [diff] [blame] | 24 | Packaging |
| 25 | --------- |
| 26 | |
Nico Huber | 6891709 | 2017-11-13 20:12:58 +0100 | [diff] [blame] | 27 | To package flashrom and remove dependencies on Git, either use |
Carl-Daniel Hailfinger | a23041c | 2009-06-12 14:49:10 +0000 | [diff] [blame] | 28 | make export |
| 29 | or |
| 30 | make tarball |
| 31 | |
Nico Huber | 6891709 | 2017-11-13 20:12:58 +0100 | [diff] [blame] | 32 | 'make export' will export all flashrom files from the Git repository at |
| 33 | revision HEAD into a directory named "$EXPORTDIR/flashrom-$RELEASENAME" |
| 34 | and will additionally add a "versioninfo.inc" file in that directory to |
| 35 | contain the Git revision of the exported tree and a date for the manual |
| 36 | page. |
Carl-Daniel Hailfinger | a23041c | 2009-06-12 14:49:10 +0000 | [diff] [blame] | 37 | |
Nico Huber | 6891709 | 2017-11-13 20:12:58 +0100 | [diff] [blame] | 38 | 'make tarball' will simply tar up the result of make export and compress |
| 39 | it with bzip2. |
Carl-Daniel Hailfinger | a23041c | 2009-06-12 14:49:10 +0000 | [diff] [blame] | 40 | |
Nico Huber | 6891709 | 2017-11-13 20:12:58 +0100 | [diff] [blame] | 41 | The snapshot tarballs are the result of 'make tarball' and require no |
| 42 | further processing. |
Carl-Daniel Hailfinger | a23041c | 2009-06-12 14:49:10 +0000 | [diff] [blame] | 43 | |
| 44 | |
Uwe Hermann | d1129ac | 2009-05-28 15:07:42 +0000 | [diff] [blame] | 45 | Build Instructions |
Stefan Reinauer | 06b2c4d | 2005-12-01 10:51:08 +0000 | [diff] [blame] | 46 | ------------------ |
| 47 | |
Carl-Daniel Hailfinger | 9e3a6c4 | 2010-10-08 12:40:09 +0000 | [diff] [blame] | 48 | To build flashrom you need to install the following software: |
| 49 | |
| 50 | * pciutils+libpci (if you want support for mainboard or PCI device flashing) |
James Laird | c60de0e | 2013-03-27 13:00:23 +0000 | [diff] [blame] | 51 | * libusb (if you want FT2232, Dediprog or USB-Blaster support) |
| 52 | * libftdi (if you want FT2232 or USB-Blaster support) |
Stefan Reinauer | 06b2c4d | 2005-12-01 10:51:08 +0000 | [diff] [blame] | 53 | |
Idwer Vollering | 5e410de | 2009-05-03 23:33:05 +0000 | [diff] [blame] | 54 | Linux et al: |
Uwe Hermann | 87c0793 | 2009-05-05 16:15:46 +0000 | [diff] [blame] | 55 | |
Carl-Daniel Hailfinger | a472b8b | 2009-10-03 17:08:02 +0000 | [diff] [blame] | 56 | * pciutils / libpci |
Uwe Hermann | 87c0793 | 2009-05-05 16:15:46 +0000 | [diff] [blame] | 57 | * pciutils-devel / pciutils-dev / libpci-dev |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 58 | * zlib-devel / zlib1g-dev (needed if libpci was compiled with libz support) |
Stefan Reinauer | 06b2c4d | 2005-12-01 10:51:08 +0000 | [diff] [blame] | 59 | |
Idwer Vollering | 5e410de | 2009-05-03 23:33:05 +0000 | [diff] [blame] | 60 | On FreeBSD, you need the following ports: |
Idwer Vollering | 5e410de | 2009-05-03 23:33:05 +0000 | [diff] [blame] | 61 | |
Uwe Hermann | 87c0793 | 2009-05-05 16:15:46 +0000 | [diff] [blame] | 62 | * devel/gmake |
| 63 | * devel/libpci |
Idwer Vollering | 5e410de | 2009-05-03 23:33:05 +0000 | [diff] [blame] | 64 | |
Carl-Daniel Hailfinger | b63b067 | 2010-07-02 17:12:50 +0000 | [diff] [blame] | 65 | On OpenBSD, you need the following ports: |
| 66 | |
| 67 | * devel/gmake |
| 68 | * sysutils/pciutils |
| 69 | |
Uwe Hermann | 87c0793 | 2009-05-05 16:15:46 +0000 | [diff] [blame] | 70 | To compile on Linux, use: |
Carl-Daniel Hailfinger | 9abf529 | 2009-05-01 16:34:32 +0000 | [diff] [blame] | 71 | |
Uwe Hermann | 87c0793 | 2009-05-05 16:15:46 +0000 | [diff] [blame] | 72 | make |
| 73 | |
Stefan Tauner | 8d21ff1 | 2015-01-10 09:33:06 +0000 | [diff] [blame] | 74 | To compile on FreeBSD, OpenBSD or DragonFly BSD, use: |
Uwe Hermann | 87c0793 | 2009-05-05 16:15:46 +0000 | [diff] [blame] | 75 | |
| 76 | gmake |
| 77 | |
Carl-Daniel Hailfinger | 10572fa | 2009-08-17 16:30:53 +0000 | [diff] [blame] | 78 | To compile on Nexenta, use: |
| 79 | |
| 80 | make |
| 81 | |
Uwe Hermann | 87c0793 | 2009-05-05 16:15:46 +0000 | [diff] [blame] | 82 | To compile on Solaris, use: |
| 83 | |
Carl-Daniel Hailfinger | 10572fa | 2009-08-17 16:30:53 +0000 | [diff] [blame] | 84 | gmake LDFLAGS="-L$pathtolibpci" CC="gcc -I$pathtopciheaders" CFLAGS=-O2 |
Uwe Hermann | 87c0793 | 2009-05-05 16:15:46 +0000 | [diff] [blame] | 85 | |
Stefan Tauner | 8d21ff1 | 2015-01-10 09:33:06 +0000 | [diff] [blame] | 86 | To compile on NetBSD (with pciutils, libftdi, libusb installed in /usr/pkg/), use: |
Carl-Daniel Hailfinger | b63b067 | 2010-07-02 17:12:50 +0000 | [diff] [blame] | 87 | |
| 88 | gmake |
| 89 | |
Carl-Daniel Hailfinger | 9abf529 | 2009-05-01 16:34:32 +0000 | [diff] [blame] | 90 | To compile and run on Darwin/Mac OS X: |
Uwe Hermann | 87c0793 | 2009-05-05 16:15:46 +0000 | [diff] [blame] | 91 | |
Carl-Daniel Hailfinger | f992c19 | 2010-10-06 23:16:10 +0000 | [diff] [blame] | 92 | Install DirectHW from coresystems GmbH. |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 93 | DirectHW is available at http://www.coreboot.org/DirectHW . |
Carl-Daniel Hailfinger | 9abf529 | 2009-05-01 16:34:32 +0000 | [diff] [blame] | 94 | |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 95 | To cross-compile on Linux for DOS: |
| 96 | |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 97 | 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: |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 100 | djcross-binutils-2.19.1-10ap.i386.rpm |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 101 | djcross-gcc-4.3.2-8ap.i686.rpm |
Idwer Vollering | 9c31b50 | 2010-10-05 13:31:12 +0000 | [diff] [blame] | 102 | djcrx-2.04pre_20090725-13ap.i386.rpm |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 103 | The cross toolchain packages for your distribution may have slightly different |
| 104 | names (look for packages named *djgpp*). |
Stefan Tauner | 449abe2 | 2013-09-11 23:34:57 +0000 | [diff] [blame] | 105 | |
| 106 | You will need the following library source trees containing their compiled |
| 107 | static libraries either in the parent directory of the flashrom source or |
Stefan Tauner | be62d3f | 2015-01-10 09:32:44 +0000 | [diff] [blame] | 108 | specify the base folder on compile time with the LIBS_BASE parameter. |
Stefan Tauner | 449abe2 | 2013-09-11 23:34:57 +0000 | [diff] [blame] | 109 | The default as described above is equal to calling |
Stefan Tauner | be62d3f | 2015-01-10 09:32:44 +0000 | [diff] [blame] | 110 | 'make djgpp-dos LIBS_BASE=..' |
Stefan Tauner | 449abe2 | 2013-09-11 23:34:57 +0000 | [diff] [blame] | 111 | |
| 112 | To get and build said libraries... |
| 113 | Download pciutils 3.1.5 and apply http://flashrom.org/File:Pciutils.patch.gz |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 114 | Compile pciutils, see README.DJGPP for instructions. |
Stefan Tauner | 449abe2 | 2013-09-11 23:34:57 +0000 | [diff] [blame] | 115 | Download and compile http://flashrom.org/File:Libgetopt.tar.gz |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 116 | Enter the flashrom directory. |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 117 | Run either (change settings where appropriate) |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 118 | make CC=i586-pc-msdosdjgpp-gcc STRIP=i586-pc-msdosdjgpp-strip |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 119 | or (above settings hardcoded) |
| 120 | make djgpp-dos |
Stefan Tauner | 449abe2 | 2013-09-11 23:34:57 +0000 | [diff] [blame] | 121 | To run flashrom.exe, download http://flashrom.org/File:Csdpmi7b.zip and |
| 122 | unpack CWSDPMI.EXE into the current directory or one in PATH. |
Stefan Reinauer | 06b2c4d | 2005-12-01 10:51:08 +0000 | [diff] [blame] | 123 | |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 124 | To cross-compile on Linux for Windows: |
| 125 | |
| 126 | Get packages of the MinGW cross compiler and install them: |
| 127 | mingw32-filesystem mingw32-cross-cpp mingw32-cross-binutils mingw32-cross-gcc |
| 128 | mingw32-runtime mingw32-headers |
| 129 | The cross toolchain packages for your distribution may have slightly different |
| 130 | names (look for packages named *mingw*). |
| 131 | PCI-based programmers (internal etc.) are not supported on Windows. |
| 132 | Run (change CC= and STRIP= settings where appropriate) |
| 133 | make CC=i686-w64-mingw32-gcc STRIP=i686-w64-mingw32-strip |
| 134 | |
Carl-Daniel Hailfinger | 9e3a6c4 | 2010-10-08 12:40:09 +0000 | [diff] [blame] | 135 | Processor architecture dependent features: |
| 136 | |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 137 | On non-x86 architectures a few programmers don't work (yet) because they |
| 138 | use port-based I/O which is not directly available on non-x86. Those |
| 139 | programmers will be disabled automatically if you run "make". |
Carl-Daniel Hailfinger | 9e3a6c4 | 2010-10-08 12:40:09 +0000 | [diff] [blame] | 140 | |
Stefan Tauner | 0be072c | 2016-03-13 15:16:30 +0000 | [diff] [blame] | 141 | Compiler quirks: |
| 142 | |
| 143 | If you are using clang and if you want to enable only one driver, you may hit an |
| 144 | overzealous compiler warning from clang. Compile with "make WARNERROR=no" to |
| 145 | force it to continue and enjoy. |
| 146 | |
Uwe Hermann | d1129ac | 2009-05-28 15:07:42 +0000 | [diff] [blame] | 147 | Installation |
| 148 | ------------ |
| 149 | |
| 150 | In order to install flashrom and the manpage into /usr/local, type: |
| 151 | |
Carl-Daniel Hailfinger | a472b8b | 2009-10-03 17:08:02 +0000 | [diff] [blame] | 152 | make install |
Uwe Hermann | d1129ac | 2009-05-28 15:07:42 +0000 | [diff] [blame] | 153 | |
| 154 | For installation in a different directory use DESTDIR, e.g. like this: |
| 155 | |
Carl-Daniel Hailfinger | a472b8b | 2009-10-03 17:08:02 +0000 | [diff] [blame] | 156 | make DESTDIR=/usr install |
| 157 | |
| 158 | If you have insufficient permissions for the destination directory, use sudo |
| 159 | by adding sudo in front of the commands above. |
Uwe Hermann | d1129ac | 2009-05-28 15:07:42 +0000 | [diff] [blame] | 160 | |
| 161 | |
Joerg Mayer | 7221d5f | 2009-08-24 13:24:52 +0000 | [diff] [blame] | 162 | Contact |
Uwe Hermann | e94dbf2 | 2009-05-22 13:18:38 +0000 | [diff] [blame] | 163 | ------- |
| 164 | |
| 165 | The official flashrom website is: |
| 166 | |
Stefan Reinauer | 22ea8cd | 2009-07-30 13:32:26 +0000 | [diff] [blame] | 167 | http://www.flashrom.org/ |
Uwe Hermann | b6d2832 | 2006-12-04 08:15:47 +0000 | [diff] [blame] | 168 | |
Joerg Mayer | 7221d5f | 2009-08-24 13:24:52 +0000 | [diff] [blame] | 169 | The IRC channel is |
| 170 | |
| 171 | #flashrom at irc.freenode.net |
| 172 | |
Uwe Hermann | 4e3d0b3 | 2010-03-25 23:18:41 +0000 | [diff] [blame] | 173 | The mailing list address is |
Joerg Mayer | 7221d5f | 2009-08-24 13:24:52 +0000 | [diff] [blame] | 174 | |
| 175 | flashrom@flashrom.org |