Accepting request 891827 from home:musfay
- Update to version 1.0+git.20210507: * firehose: fix >4GB lseek file offsets * firehose: call firehose_reset() in ufs provisioning path * firehose: drain remaining logs in firehose_reset() * firehose: Make "start_sector" a string again * qdl: bail out with the sensible error if prog.mbn can not be opened * util: allow hexadecimal values for attr_as_unsigned (fix ufs provisioning) * firehose: Drain logs on write timeout * firehose: Rework firehose_read * fixup! program: Make start_sector unsigned in * usb: Drop ununsed eot argument to qdl_write OBS-URL: https://build.opensuse.org/request/show/891827 OBS-URL: https://build.opensuse.org/package/show/devel:tools/qdl?expand=0&rev=5
This commit is contained in:
parent
c474fae3c0
commit
3698b47e6b
8
_service
8
_service
@ -1,14 +1,14 @@
|
||||
<services>
|
||||
<service mode="localonly" name="tar_scm">
|
||||
<service mode="disabled" name="tar_scm">
|
||||
<param name="url">https://github.com/andersson/qdl.git</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
<param name="filename">qdl</param>
|
||||
<param name="versionformat">1.0+git.%cd</param>
|
||||
<param name="versionformat">1.0+git@TAG_OFFSET@.%cd</param>
|
||||
</service>
|
||||
<service mode="localonly" name="recompress">
|
||||
<service mode="disabled" name="recompress">
|
||||
<param name="file">*.tar</param>
|
||||
<param name="compression">xz</param>
|
||||
</service>
|
||||
<service mode="localonly" name="set_version"/>
|
||||
<service mode="disabled" name="set_version"/>
|
||||
</services>
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:211857cdaaccd7a0bf10546d75c278c11a2d3d9a295d8944e3b08fdcee9e6ba6
|
||||
size 11660
|
3
qdl-1.0+git49.20210507.tar.xz
Normal file
3
qdl-1.0+git49.20210507.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:307da5792dc8cdd2e2d40408e66b832b10d1f38ed174b1cbb956db38454fef28
|
||||
size 12192
|
17
qdl.changes
17
qdl.changes
@ -1,3 +1,18 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun May 09 12:00:17 UTC 2021 - musfay@protonmail.com
|
||||
|
||||
- Update to version 1.0+git.20210507:
|
||||
* firehose: fix >4GB lseek file offsets
|
||||
* firehose: call firehose_reset() in ufs provisioning path
|
||||
* firehose: drain remaining logs in firehose_reset()
|
||||
* firehose: Make "start_sector" a string again
|
||||
* qdl: bail out with the sensible error if prog.mbn can not be opened
|
||||
* util: allow hexadecimal values for attr_as_unsigned (fix ufs provisioning)
|
||||
* firehose: Drain logs on write timeout
|
||||
* firehose: Rework firehose_read
|
||||
* fixup! program: Make start_sector unsigned in
|
||||
* usb: Drop ununsed eot argument to qdl_write
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 27 19:26:54 UTC 2021 - Martin Pluskal <mpluskal@suse.com>
|
||||
|
||||
@ -6,7 +21,7 @@ Wed Jan 27 19:26:54 UTC 2021 - Martin Pluskal <mpluskal@suse.com>
|
||||
* use more of macros
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 27 18:01:59 UTC 2021 - Mustafa Çalışkan <musfay@protonmail.com>
|
||||
Wed Jan 27 18:01:59 UTC 2021 - musfay@protonmail.com
|
||||
|
||||
- Update to version 1.0+git.20190503:
|
||||
* qdl: Rework qdl_write to limit write sizes to out_maxpktsize
|
||||
|
8
qdl.spec
8
qdl.spec
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: qdl
|
||||
Version: 1.0+git.20190503
|
||||
Version: 1.0+git49.20210507
|
||||
Release: 0
|
||||
Summary: A tool for flash images to Qualcomm based systems
|
||||
License: BSD-3-Clause
|
||||
@ -25,7 +25,6 @@ Group: Development/Tools/Other
|
||||
URL: https://github.com/andersson/qdl
|
||||
#Source https://github.com/andersson/qdl/archive/master.tar.gz
|
||||
Source: %{name}-%{version}.tar.xz
|
||||
BuildRequires: gcc
|
||||
BuildRequires: libudev-devel
|
||||
BuildRequires: libxml2-devel
|
||||
|
||||
@ -37,8 +36,8 @@ loader and use this to flash images. Mostly Qualcomm based systems.
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%make_build CFLAGS="%{optflags} -fpie -g -I/usr/include/libxml2" \
|
||||
LDFLAGS="-lxml2 -lz -llzma -lm -ldl -ludev -pie"
|
||||
%make_build CFLAGS="%{optflags} %(xml2-config --cflags) -fpie -g" \
|
||||
LDFLAGS="%{optflags} %(xml2-config --libs) -ludev -pie"
|
||||
|
||||
%install
|
||||
%make_install prefix="%{_prefix}"
|
||||
@ -48,3 +47,4 @@ loader and use this to flash images. Mostly Qualcomm based systems.
|
||||
%{_bindir}/%{name}
|
||||
|
||||
%changelog
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user