diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2008-06-27 16:28:34 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2008-06-27 16:28:34 +0000 |
commit | a1dd9142c67a6651a1ea7884aa11ba41b597a1bf (patch) | |
tree | 1a3608d02b65ab205d5d23ef50b66aaf47cafc16 /util/flashrom/flashrom.c | |
parent | 20e0599e69785d8aefc97a09cc06468298f241d6 (diff) | |
download | coreboot-a1dd9142c67a6651a1ea7884aa11ba41b597a1bf.tar.xz |
* ICH7 SPI support
* fix some variable names in ichspi.c (Offset -> offset)
* Dump ICH7 SPI bar with -V
* Improve error message in case IOPL goes wrong. (It might not even be an IOPL)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Peter Stuge <peter@stuge.se>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3393 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/flashrom/flashrom.c')
-rw-r--r-- | util/flashrom/flashrom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/flashrom/flashrom.c b/util/flashrom/flashrom.c index 2dc2de81a4..39ed19bc72 100644 --- a/util/flashrom/flashrom.c +++ b/util/flashrom/flashrom.c @@ -378,7 +378,7 @@ int main(int argc, char *argv[]) #else if (iopl(3) != 0) { #endif - fprintf(stderr, "ERROR: iopl failed: \"%s\"\n", + fprintf(stderr, "ERROR: Could not get IO privileges (%s).\nYou need to be root.\n", strerror(errno)); exit(1); } |