@ -13,6 +13,9 @@
# chips and can also write to the embedded controller (EC) flash,
# which is a separate chip
, forChromebook ? false
, writeProtectSupport ? true
, overlappingFmapRegionSupport ? false
} :
stdenv . mkDerivation {
@ -36,13 +39,14 @@ stdenv.mkDerivation {
buildInputs = lib . optional ( ! stdenv . hostPlatform . isStatic ) libftdi1
++ [ libusb1 pciutils ] ;
patches =
if ! forChromebook then [
./0001-implement-wp-enable-disable-for-gigadevice-flash-chi.patch
./0002-layout.c-allow-nested-regions.patch
] else [
../../platform/kevin/chromebook-flashrom-kludges.patch
] ;
patches = lib . optionals ( writeProtectSupport && ! forChromebook ) [
# the forChromebook fork already has (Google's version of) the enableWriteProtect patches
./0001-implement-wp-enable-disable-for-gigadevice-flash-chi.patch
] ++ lib . optionals forChromebook [
../../platform/kevin/chromebook-flashrom-kludges.patch
] ++ lib . optionals overlappingFmapRegionSupport [
./0002-layout.c-allow-nested-regions.patch
] ;
makeFlags = if ! forChromebook then [
" P R E F I X = $ ( o u t ) " " l i b i n s t a l l "
@ -54,6 +58,10 @@ stdenv.mkDerivation {
mv $ out/sbin/flashrom $ out/sbin/flashrom-chromebook
'' ;
passthru = {
inherit forChromebook writeProtectSupport overlappingFmapRegionSupport ;
} ;
meta = with lib ; {
homepage = " h t t p s : / / w w w . f l a s h r o m . o r g " ;
description = " U t i l i t y f o r r e a d i n g , w r i t i n g , e r a s i n g a n d v e r i f y i n g f l a s h R O M c h i p s " ;