[flashrom] Re: Release preparations

2022-03-12 Thread Rosen Penev
On Sun, Mar 6, 2022 at 3:10 PM Nico Huber wrote: > > Hi folks, > > people often ask me about a potential next release and what is holding > me back. Long story short, I knew about some bad things in our master > branch that make a release impossible and I was very much afraid that > there could

[flashrom] Re: One build system to rule them all (Meson)

2020-10-31 Thread Rosen Penev
On Fri, Oct 30, 2020 at 2:13 PM Nico Huber wrote: > > On 29.10.20 00:10, Rosen Penev wrote: > > Comments from a user and from someone who recently transitioned the > > OpenWrt package to use meson instead of make > > > > On Wed, Oct 28, 2020 at 5:20 AM Nico Hube

[flashrom] Re: One build system to rule them all (Meson)

2020-10-30 Thread Rosen Penev
Comments from a user and from someone who recently transitioned the OpenWrt package to use meson instead of make On Wed, Oct 28, 2020 at 5:20 AM Nico Huber wrote: > > Hi Patrick, > > On 28.10.20 11:09, Patrick Georgi via flashrom wrote: > > I just pushed

[flashrom] Re: From AsRock Fatal1ty B350 Gaming ITX ac

2020-10-15 Thread Rosen Penev
On Thu, Oct 15, 2020 at 10:04 PM Erdem U.A. wrote: > > [root@Ryzen xxx]# flashrom --programmer=internal -r xxx.bin --chip > W25Q128.V > flashrom v1.2 on Linux 5.8.14-arch1-1 (x86_64) > flashrom is free software, get the source code at https://flashrom.org > > Using clock_gettime for delay loops

[flashrom] [PATCH 1/2] meson: add missing need_raw_access

2020-10-12 Thread Rosen Penev
Currently, when passing meson -Dconfig_rayer_spi=false , compilation fails as the proper headers and defines are not available. Added need_raw_access based on whichever files include hwaccess.h Signed-off-by: Rosen Penev --- meson.build | 16 1 file changed, 16 insertions

[flashrom] [PATCH 2/2] meson: add missing config_bitbang_spi variable

2020-10-12 Thread Rosen Penev
Fixes meson error: meson.build:304:3: ERROR: Unknown variable "config_bitbang_spi". Signed-off-by: Rosen Penev --- meson.build | 1 + meson_options.txt | 1 + 2 files changed, 2 insertions(+) diff --git a/meson.build b/meson.build index a756c8e..24dd3ce 100644 --- a/meson.b

[flashrom] [PATCH] hwaccess: use __asm__ as is done elsewhere

2020-10-12 Thread Rosen Penev
: "memory"); | ^~~ ../hwaccess.c:74:13: error: expected ')' before ':' token 74 | asm("eieio" : : : "memory"); Signed-off-by: Rosen Penev --- hwaccess.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hwaccess.c b/hwaccess.c index 48ccb34..2a39989