mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-10 00:04:06 -09:00
For change log, see: https://github.com/raspberrypi/pico-sdk/releases/tag/2.3.0 Fixes CVE-2026-25833 (via mbedtls udpate in pico-sdk) Fixes CVE-2026-25834 (via mbedtls udpate in pico-sdk) Fixes CVE-2026-25835 (via mbedtls udpate in pico-sdk) Signed-off-by: Sebastian Michel <sebastian.michel@oss.othermo.de> [Julien: reword commit log] Signed-off-by: Julien Olivain <ju.o@free.fr>
20 lines
637 B
Makefile
20 lines
637 B
Makefile
################################################################################
|
|
#
|
|
# picotool
|
|
#
|
|
################################################################################
|
|
|
|
PICOTOOL_VERSION = 2.3.0
|
|
PICOTOOL_SITE = $(call github,raspberrypi,picotool,$(PICOTOOL_VERSION))
|
|
PICOTOOL_LICENSE = BSD-3-Clause
|
|
PICOTOOL_LICENSE_FILES = LICENSE.TXT
|
|
|
|
PICOTOOL_CONF_OPTS = -DPICO_SDK_PATH=$(STAGING_DIR)/usr/share/pico-sdk
|
|
PICOTOOL_DEPENDENCIES = libusb pico-sdk
|
|
|
|
HOST_PICOTOOL_CONF_OPTS = -DPICO_SDK_PATH=$(HOST_DIR)/share/pico-sdk
|
|
HOST_PICOTOOL_DEPENDENCIES = host-libusb host-pico-sdk
|
|
|
|
$(eval $(cmake-package))
|
|
$(eval $(host-cmake-package))
|