# HG changeset patch # User Hans-G?nter Theisgen # Date 1645792638 -3600 # Node ID e7a02c4f801d36c4d749494dad30976ae85f1ae2 # Parent 0d34e58f2fb5ac60b3d141e6de0c24e81858ac77 updated flashrom (1.1 -> 1.2) diff -r 0d34e58f2fb5 -r e7a02c4f801d flashrom/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/flashrom/description.txt Fri Feb 25 13:37:18 2022 +0100 @@ -0,0 +1,29 @@ +Flashrom is a utility for identifying, reading, writing, verifying +and erasing flash chips. +It is designed to flash BIOS, EFI, coreboot, firmware, and optionROM +images on mainboards, network, graphics, and storage controller cards, +and various other programmer devices. + +* Supports more than 476 flash chips, 291 chipsets, 500 mainboards, + 79 PCI devices, 17 USB devices and various parallel and serial + port-based programmers. +* Supports parallel, LPC, FWH and SPI flash interfaces and various + chip packages (DIP32, PLCC32, DIP8, SO8/SOIC8, TSOP32, TSOP40, + TSOP48, BGA and more) +* No physical access needed, root access is sufficient (not needed + for some programmers). +* No bootable floppy disk, bootable CD-ROM or other media needed. +* No keyboard or monitor needed. Simply reflash remotely via SSH. +* No instant reboot needed. Reflash your chip in a running system, + verify it, be happy. The new firmware will be present next time + you boot. +* Crossflashing and hotflashing is possible as long as the flash chips + are electrically and logically compatible (same protocol). + Great for recovery. +* Scriptability. Reflash a whole pool of identical machines at the same + time from the command line. It is recommended to check flashrom output + and error codes. +* Speed. flashrom is often much faster than most vendor flash tools. +* Portability. Supports DOS, Linux, FreeBSD (including Debian/kFreeBSD), + NetBSD, OpenBSD, DragonFlyBSD, anything Solaris-like, Mac OS X, and + other Unix-like OSes as well as GNU Hurd. diff -r 0d34e58f2fb5 -r e7a02c4f801d flashrom/receipt --- a/flashrom/receipt Fri Feb 25 11:25:23 2022 +0100 +++ b/flashrom/receipt Fri Feb 25 13:37:18 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="flashrom" -VERSION="1.1" +VERSION="1.2" CATEGORY="misc" SHORT_DESC="Utility for reading, writing, erasing and verifying flash ROM chips." MAINTAINER="pascal.bellard@slitaz.org" @@ -32,13 +32,12 @@ sed -i 's|uname -m|echo i486|' \ Makefile - make -j 1 PREFIX=/usr && - make PREFIX=/usr DESTDIR=$DESTDIR install + make PREFIX=/usr && + make install PREFIX=/usr DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/sbin $fs/usr + cook_copy_folders sbin }