summaryrefslogtreecommitdiffstats
path: root/package/flashrom
Commit message (Collapse)AuthorAgeFilesLines
* flashrom: avoid download URL redirectBaruch Siach2018-03-221-1/+1
| | | | | | | | | | | | | | Use the https URL to avoid HTTP 308 redirect. Older wget releases treat it as a hard error. Fixes: http://autobuild.buildroot.net/results/ee6/ee66e5ead70e73f1d2dae1c5ba31ccf054fe15a7/ http://autobuild.buildroot.net/results/fb8/fb8509bf9cf03933e45355fd9a6c3fa53d33c44f/ http://autobuild.buildroot.net/results/0e1/0e196570207e459c3440d50cecf0032eee6edfc2/ Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* flashrom: bump to version 1.0Baruch Siach2018-03-132-3/+5
| | | | | | | | Add license file hash. Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* flashrom: fix static build with uClibcBaruch Siach2017-09-211-1/+2
| | | | | | | | | | | | Define HAVE_STRNLEN to avoid local strnlen() definition. Fixes: http://autobuild.buildroot.net/results/7dc/7dc4298e3a07c73e03f70205516d68a0f4c2d297/ http://autobuild.buildroot.net/results/e36/e362848eb45f6b8100131361e6e5faa546f0bbd8/ http://autobuild.buildroot.net/results/69e/69ef10ec710f418b4d10c1edb4f2ce2e49b522bf/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/flashrom: security bump to version 0.9.9Bernd Kuhls2017-05-283-29/+2
| | | | | | | | | | | | | Fixes buffer overflow: https://mail.coreboot.org/pipermail/flashrom/2016-March/014523.html Removed patch 0002-sys-io.h.patch, not needed anymore, hwaccess.h now contains a similar fix: elif defined(__linux__) || defined(__GLIBC__) Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/f*/Config.in: fix ordering of statementsAdam Duskett2017-04-291-2/+2
| | | | | | | | | | | | | The check-package script when ran gives warnings on ordering issues on all of these Config files. This patch cleans up all warnings related to the ordering in the Config files for packages starting with the letter f in the package directory. The appropriate ordering is: type, default, depends on, select, help See http://nightly.buildroot.org/#_config_files for more information. Signed-off-by: Adam Duskett <Adamduskett@outlook.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* boot, linux, package: use SPDX short identifier for GPLv2/GPLv2+Rahul Bedarkar2017-04-011-1/+1
| | | | | | | | | | | We want to use SPDX identifier for license strings as much as possible. SPDX short identifier for GPLv2/GPLv2+ is GPL-2.0/GPL-2.0+. This change is done by using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/\<GPLv2\>/GPL-2.0/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libftdi: remove BR2_ARCH_HAS_ATOMICS dependencyThomas Petazzoni2016-01-261-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | In commit 669ce8c75eb4c76cef81f279fb6b4f95d1472f51 ("libftdi: add dependency on atomic operations"), a dependency on BR2_ARCH_HAS_ATOMICS was added to the libftdi package to fix a build failure occuring on the ARC architecture due to the missing __sync_fetch_and_add_4 function: ../ftdipp/.libs/libftdipp.so: undefined reference to `__sync_fetch_and_add_4' However, today, even on the SPARC architecture that does not implement any of the __sync built-ins, libftdi and its C++ binding libftdipp build fine. ARC was also tested and builds fine. Therefore, we remove the BR2_ARCH_HAS_ATOMICS dependency from libftdi, and also from flashrom, in which it was only present due to the selection of libftdi. Note that anyway flashrom is available only for i386 and x86_64, both of which implement all the __sync built-ins. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* flashrom: fix typos in patch descriptionsPeter Korsgaard2015-10-282-2/+2
| | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/flashrom: fix build failures with muslYann E. MORIN2015-10-282-0/+52
| | | | | | | | | | | | | | flashroms makes a few assumptions on the headers to be included. It forgets that not everything is using glibc, so it is missing crucial includes. Fixes: http://autobuild.buildroot.org/results/2a3/2a3744007c630c267575a638ebcd83a4b97644f5/ http://autobuild.buildroot.org/results/3de/3de936d9be79e151e66af15193084d82a0f2c04a/ Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* flashrom: fix static buildBaruch Siach2015-09-301-2/+2
| | | | | | | | | | | | | | | Use $(TARGET_MAKE_ENV) to set $PATH so as to make sure Buildroot pkg-config is used. This corrects pkg-config output, and fixes static build. Fixes: http://autobuild.buildroot.net/results/b6e/b6e9f3cb7fa8019e631c14d9c832174125ec64ba/ http://autobuild.buildroot.net/results/30c/30c83f9c60ac5c7359ddabdc1f190ab12433ae92/ http://autobuild.buildroot.net/results/2a5/2a5da78dd5b2922796e3010e4a0477cb9f6355cb/ and more. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* flashrom: add hash fileThomas Petazzoni2015-05-211-0/+2
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* flashrom: improve Config.in descriptionThomas Petazzoni2015-05-211-1/+5
| | | | | | | Use some text from the flashrom website to provide a better Config.in help text about flashrom. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* flashrom: Bump to version 0.9.8florent valette2015-05-212-3/+12
| | | | | | | | | | | | | | | This version adds support for new Intel SoC (e.g. BayTrail) and spi over usb devices such as pickit2 and ftdi usb-spi. [Thomas: - add missing Config.in comment about the thread dependency - remove 'Requires PCIUtils libraries' from the Config.in help text, since flashrom now requires more than PCIUtils library, and we typically don't document such dependencies in Config.in help texts.] Signed-off-by: Florent Valette <florent.valette@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* flashrom: bump to version 0.9.7Gustavo Zacarias2014-07-121-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* flashrom: add licensing infoGustavo Zacarias2013-12-111-3/+4
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* Normalize separator size to 80Alexandre Belloni2013-06-061-2/+2
| | | | | Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Fix package headers to comply with coding styleAlexandre Belloni2013-06-061-0/+1
| | | | | Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* flashrom: bump to version 0.9.6.1Sven Neumann2012-08-171-1/+1
| | | | | Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* all packages: rename XXXTARGETS to xxx-packageArnout Vandecappelle (Essensium/Mind)2012-07-171-1/+1
| | | | | | | | | | | | | Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* flashrom: new packageThomas Petazzoni2012-06-112-0/+31
[Peter: Install into /usr/sbin] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
OpenPOWER on IntegriCloud