3 Commits

Author SHA256 Message Date
26a2b5bd84 Accepting request 1251986 from hardware
- Fix cmake installation path on 64-bit architectures
- Update to 2.1.1
  * Sped up the coprodis command which was very slow for large files on some platforms
  * Sped up the info command by caching data read from the device
- Update to 2.1.0
  * Added partition table; and otp permissions, whitelabel, contents and settings JSON schemas
  * Moved example json files into json folder, with schemas in json/schemas
  * All commands now require 0x before hexadecimal family IDs

OBS-URL: https://build.opensuse.org/request/show/1251986
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/picotool?expand=0&rev=12
2025-03-11 19:45:26 +00:00
97c1f3827d - Fix cmake installation path on 64-bit architectures
OBS-URL: https://build.opensuse.org/package/show/hardware/picotool?expand=0&rev=27
2025-03-11 09:08:37 +00:00
30a3b38021 - Update to 2.1.1
* Sped up the coprodis command which was very slow for large files on some platforms
  * Sped up the info command by caching data read from the device
- Update to 2.1.0
  * Added partition table; and otp permissions, whitelabel, contents and settings JSON schemas
  * Moved example json files into json folder, with schemas in json/schemas
  * All commands now require 0x before hexadecimal family IDs

OBS-URL: https://build.opensuse.org/package/show/hardware/picotool?expand=0&rev=26
2025-03-11 08:20:31 +00:00
6 changed files with 28 additions and 9 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:626db87779fa37f7f9c7cfe3e152f7e828fe19c486730af2e7c80836b6b57e1d
size 2345905

3
pico-sdk-2.1.1.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:179c5531e75ac7f82d0679e70b6e8881f871738dc0ef17baf3b4ff4679291c41
size 2437119

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9392c4a31f16b80b70f861c37a029701d3212e212840daa097c8a3720282ce65
size 637989

3
picotool-2.1.1.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:19200c6dc4be5acd6fb53de3d7f35c826af596c18879d56f214b795300100260
size 530728

View File

@@ -1,3 +1,20 @@
-------------------------------------------------------------------
Tue Mar 11 09:04:24 UTC 2025 - Guillaume GARDET <guillaume.gardet@opensuse.org>
- Fix cmake installation path on 64-bit architectures
-------------------------------------------------------------------
Tue Mar 11 00:45:43 UTC 2025 - Dominik Heidler <dheidler@suse.de>
- Update to 2.1.1
* Sped up the coprodis command which was very slow for large files on some platforms
* Sped up the info command by caching data read from the device
- Update to 2.1.0
* Added partition table; and otp permissions, whitelabel, contents and settings JSON schemas
* Moved example json files into json folder, with schemas in json/schemas
* All commands now require 0x before hexadecimal family IDs
-------------------------------------------------------------------
Tue Oct 29 08:40:16 UTC 2024 - Michal Suchanek <msuchanek@suse.de>

View File

@@ -1,7 +1,7 @@
#
# spec file for package picotool
#
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2025 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -16,9 +16,9 @@
#
%define sdk_version 2.0.0
%define sdk_version 2.1.1
Name: picotool
Version: 2.0.0
Version: 2.1.1
Release: 0
Summary: Tool to inspect RP2040 binaries
License: BSD-3-Clause
@@ -35,6 +35,8 @@ Picotool is a tool for inspecting RP2040 binaries, and interacting with RP2040 d
%prep
%autosetup -a 1
#Revert https://github.com/raspberrypi/picotool/commit/6ad9c23
sed -i 's#set(INSTALL_CONFIGDIR lib/cmake/picotool)#set(INSTALL_CONFIGDIR ${CMAKE_INSTALL_LIBDIR}/cmake/picotool)#' CMakeLists.txt
%build
%cmake -DPICO_SDK_PATH="../pico-sdk-%{sdk_version}"