Merge branch 'next'
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
commit
da49312af9
@ -144,6 +144,7 @@ freescale_imx6qsabresd_defconfig: { extends: .defconfig }
|
||||
freescale_imx6sxsabresd_defconfig: { extends: .defconfig }
|
||||
freescale_imx7dsabresd_defconfig: { extends: .defconfig }
|
||||
freescale_imx8mqevk_defconfig: { extends: .defconfig }
|
||||
freescale_imx8qxpmek_defconfig: { extends: .defconfig }
|
||||
freescale_p1025twr_defconfig: { extends: .defconfig }
|
||||
freescale_t1040d4rdb_defconfig: { extends: .defconfig }
|
||||
friendlyarm_nanopi_a64_defconfig: { extends: .defconfig }
|
||||
|
19
DEVELOPERS
19
DEVELOPERS
@ -51,6 +51,7 @@ F: package/libsemanage/
|
||||
F: package/libsepol/
|
||||
F: package/libwebsockets/
|
||||
F: package/nginx-naxsi/
|
||||
F: package/openjdk-bin/
|
||||
F: package/php/
|
||||
F: package/policycoreutils/
|
||||
F: package/python3/
|
||||
@ -70,9 +71,13 @@ F: package/systemd/
|
||||
|
||||
N: Adrian Perez de Castro <aperez@igalia.com>
|
||||
F: package/brotli/
|
||||
F: package/cog/
|
||||
F: package/libepoxy/
|
||||
F: package/libwpe/
|
||||
F: package/webkitgtk/
|
||||
F: package/woff2/
|
||||
F: package/wpebackend-fdo/
|
||||
F: package/wpewebkit/
|
||||
|
||||
N: Adrien Gallouët <adrien@gallouet.fr>
|
||||
F: package/bird/
|
||||
@ -127,7 +132,10 @@ N: Anders Darander <anders@chargestorm.se>
|
||||
F: package/ktap/
|
||||
|
||||
N: André Hentschel <nerv@dawncrow.de>
|
||||
F: board/freescale/imx8qxpmek/
|
||||
F: configs/freescale_imx8qxpmek_defconfig
|
||||
F: package/azure-iot-sdk-c/
|
||||
F: package/freescale-imx/imx-sc-firmware/
|
||||
F: package/libkrb5/
|
||||
F: package/openal/
|
||||
F: package/p7zip/
|
||||
@ -686,6 +694,13 @@ F: package/mxsldr/
|
||||
N: Ernesto L. Williams Jr <realcontrols@gmail.com>
|
||||
F: package/szip/
|
||||
|
||||
N: Etienne Carriere <etienne.carriere@linaro.org>
|
||||
F: boot/optee-os/
|
||||
F: package/optee-benchmark/
|
||||
F: package/optee-client/
|
||||
F: package/optee-examples/
|
||||
F: package/optee-test/
|
||||
|
||||
N: Eugene Tarassov <eugene@largest.net>
|
||||
F: package/tcf-agent/
|
||||
|
||||
@ -822,12 +837,14 @@ F: configs/olimex_a20_olinuxino_*
|
||||
F: package/4th/
|
||||
F: package/botan/
|
||||
F: package/chipmunk/
|
||||
F: package/cog/
|
||||
F: package/dado/
|
||||
F: package/ficl/
|
||||
F: package/gdbm/
|
||||
F: package/libtomcrypt/
|
||||
F: package/libtommath/
|
||||
F: package/libump/
|
||||
F: package/libwpe/
|
||||
F: package/linenoise/
|
||||
F: package/ljlinenoise/
|
||||
F: package/lpeg/
|
||||
@ -846,6 +863,8 @@ F: package/qemu/
|
||||
F: package/sdl2_mixer/
|
||||
F: package/sdl2_net/
|
||||
F: package/tekui/
|
||||
F: package/wpebackend-fdo/
|
||||
F: package/wpewebkit/
|
||||
F: package/wsapi-fcgi/
|
||||
F: package/wsapi-xavante/
|
||||
F: utils/scancpan
|
||||
|
@ -23,7 +23,7 @@ image sdcard.img {
|
||||
partition imx-boot {
|
||||
in-partition-table = "no"
|
||||
image = "imx8-boot-sd.bin"
|
||||
offset = 33K
|
||||
offset = %IMXOFFSET%
|
||||
}
|
||||
|
||||
partition boot {
|
||||
|
@ -7,12 +7,22 @@ main ()
|
||||
echo "ERROR: couldn't find dtb: $UBOOT_DTB"
|
||||
exit 1
|
||||
fi
|
||||
cat ${BINARIES_DIR}/u-boot-spl.bin ${BINARIES_DIR}/lpddr4_pmu_train_fw.bin > ${BINARIES_DIR}/u-boot-spl-ddr.bin
|
||||
BL31=${BINARIES_DIR}/bl31.bin BL33=${BINARIES_DIR}/u-boot.bin ${HOST_DIR}/bin/mkimage_fit_atf.sh ${UBOOT_DTB} > ${BINARIES_DIR}/u-boot.its
|
||||
${HOST_DIR}/bin/mkimage -E -p 0x3000 -f ${BINARIES_DIR}/u-boot.its ${BINARIES_DIR}/u-boot.itb
|
||||
rm -f ${BINARIES_DIR}/u-boot.its
|
||||
|
||||
${HOST_DIR}/bin/mkimage_imx8 -fit -signed_hdmi ${BINARIES_DIR}/signed_hdmi_imx8m.bin -loader ${BINARIES_DIR}/u-boot-spl-ddr.bin 0x7E1000 -second_loader ${BINARIES_DIR}/u-boot.itb 0x40200000 0x60000 -out ${BINARIES_DIR}/imx8-boot-sd.bin
|
||||
if grep -Eq "^BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX8M=y$" ${BR2_CONFIG}; then
|
||||
cat ${BINARIES_DIR}/u-boot-spl.bin ${BINARIES_DIR}/lpddr4_pmu_train_fw.bin > ${BINARIES_DIR}/u-boot-spl-ddr.bin
|
||||
BL31=${BINARIES_DIR}/bl31.bin BL33=${BINARIES_DIR}/u-boot.bin ${HOST_DIR}/bin/mkimage_fit_atf.sh ${UBOOT_DTB} > ${BINARIES_DIR}/u-boot.its
|
||||
${HOST_DIR}/bin/mkimage -E -p 0x3000 -f ${BINARIES_DIR}/u-boot.its ${BINARIES_DIR}/u-boot.itb
|
||||
rm -f ${BINARIES_DIR}/u-boot.its
|
||||
|
||||
${HOST_DIR}/bin/mkimage_imx8 -fit -signed_hdmi ${BINARIES_DIR}/signed_hdmi_imx8m.bin -loader ${BINARIES_DIR}/u-boot-spl-ddr.bin 0x7E1000 -second_loader ${BINARIES_DIR}/u-boot.itb 0x40200000 0x60000 -out ${BINARIES_DIR}/imx8-boot-sd.bin
|
||||
else
|
||||
${HOST_DIR}/bin/mkimage_imx8 -commit > ${BINARIES_DIR}/mkimg.commit
|
||||
cat ${BINARIES_DIR}/u-boot.bin ${BINARIES_DIR}/mkimg.commit > ${BINARIES_DIR}/u-boot-hash.bin
|
||||
cp ${BINARIES_DIR}/bl31.bin ${BINARIES_DIR}/u-boot-atf.bin
|
||||
dd if=${BINARIES_DIR}/u-boot-hash.bin of=${BINARIES_DIR}/u-boot-atf.bin bs=1K seek=128
|
||||
|
||||
${HOST_DIR}/bin/mkimage_imx8 -soc QX -rev B0 -append ${BINARIES_DIR}/ahab-container.img -c -scfw ${BINARIES_DIR}/mx8qx-mek-scfw-tcm.bin -ap ${BINARIES_DIR}/u-boot-atf.bin a35 0x80000000 -out ${BINARIES_DIR}/imx8-boot-sd.bin
|
||||
fi
|
||||
|
||||
exit $?
|
||||
}
|
||||
|
@ -34,6 +34,8 @@ genimage_type()
|
||||
{
|
||||
if grep -Eq "^BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX8M=y$" ${BR2_CONFIG}; then
|
||||
echo "genimage.cfg.template_imx8"
|
||||
elif grep -Eq "^BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX8X=y$" ${BR2_CONFIG}; then
|
||||
echo "genimage.cfg.template_imx8"
|
||||
elif grep -Eq "^BR2_TARGET_UBOOT_SPL=y$" ${BR2_CONFIG}; then
|
||||
echo "genimage.cfg.template_spl"
|
||||
else
|
||||
@ -41,6 +43,15 @@ genimage_type()
|
||||
fi
|
||||
}
|
||||
|
||||
imx_offset()
|
||||
{
|
||||
if grep -Eq "^BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX8M=y$" ${BR2_CONFIG}; then
|
||||
echo "33K"
|
||||
else
|
||||
echo "32K"
|
||||
fi
|
||||
}
|
||||
|
||||
uboot_image()
|
||||
{
|
||||
if grep -Eq "^BR2_TARGET_UBOOT_FORMAT_DTB_IMX=y$" ${BR2_CONFIG}; then
|
||||
@ -53,11 +64,13 @@ uboot_image()
|
||||
main()
|
||||
{
|
||||
local FILES="$(dtb_list) $(linux_image)"
|
||||
local IMXOFFSET="$(imx_offset)"
|
||||
local UBOOTBIN="$(uboot_image)"
|
||||
local GENIMAGE_CFG="$(mktemp --suffix genimage.cfg)"
|
||||
local GENIMAGE_TMP="${BUILD_DIR}/genimage.tmp"
|
||||
|
||||
sed -e "s/%FILES%/${FILES}/" \
|
||||
-e "s/%IMXOFFSET%/${IMXOFFSET}/" \
|
||||
-e "s/%UBOOTBIN%/${UBOOTBIN}/" \
|
||||
board/freescale/common/imx/$(genimage_type) > ${GENIMAGE_CFG}
|
||||
|
||||
|
67
board/freescale/imx8qxpmek/readme.txt
Normal file
67
board/freescale/imx8qxpmek/readme.txt
Normal file
@ -0,0 +1,67 @@
|
||||
***************************
|
||||
Freescale i.MX8QXP MEK board
|
||||
***************************
|
||||
|
||||
This file documents the Buildroot support for the Freescale i.MX8QXP
|
||||
MEK board.
|
||||
|
||||
Build
|
||||
=====
|
||||
|
||||
First, configure Buildroot for the i.MX8QXP MEK board:
|
||||
|
||||
make freescale_imx8qxpmek_defconfig
|
||||
|
||||
Build all components:
|
||||
|
||||
make
|
||||
|
||||
You will find in output/images/ the following files:
|
||||
- ahab-container.img
|
||||
- bl31.bin
|
||||
- boot.vfat
|
||||
- fsl-imx8qxp-mek.dtb
|
||||
- Image
|
||||
- imx8-boot-sd.bin
|
||||
- mkimg.commit
|
||||
- mx8qx-mek-scfw-tcm.bin
|
||||
- mx8qx-val-scfw-tcm.bin
|
||||
- rootfs.ext2
|
||||
- rootfs.ext4
|
||||
- rootfs.tar
|
||||
- sdcard.img
|
||||
- u-boot-atf.bin
|
||||
- u-boot.bin
|
||||
- u-boot-hash.bin
|
||||
|
||||
Create a bootable SD card
|
||||
=========================
|
||||
|
||||
To determine the device associated to the SD card have a look in the
|
||||
/proc/partitions file:
|
||||
|
||||
cat /proc/partitions
|
||||
|
||||
Buildroot prepares a bootable "sdcard.img" image in the output/images/
|
||||
directory, ready to be dumped on a SD card. Launch the following
|
||||
command as root:
|
||||
|
||||
dd if=output/images/sdcard.img of=/dev/<your-sd-device>
|
||||
|
||||
*** WARNING! This will destroy all the card content. Use with care! ***
|
||||
|
||||
For details about the medium image layout, see the definition in
|
||||
board/freescale/common/imx/genimage.cfg.template_imx8.
|
||||
|
||||
Boot the i.MX8QXP MEK board
|
||||
==========================
|
||||
|
||||
To boot your newly created system:
|
||||
- insert the SD card in the SD slot of the board;
|
||||
- Configure the boot switch as follows:
|
||||
SW2: ON ON OFF OFF
|
||||
- put a micro USB cable into the Debug USB Port and connect using a terminal
|
||||
emulator at 115200 bps, 8n1;
|
||||
- power on the board.
|
||||
|
||||
Enjoy!
|
@ -13,6 +13,7 @@ source "boot/gummiboot/Config.in"
|
||||
source "boot/lpc32xxcdl/Config.in"
|
||||
source "boot/mv-ddr-marvell/Config.in"
|
||||
source "boot/mxs-bootlets/Config.in"
|
||||
source "boot/optee-os/Config.in"
|
||||
source "boot/riscv-pk/Config.in"
|
||||
source "boot/s500-bootloader/Config.in"
|
||||
source "boot/shim/Config.in"
|
||||
|
@ -12,7 +12,7 @@ choice
|
||||
Select the specific Barebox version you want to use
|
||||
|
||||
config BR2_TARGET_BAREBOX_LATEST_VERSION
|
||||
bool "2018.12.0"
|
||||
bool "2019.02.0"
|
||||
|
||||
config BR2_TARGET_BAREBOX_CUSTOM_VERSION
|
||||
bool "Custom version"
|
||||
@ -40,7 +40,7 @@ endif
|
||||
|
||||
config BR2_TARGET_BAREBOX_VERSION
|
||||
string
|
||||
default "2018.12.0" if BR2_TARGET_BAREBOX_LATEST_VERSION
|
||||
default "2019.02.0" if BR2_TARGET_BAREBOX_LATEST_VERSION
|
||||
default BR2_TARGET_BAREBOX_CUSTOM_VERSION_VALUE if BR2_TARGET_BAREBOX_CUSTOM_VERSION
|
||||
default "custom" if BR2_TARGET_BAREBOX_CUSTOM_TARBALL
|
||||
default BR2_TARGET_BAREBOX_CUSTOM_GIT_VERSION if BR2_TARGET_BAREBOX_CUSTOM_GIT
|
||||
|
@ -1,5 +1,5 @@
|
||||
# From https://www.barebox.org/download/barebox-2018.12.0.tar.bz2.md5
|
||||
md5 f84d7d3562055c80c3eedce0b14d4a0d barebox-2018.12.0.tar.bz2
|
||||
# From https://www.barebox.org/download/barebox-2019.02.0.tar.bz2.md5
|
||||
md5 b3c55967878c1e332c33502f39483ceb barebox-2019.02.0.tar.bz2
|
||||
|
||||
# Locally calculated
|
||||
sha256 e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 barebox-2018.12.0.tar.bz2
|
||||
sha256 f4fc67d5a2410c9d568e5fc1279ac8999e80d3d91c26631df8f3af8636c04212 barebox-2019.02.0.tar.bz2
|
||||
|
4
boot/optee-os/3.4.0/optee-os.hash
Normal file
4
boot/optee-os/3.4.0/optee-os.hash
Normal file
@ -0,0 +1,4 @@
|
||||
# From https://github.com/OP-TEE/optee_os/archive/3.4.0.tar.gz
|
||||
sha256 51d42ac7aa780ec8d8ee471eff689a29a7621aacace046722b1490b62ec2d481 optee-os-3.4.0.tar.gz
|
||||
# Locally computed
|
||||
sha256 fda8385993f112d7ca61b88b54ba5b4cbeec7e43a0f9b317d5186703c1985e8f LICENSE
|
102
boot/optee-os/Config.in
Normal file
102
boot/optee-os/Config.in
Normal file
@ -0,0 +1,102 @@
|
||||
config BR2_TARGET_OPTEE_OS
|
||||
bool "optee_os"
|
||||
depends on BR2_ARM_CPU_ARMV8A || BR2_ARM_CPU_ARMV7A
|
||||
help
|
||||
OP-TEE OS provides the secure world boot image and the trust
|
||||
application development kit of the OP-TEE project. OP-TEE OS
|
||||
also provides generic trusted application one can embedded
|
||||
into its system.
|
||||
|
||||
http://github.com/OP-TEE/optee_os
|
||||
|
||||
if BR2_TARGET_OPTEE_OS
|
||||
|
||||
choice
|
||||
prompt "OP-TEE OS version"
|
||||
default BR2_TARGET_OPTEE_OS_LATEST
|
||||
help
|
||||
Select the version of OP-TEE OS you want to use
|
||||
|
||||
config BR2_TARGET_OPTEE_OS_LATEST
|
||||
bool "3.4.0"
|
||||
help
|
||||
Use the latest release tag from the OP-TEE OS official Git
|
||||
repository.
|
||||
|
||||
config BR2_TARGET_OPTEE_OS_CUSTOM_GIT
|
||||
bool "Custom Git repository"
|
||||
help
|
||||
Use a custom version fetched from a Git repository.
|
||||
|
||||
endchoice
|
||||
|
||||
if BR2_TARGET_OPTEE_OS_CUSTOM_GIT
|
||||
|
||||
config BR2_TARGET_OPTEE_OS_CUSTOM_REPO_URL
|
||||
string "URL of custom repository"
|
||||
depends on BR2_TARGET_OPTEE_OS_CUSTOM_GIT
|
||||
help
|
||||
Specific location of the reference source tree Git
|
||||
repository.
|
||||
|
||||
config BR2_TARGET_OPTEE_OS_CUSTOM_REPO_VERSION
|
||||
string "Custom repository version"
|
||||
depends on BR2_TARGET_OPTEE_OS_CUSTOM_GIT
|
||||
help
|
||||
Revision to use in the typical format used by Git, i.e a
|
||||
SHA1 or a tag.
|
||||
|
||||
endif
|
||||
|
||||
config BR2_TARGET_OPTEE_OS_VERSION
|
||||
string
|
||||
default "3.4.0" if BR2_TARGET_OPTEE_OS_LATEST
|
||||
default BR2_TARGET_OPTEE_OS_CUSTOM_REPO_VERSION \
|
||||
if BR2_TARGET_OPTEE_OS_CUSTOM_GIT
|
||||
|
||||
config BR2_TARGET_OPTEE_OS_CORE
|
||||
bool "Build core"
|
||||
default y
|
||||
help
|
||||
This option will build and install the OP-TEE core
|
||||
boot images.
|
||||
|
||||
config BR2_TARGET_OPTEE_OS_SDK
|
||||
bool "Build TA devkit"
|
||||
default y
|
||||
help
|
||||
This option will build and install the OP-TEE development
|
||||
kit for building OP-TEE trusted application images. It is
|
||||
installed in the staging directory /lib/optee.
|
||||
|
||||
config BR2_TARGET_OPTEE_OS_SERVICES
|
||||
bool "Build service TAs"
|
||||
default y
|
||||
select BR2_TARGET_OPTEE_OS_CORE
|
||||
help
|
||||
This option installs the service trusted applications built
|
||||
from OP-TEE OS source tree. These are installed in the target
|
||||
/lib/optee_armtz directory as other trusted applications.
|
||||
At runtime OP-TEE OS can load trusted applications from this
|
||||
non-secure filesystem/directory into the secure world for
|
||||
execution.
|
||||
|
||||
config BR2_TARGET_OPTEE_OS_PLATFORM
|
||||
string "Target platform (mandatory)"
|
||||
help
|
||||
Value for the mandated PLATFORM build directive provided to
|
||||
OP-TEE OS.
|
||||
|
||||
config BR2_TARGET_OPTEE_OS_PLATFORM_FLAVOR
|
||||
string "Target platform flavor (optional)"
|
||||
help
|
||||
Value for the optional PLATFORM_FLAVOR build directive
|
||||
provided to OP-TEE OS.
|
||||
|
||||
config BR2_TARGET_OPTEE_OS_ADDITIONAL_VARIABLES
|
||||
string "Additional build variables"
|
||||
help
|
||||
Additional parameters for the OP-TEE OS build
|
||||
E.g. 'CFG_TEE_CORE_LOG_LEVEL=3 CFG_UNWIND=y'
|
||||
|
||||
endif # BR2_TARGET_OPTEE_OS
|
110
boot/optee-os/optee-os.mk
Normal file
110
boot/optee-os/optee-os.mk
Normal file
@ -0,0 +1,110 @@
|
||||
################################################################################
|
||||
#
|
||||
# optee-os
|
||||
#
|
||||
################################################################################
|
||||
|
||||
OPTEE_OS_VERSION = $(call qstrip,$(BR2_TARGET_OPTEE_OS_VERSION))
|
||||
OPTEE_OS_LICENSE = BSD-2-Clause
|
||||
OPTEE_OS_LICENSE_FILES = LICENSE
|
||||
|
||||
OPTEE_OS_INSTALL_STAGING = YES
|
||||
OPTEE_OS_INSTALL_IMAGES = YES
|
||||
|
||||
ifeq ($(BR2_TARGET_OPTEE_OS_CUSTOM_GIT),y)
|
||||
OPTEE_OS_SITE = $(call qstrip,$(BR2_TARGET_OPTEE_OS_CUSTOM_REPO_URL))
|
||||
OPTEE_OS_SITE_METHOD = git
|
||||
BR_NO_CHECK_HASH_FOR += $(OPTEE_OS_SOURCE)
|
||||
else
|
||||
OPTEE_OS_SITE = $(call github,OP-TEE,optee_os,$(OPTEE_OS_VERSION))
|
||||
endif
|
||||
|
||||
OPTEE_OS_DEPENDENCIES = host-openssl host-python-pycrypto
|
||||
|
||||
# On 64bit targets, OP-TEE OS can be built in 32bit mode, or
|
||||
# can be built in 64bit mode and support 32bit and 64bit
|
||||
# trusted applications. Since buildroot currently references
|
||||
# a single cross compiler, build exclusively in 32bit
|
||||
# or 64bit mode.
|
||||
OPTEE_OS_MAKE_OPTS = \
|
||||
CROSS_COMPILE="$(TARGET_CROSS)" \
|
||||
CROSS_COMPILE_core="$(TARGET_CROSS)" \
|
||||
CROSS_COMPILE_ta_arm64="$(TARGET_CROSS)" \
|
||||
CROSS_COMPILE_ta_arm32="$(TARGET_CROSS)"
|
||||
|
||||
ifeq ($(BR2_aarch64),y)
|
||||
OPTEE_OS_MAKE_OPTS += \
|
||||
CFG_ARM64_core=y \
|
||||
CFG_USER_TA_TARGETS=ta_arm64
|
||||
else
|
||||
OPTEE_OS_MAKE_OPTS += \
|
||||
CFG_ARM32_core=y
|
||||
endif
|
||||
|
||||
# Get mandatory PLAFORM and optional PLATFORM_FLAVOR and additional
|
||||
# variables
|
||||
OPTEE_OS_MAKE_OPTS += PLATFORM=$(call qstrip,$(BR2_TARGET_OPTEE_OS_PLATFORM))
|
||||
ifneq ($(call qstrip,$(BR2_TARGET_OPTEE_OS_PLATFORM_FLAVOR)),)
|
||||
OPTEE_OS_MAKE_OPTS += PLATFORM_FLAVOR=$(call qstrip,$(BR2_TARGET_OPTEE_OS_PLATFORM_FLAVOR))
|
||||
endif
|
||||
OPTEE_OS_MAKE_OPTS += $(call qstrip,$(BR2_TARGET_OPTEE_OS_ADDITIONAL_VARIABLES))
|
||||
|
||||
# Requests OP-TEE OS to build from subdirectory out/ of its sourcetree
|
||||
# root path otherwise the output directory path depends on the target
|
||||
# platform name.
|
||||
OPTEE_OS_BUILDDIR_OUT = out
|
||||
ifeq ($(BR2_aarch64),y)
|
||||
OPTEE_OS_LOCAL_SDK = $(OPTEE_OS_BUILDDIR_OUT)/export-ta_arm64
|
||||
endif
|
||||
ifeq ($(BR2_arm),y)
|
||||
OPTEE_OS_LOCAL_SDK = $(OPTEE_OS_BUILDDIR_OUT)/export-ta_arm32
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_TARGET_OPTEE_OS_CORE),y)
|
||||
define OPTEE_OS_BUILD_CORE
|
||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) O=$(OPTEE_OS_BUILDDIR_OUT) \
|
||||
$(TARGET_CONFIGURE_OPTS) $(OPTEE_OS_MAKE_OPTS) all
|
||||
endef
|
||||
define OPTEE_OS_INSTALL_IMAGES_CORE
|
||||
mkdir -p $(BINARIES_DIR)
|
||||
cp -dpf $(@D)/$(OPTEE_OS_BUILDDIR_OUT)/core/tee.bin $(BINARIES_DIR)
|
||||
cp -dpf $(@D)/$(OPTEE_OS_BUILDDIR_OUT)/core/tee-*_v2.bin $(BINARIES_DIR)
|
||||
endef
|
||||
endif # BR2_TARGET_OPTEE_OS_CORE
|
||||
|
||||
ifeq ($(BR2_TARGET_OPTEE_OS_SERVICES),y)
|
||||
define OPTEE_OS_INSTALL_IMAGES_SERVICES
|
||||
mkdir -p $(TARGET_DIR)/lib/optee_armtz
|
||||
$(INSTALL) -D -m 444 -t $(TARGET_DIR)/lib/optee_armtz \
|
||||
$(@D)/$(OPTEE_OS_BUILDDIR_OUT)/ta/*/*.ta
|
||||
endef
|
||||
endif # BR2_TARGET_OPTEE_OS_SERVICES
|
||||
|
||||
ifeq ($(BR2_TARGET_OPTEE_OS_SDK),y)
|
||||
define OPTEE_OS_BUILD_SDK
|
||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) O=$(OPTEE_OS_BUILDDIR_OUT) \
|
||||
$(TARGET_CONFIGURE_OPTS) $(OPTEE_OS_MAKE_OPTS) ta_dev_kit
|
||||
endef
|
||||
define OPTEE_OS_INSTALL_STAGING_CMDS
|
||||
mkdir -p $(STAGING_DIR)/lib/optee
|
||||
cp -ardpf $(@D)/$(OPTEE_OS_LOCAL_SDK) $(STAGING_DIR)/lib/optee
|
||||
endef
|
||||
endif # BR2_TARGET_OPTEE_OS_SDK
|
||||
|
||||
define OPTEE_OS_BUILD_CMDS
|
||||
$(OPTEE_OS_BUILD_CORE)
|
||||
$(OPTEE_OS_BUILD_SDK)
|
||||
endef
|
||||
|
||||
define OPTEE_OS_INSTALL_IMAGES_CMDS
|
||||
$(OPTEE_OS_INSTALL_IMAGES_CORE)
|
||||
$(OPTEE_OS_INSTALL_IMAGES_SERVICES)
|
||||
endef
|
||||
|
||||
ifeq ($(BR2_TARGET_OPTEE_OS)$(BR_BUILDING),yy)
|
||||
ifeq ($(call qstrip,$(BR2_TARGET_OPTEE_OS_PLATFORM)),)
|
||||
$(error No OP-TEE OS platform set. Check your BR2_TARGET_OPTEE_OS_PLATFORM setting)
|
||||
endif
|
||||
endif # BR2_TARGET_OPTEE_OS && BR2_BUILDING
|
||||
|
||||
$(eval $(generic-package))
|
@ -39,7 +39,7 @@ choice
|
||||
Select the specific U-Boot version you want to use
|
||||
|
||||
config BR2_TARGET_UBOOT_LATEST_VERSION
|
||||
bool "2018.09"
|
||||
bool "2019.01"
|
||||
|
||||
config BR2_TARGET_UBOOT_CUSTOM_VERSION
|
||||
bool "Custom version"
|
||||
@ -87,7 +87,7 @@ endif
|
||||
|
||||
config BR2_TARGET_UBOOT_VERSION
|
||||
string
|
||||
default "2018.09" if BR2_TARGET_UBOOT_LATEST_VERSION
|
||||
default "2019.01" if BR2_TARGET_UBOOT_LATEST_VERSION
|
||||
default BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE \
|
||||
if BR2_TARGET_UBOOT_CUSTOM_VERSION
|
||||
default "custom" if BR2_TARGET_UBOOT_CUSTOM_TARBALL
|
||||
|
@ -1,2 +1,2 @@
|
||||
# Locally computed:
|
||||
sha256 839bf23cfe8ce613a77e583a60375179d0ad324e92c82fbdd07bebf0fd142268 u-boot-2018.09.tar.bz2
|
||||
sha256 50bd7e5a466ab828914d080d5f6a432345b500e8fba1ad3b7b61e95e60d51c22 u-boot-2019.01.tar.bz2
|
||||
|
40
configs/freescale_imx8qxpmek_defconfig
Normal file
40
configs/freescale_imx8qxpmek_defconfig
Normal file
@ -0,0 +1,40 @@
|
||||
BR2_aarch64=y
|
||||
BR2_cortex_a35=y
|
||||
BR2_ARM_FPU_VFPV3=y
|
||||
BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_14=y
|
||||
BR2_TARGET_GENERIC_GETTY_PORT="ttyLP0"
|
||||
BR2_ROOTFS_POST_IMAGE_SCRIPT="board/freescale/common/imx/imx8-bootloader-prepare.sh board/freescale/common/imx/post-image.sh"
|
||||
BR2_ROOTFS_POST_SCRIPT_ARGS="${UBOOT_DIR}/arch/arm/dts/fsl-imx8qxp-mek.dtb"
|
||||
BR2_LINUX_KERNEL=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_GIT=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/linux-imx"
|
||||
BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="rel_imx_4.14.78_1.0.0_ga"
|
||||
BR2_LINUX_KERNEL_USE_ARCH_DEFAULT_CONFIG=y
|
||||
BR2_LINUX_KERNEL_DTS_SUPPORT=y
|
||||
BR2_LINUX_KERNEL_INTREE_DTS_NAME="freescale/fsl-imx8qxp-mek"
|
||||
BR2_PACKAGE_FREESCALE_IMX=y
|
||||
BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX8X=y
|
||||
BR2_PACKAGE_FIRMWARE_IMX=y
|
||||
BR2_PACKAGE_IMX_SC_FIRMWARE=y
|
||||
BR2_TARGET_ROOTFS_EXT2=y
|
||||
BR2_TARGET_ROOTFS_EXT2_4=y
|
||||
BR2_TARGET_ROOTFS_EXT2_SIZE="120M"
|
||||
BR2_TARGET_ARM_TRUSTED_FIRMWARE=y
|
||||
BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_GIT=y
|
||||
BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/imx-atf"
|
||||
BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_VERSION="rel_imx_4.14.78_1.0.0_ga"
|
||||
BR2_TARGET_ARM_TRUSTED_FIRMWARE_PLATFORM="imx8qxp"
|
||||
BR2_TARGET_ARM_TRUSTED_FIRMWARE_BL31=y
|
||||
BR2_TARGET_UBOOT=y
|
||||
BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
|
||||
BR2_TARGET_UBOOT_CUSTOM_GIT=y
|
||||
BR2_TARGET_UBOOT_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/uboot-imx"
|
||||
BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="rel_imx_4.14.78_1.0.0_ga"
|
||||
BR2_TARGET_UBOOT_BOARD_DEFCONFIG="imx8qxp_mek"
|
||||
BR2_TARGET_UBOOT_NEEDS_DTC=y
|
||||
BR2_PACKAGE_HOST_DOSFSTOOLS=y
|
||||
BR2_PACKAGE_HOST_GENIMAGE=y
|
||||
BR2_PACKAGE_HOST_IMX_MKIMAGE=y
|
||||
BR2_PACKAGE_HOST_MTOOLS=y
|
||||
BR2_PACKAGE_HOST_UBOOT_TOOLS=y
|
||||
BR2_PACKAGE_HOST_UBOOT_TOOLS_FIT_SUPPORT=y
|
@ -263,6 +263,7 @@ endmenu
|
||||
menu "Graphic libraries and applications (graphic/text)"
|
||||
|
||||
comment "Graphic applications"
|
||||
source "package/cog/Config.in"
|
||||
source "package/fswebcam/Config.in"
|
||||
source "package/ghostscript/Config.in"
|
||||
source "package/glmark2/Config.in"
|
||||
@ -1303,6 +1304,7 @@ menu "Graphics"
|
||||
source "package/libva-intel-driver/Config.in"
|
||||
source "package/libvdpau/Config.in"
|
||||
source "package/libvips/Config.in"
|
||||
source "package/libwpe/Config.in"
|
||||
source "package/menu-cache/Config.in"
|
||||
source "package/opencv/Config.in"
|
||||
source "package/opencv3/Config.in"
|
||||
@ -1321,6 +1323,8 @@ menu "Graphics"
|
||||
source "package/webkitgtk/Config.in"
|
||||
source "package/webp/Config.in"
|
||||
source "package/woff2/Config.in"
|
||||
source "package/wpebackend-fdo/Config.in"
|
||||
source "package/wpewebkit/Config.in"
|
||||
source "package/zbar/Config.in"
|
||||
source "package/zxing-cpp/Config.in"
|
||||
endmenu
|
||||
@ -2075,6 +2079,10 @@ endmenu
|
||||
|
||||
menu "Security"
|
||||
source "package/checkpolicy/Config.in"
|
||||
source "package/optee-benchmark/Config.in"
|
||||
source "package/optee-client/Config.in"
|
||||
source "package/optee-examples/Config.in"
|
||||
source "package/optee-test/Config.in"
|
||||
source "package/paxtest/Config.in"
|
||||
source "package/policycoreutils/Config.in"
|
||||
source "package/refpolicy/Config.in"
|
||||
|
27
package/cog/Config.in
Normal file
27
package/cog/Config.in
Normal file
@ -0,0 +1,27 @@
|
||||
comment "cog needs wpewebkit and a toolchain w/ threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_PACKAGE_WPEWEBKIT || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
config BR2_PACKAGE_COG
|
||||
bool "cog"
|
||||
depends on BR2_PACKAGE_WPEWEBKIT
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # dbus
|
||||
depends on BR2_USE_MMU # dbus
|
||||
select BR2_PACKAGE_DBUS
|
||||
help
|
||||
Single "window" launcher for the WebKit WPE port, and
|
||||
helper library for implementing WPE launcher. It does
|
||||
not provide any chrome, and is suitable to be used
|
||||
as a Web application container.
|
||||
|
||||
if BR2_PACKAGE_COG
|
||||
|
||||
config BR2_PACKAGE_COG_PROGRAMS_HOME_URI
|
||||
string "home uri"
|
||||
default "https://wpewebkit.org"
|
||||
help
|
||||
Default URI to open when "cog" is launched. If an empty
|
||||
string is used, there is no default and the URI to open
|
||||
must be always specified in the command line.
|
||||
|
||||
endif
|
5
package/cog/cog.hash
Normal file
5
package/cog/cog.hash
Normal file
@ -0,0 +1,5 @@
|
||||
# Locally generated
|
||||
sha256 a6abadb78395226bac2e1dd5467feab2cc8c493eab6894a09a51a8e072e38c06 cog-v0.2.0.tar.gz
|
||||
|
||||
# Hashes for license files:
|
||||
sha256 e6c42d93c68b292bcccf6d2ec3e13da85df90b718ba27c2c2a01053a9d009252 COPYING
|
17
package/cog/cog.mk
Normal file
17
package/cog/cog.mk
Normal file
@ -0,0 +1,17 @@
|
||||
################################################################################
|
||||
#
|
||||
# cog
|
||||
#
|
||||
################################################################################
|
||||
|
||||
COG_VERSION = v0.2.0
|
||||
COG_SITE = $(call github,Igalia,cog,$(COG_VERSION))
|
||||
COG_DEPENDENCIES = dbus wpewebkit wpebackend-fdo
|
||||
COG_LICENSE = MIT
|
||||
COG_LICENSE_FILES = COPYING
|
||||
COG_CONF_OPTS = \
|
||||
-DCOG_BUILD_PROGRAMS=ON \
|
||||
-DCOG_PLATFORM_FDO=ON \
|
||||
-DCOG_HOME_URI='$(call qstrip,$(BR2_PACKAGE_COG_PROGRAMS_HOME_URI))'
|
||||
|
||||
$(eval $(cmake-package))
|
@ -8,23 +8,25 @@ newer versions of the compiler or the C library, when new warnings
|
||||
are introduced.
|
||||
|
||||
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
|
||||
[Asaf: Modified for version 4.2.0]
|
||||
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
|
||||
---
|
||||
configure.ac | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index e92970a..2fd551a 100755
|
||||
index 6868a99b..9a941545 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -344,7 +344,7 @@ AC_C_BIGENDIAN
|
||||
|
||||
# These options are GNU compiler specific.
|
||||
if test "x$GCC" = "xyes"; then
|
||||
- CPPFLAGS="-pedantic -Werror -Wall -Wc++-compat ${CPPFLAGS}"
|
||||
+ CPPFLAGS="-pedantic -Wall -Wc++-compat ${CPPFLAGS}"
|
||||
fi
|
||||
|
||||
AM_CONDITIONAL(ENABLE_SHARED, test "x$enable_shared" = "xyes")
|
||||
@@ -952,7 +952,7 @@ AS_IF([test "x$enable_Werror" = "xyes" || test "x$enable_Werror" = "xauto"],
|
||||
])])
|
||||
AS_IF([test -n "$CPP"],[AS_IF([$CPP --version 2>&1 | grep 'Free Software Foundation' > /dev/null && test "x$GCC" = "xyes"],
|
||||
[AC_MSG_NOTICE([Enabling pedantic errors for GNU CPP preprocessor])
|
||||
- CPPFLAGS="$CPPFLAGS -pedantic -Werror -Wall -Wc++-compat"
|
||||
+ CPPFLAGS="$CPPFLAGS -pedantic -Wall -Wc++-compat"
|
||||
],
|
||||
[AC_MSG_NOTICE([Not enabling pedantic errors: preprocessor not supported by this recipe (not GNU CPP)])
|
||||
AS_IF([test "x$enable_Werror" = "xyes"], [AC_MSG_ERROR([--enable-Werror=yes was requested and can not be satisfied for CPP: $CPP])])
|
||||
--
|
||||
2.7.4
|
||||
2.19.1
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
# From https://github.com/zeromq/czmq/releases
|
||||
md5 6d3a6fdd25c2bb29897c53670dce97bf czmq-4.1.1.tar.gz
|
||||
sha1 629d34e8b5c1f2dd88689350f71f9917a8d76f23 czmq-4.1.1.tar.gz
|
||||
md5 7e09997db6ac3b25e8ed104053040722 czmq-4.2.0.tar.gz
|
||||
sha1 42165b3eede517708814e5a1b6972d8bde417f7a czmq-4.2.0.tar.gz
|
||||
# Locally calculated
|
||||
sha256 f00ff419881dc2a05d0686c8467cd89b4882677fc56f31c0e2cc81c134cbb0c0 czmq-4.1.1.tar.gz
|
||||
sha256 cfab29c2b3cc8a845749758a51e1dd5f5160c1ef57e2a41ea96e4c2dcc8feceb czmq-4.2.0.tar.gz
|
||||
sha256 1f256ecad192880510e84ad60474eab7589218784b9a50bc7ceee34c2b91f1d5 LICENCE
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
CZMQ_VERSION = 4.1.1
|
||||
CZMQ_VERSION = 4.2.0
|
||||
CZMQ_SITE = https://github.com/zeromq/czmq/releases/download/v$(CZMQ_VERSION)
|
||||
|
||||
# 0001-configure.ac-remove-Werror.patch touches configure.ac
|
||||
|
@ -1,2 +1,2 @@
|
||||
# Locally computed
|
||||
sha256 94f43f93285eb5cf8133061295bcdf72b6897bf5372879c2e4032a08d359af12 edid-decode-f56f329ed23a25d002352dedba1e8f092a47286f.tar.gz
|
||||
sha256 27fcf4c8693ec6fe020b18c78c70ddba9a8b3ea8c55fcfad2a38103128ec5e36 edid-decode-6def7bc83dfb0338632e06a8b14c93faa6af8879.tar.gz
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
EDID_DECODE_VERSION = f56f329ed23a25d002352dedba1e8f092a47286f
|
||||
EDID_DECODE_VERSION = 6def7bc83dfb0338632e06a8b14c93faa6af8879
|
||||
EDID_DECODE_SITE = git://linuxtv.org/edid-decode.git
|
||||
EDID_DECODE_LICENSE = MIT
|
||||
EDID_DECODE_LICENSE_FILES = edid-decode.c
|
||||
|
@ -1,3 +1,3 @@
|
||||
# Locally computed:
|
||||
sha256 5ca5491e4260cacae30f1a5786d109230db3f3a6e5a0eb45d0d0608293d247e3 flatbuffers-v1.9.0.tar.gz
|
||||
sha256 3714e3db8c51e43028e10ad7adffb9a36fc4aa5b1a363c2d0c4303dd1be59a7c flatbuffers-v1.10.0.tar.gz
|
||||
sha256 7ec9661a8afafab1eee3523d6f1a193eff76314a5ab10b4ce96aefd87621b0c3 LICENSE.txt
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
FLATBUFFERS_VERSION = v1.9.0
|
||||
FLATBUFFERS_VERSION = v1.10.0
|
||||
FLATBUFFERS_SITE = $(call github,google,flatbuffers,$(FLATBUFFERS_VERSION))
|
||||
FLATBUFFERS_LICENSE = Apache-2.0
|
||||
FLATBUFFERS_LICENSE_FILES = LICENSE.txt
|
||||
|
@ -42,6 +42,9 @@ config BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX7
|
||||
|
||||
config BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX8M
|
||||
bool "imx8m"
|
||||
|
||||
config BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX8X
|
||||
bool "imx8x"
|
||||
endchoice
|
||||
|
||||
config BR2_PACKAGE_FREESCALE_IMX_PLATFORM
|
||||
@ -87,6 +90,7 @@ source "package/freescale-imx/imx-vpu/Config.in"
|
||||
source "package/freescale-imx/imx-vpu-hantro/Config.in"
|
||||
source "package/freescale-imx/imx-vpuwrap/Config.in"
|
||||
source "package/freescale-imx/firmware-imx/Config.in"
|
||||
source "package/freescale-imx/imx-sc-firmware/Config.in"
|
||||
if (BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX51 || BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX53)
|
||||
source "package/freescale-imx/gpu-amd-bin-mx51/Config.in"
|
||||
source "package/freescale-imx/libz160/Config.in"
|
||||
|
@ -45,6 +45,14 @@ define FIRMWARE_IMX_INSTALL_IMAGES_CMDS
|
||||
cp $(@D)/firmware/hdmi/cadence/signed_hdmi_imx8m.bin \
|
||||
$(BINARIES_DIR)/signed_hdmi_imx8m.bin
|
||||
endef
|
||||
else ifeq ($(BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX8X),y)
|
||||
FIRMWARE_IMX_INSTALL_IMAGES = YES
|
||||
define FIRMWARE_IMX_INSTALL_IMAGES_CMDS
|
||||
# SECO firmware is needed when generating imx8-boot-sd.bin which
|
||||
# is done in post-image script.
|
||||
cp $(@D)/firmware/seco/ahab-container.img \
|
||||
$(BINARIES_DIR)/ahab-container.img
|
||||
endef
|
||||
else
|
||||
define FIRMWARE_IMX_INSTALL_TARGET_CMDS
|
||||
mkdir -p $(TARGET_DIR)/lib/firmware/imx
|
||||
|
8
package/freescale-imx/imx-sc-firmware/Config.in
Normal file
8
package/freescale-imx/imx-sc-firmware/Config.in
Normal file
@ -0,0 +1,8 @@
|
||||
config BR2_PACKAGE_IMX_SC_FIRMWARE
|
||||
bool "imx-sc-firmware"
|
||||
depends on BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX8X
|
||||
help
|
||||
System Control Unit Firmware blobs for the Freescale i.MX8 SoCs.
|
||||
|
||||
This library is provided by Freescale as-is and doesn't have
|
||||
an upstream.
|
27
package/freescale-imx/imx-sc-firmware/imx-sc-firmware.mk
Normal file
27
package/freescale-imx/imx-sc-firmware/imx-sc-firmware.mk
Normal file
@ -0,0 +1,27 @@
|
||||
################################################################################
|
||||
#
|
||||
# imx-sc-firmware
|
||||
#
|
||||
################################################################################
|
||||
|
||||
IMX_SC_FIRMWARE_VERSION = 1.0
|
||||
IMX_SC_FIRMWARE_SITE = $(FREESCALE_IMX_SITE)
|
||||
IMX_SC_FIRMWARE_SOURCE = imx-sc-firmware-$(IMX_SC_FIRMWARE_VERSION).bin
|
||||
|
||||
IMX_SC_FIRMWARE_LICENSE = NXP Semiconductor Software License Agreement
|
||||
IMX_SC_FIRMWARE_LICENSE_FILES = EULA COPYING
|
||||
IMX_SC_FIRMWARE_REDISTRIBUTE = NO
|
||||
|
||||
define IMX_SC_FIRMWARE_EXTRACT_CMDS
|
||||
$(call FREESCALE_IMX_EXTRACT_HELPER,$(IMX_SC_FIRMWARE_DL_DIR)/$(IMX_SC_FIRMWARE_SOURCE))
|
||||
endef
|
||||
|
||||
IMX_SC_FIRMWARE_INSTALL_IMAGES = YES
|
||||
define IMX_SC_FIRMWARE_INSTALL_IMAGES_CMDS
|
||||
# SCFW firmware is needed when generating imx8-boot-sd.bin which
|
||||
# is done in post-image script.
|
||||
cp $(@D)/mx8qx-mek-scfw-tcm.bin $(BINARIES_DIR)/mx8qx-mek-scfw-tcm.bin
|
||||
cp $(@D)/mx8qx-val-scfw-tcm.bin $(BINARIES_DIR)/mx8qx-val-scfw-tcm.bin
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
@ -1,2 +1,2 @@
|
||||
sha256 5e23afad4592d6af27ffd2cb3c826cf0ea1b5166a05ef1ae5c77fb4e465bb735 glorytun-0.0.99-mud.tar.gz
|
||||
sha256 bd418f8ef7d62f2c89e3aa1e5dc41c7d7a6212eb1cdb4d39a26a5bd333e1b4a3 LICENSE
|
||||
sha256 65adee2945f377ec41c1384745d5676c99768bba8fd4456755ee4c7d73915ede glorytun-0.1.0.tar.gz
|
||||
sha256 051ef5a4c3c8fe64f8641e0ed50b4cd35c64703d972130f9725c8fee7976f90b LICENSE
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
GLORYTUN_VERSION = 0.0.99-mud
|
||||
GLORYTUN_VERSION = 0.1.0
|
||||
GLORYTUN_SITE = https://github.com/angt/glorytun/releases/download/v$(GLORYTUN_VERSION)
|
||||
GLORYTUN_DEPENDENCIES = libsodium host-pkgconf
|
||||
GLORYTUN_LICENSE = BSD-2-clause
|
||||
|
@ -1,3 +1,3 @@
|
||||
# Locally computed
|
||||
sha256 e7c1b19923bb97ed456c78b63b3259b809ebc8e3967c6d086450370c67eedf06 7.0.7-39.tar.gz
|
||||
sha256 2318cc05bbd2c25c1b2d13af1aadccc45b9cf6f94757421ae59a3c8ea9064f1c LICENSE
|
||||
sha256 94866968a447f8f92a969bf5342d612d05a64c71fc75e63bb2d8ecf887dc7fa2 7.0.8-27.tar.gz
|
||||
sha256 5b47db932754743460eba7a226aea85b63e3408d3c7affb4d0117f70c9594ded LICENSE
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
IMAGEMAGICK_VERSION = 7.0.7-39
|
||||
IMAGEMAGICK_VERSION = 7.0.8-27
|
||||
IMAGEMAGICK_SOURCE = $(IMAGEMAGICK_VERSION).tar.gz
|
||||
IMAGEMAGICK_SITE = https://github.com/ImageMagick/ImageMagick/archive
|
||||
IMAGEMAGICK_LICENSE = Apache-2.0
|
||||
|
33
package/imx-mkimage/0003-Add-unused-fake-version.patch
Normal file
33
package/imx-mkimage/0003-Add-unused-fake-version.patch
Normal file
@ -0,0 +1,33 @@
|
||||
From e75feef80b51c9060e3702390040495312648ad2 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Andr=C3=A9=20Hentschel?= <nerv@dawncrow.de>
|
||||
Date: Mon, 25 Feb 2019 22:15:55 +0100
|
||||
Subject: [PATCH] Add unused fake version
|
||||
|
||||
The Makefile makes the assumption that the build process runs
|
||||
from a Git clone of the source code.
|
||||
We can safely add a fake version here, because the code to
|
||||
print it is broken anyway.
|
||||
|
||||
Signed-off-by: André Hentschel <nerv@dawncrow.de>
|
||||
---
|
||||
Makefile | 4 +---
|
||||
1 file changed, 1 insertion(+), 3 deletions(-)
|
||||
|
||||
diff --git a/Makefile b/Makefile
|
||||
index ccf42e8..6041574 100644
|
||||
--- a/Makefile
|
||||
+++ b/Makefile
|
||||
@@ -37,9 +37,7 @@ $(MKIMG): src/build_info.h $(SRCS)
|
||||
bin: $(MKIMG)
|
||||
|
||||
src/build_info.h:
|
||||
- @echo -n '#define MKIMAGE_COMMIT 0x' > src/build_info.h
|
||||
- @git rev-parse --short=8 HEAD >> src/build_info.h
|
||||
- @echo '' >> src/build_info.h
|
||||
+ @echo '#define MKIMAGE_COMMIT 0xdeadbeef' > src/build_info.h
|
||||
|
||||
help:
|
||||
@echo $(CURR_DIR)
|
||||
--
|
||||
2.17.1
|
||||
|
@ -1,3 +1,3 @@
|
||||
# Locally calculated
|
||||
sha256 bc79e11cfbde303e200287fa6624028c8ce5344f8a35ed179b3fe217d74155da imx-mkimage-rel_imx_4.9.51_8mq_ga.tar.gz
|
||||
sha256 d5d7afca6abef4fc6653a2f8b99545d62921a5ab8c44ff3481120232e2162dde imx-mkimage-rel_imx_4.14.78_1.0.0_ga.tar.gz
|
||||
sha256 231f7edcc7352d7734a96eef0b8030f77982678c516876fcb81e25b32d68564c iMX8dv/COPYING
|
||||
|
@ -4,22 +4,30 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
IMX_MKIMAGE_VERSION = rel_imx_4.9.51_8mq_ga
|
||||
IMX_MKIMAGE_VERSION = rel_imx_4.14.78_1.0.0_ga
|
||||
IMX_MKIMAGE_SITE = https://source.codeaurora.org/external/imx/imx-mkimage
|
||||
IMX_MKIMAGE_SITE_METHOD = git
|
||||
IMX_MKIMAGE_LICENSE = GPL-2.0+
|
||||
IMX_MKIMAGE_LICENSE_FILES = iMX8dv/COPYING
|
||||
HOST_IMX_MKIMAGE_DEPENDENCIES = host-zlib
|
||||
|
||||
ifeq ($(BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX8M),y)
|
||||
# i.MX8M needs a different binary
|
||||
define HOST_IMX_MKIMAGE_BUILD_CMDS
|
||||
# Currently this only supports iMX8M. When more hardware is available
|
||||
# this needs to be selectable based on iMX8-version (iMX8M,iMXQ etc).
|
||||
$(HOST_MAKE_ENV) $(MAKE) $(HOST_CONFIGURE_OPTS) -C $(@D)/iMX8M -f soc.mak mkimage_imx8
|
||||
endef
|
||||
|
||||
define HOST_IMX_MKIMAGE_INSTALL_CMDS
|
||||
$(INSTALL) -D -m 755 $(@D)/iMX8M/mkimage_imx8 $(HOST_DIR)/bin/mkimage_imx8
|
||||
$(INSTALL) -D -m 755 $(@D)/iMX8M/mkimage_fit_atf.sh $(HOST_DIR)/bin/mkimage_fit_atf.sh
|
||||
endef
|
||||
else
|
||||
# i.MX8 and i.MX8X
|
||||
define HOST_IMX_MKIMAGE_BUILD_CMDS
|
||||
$(HOST_MAKE_ENV) $(MAKE) $(HOST_CONFIGURE_OPTS) -C $(@D) MKIMG=mkimage_imx8 mkimage_imx8
|
||||
endef
|
||||
define HOST_IMX_MKIMAGE_INSTALL_CMDS
|
||||
$(INSTALL) -D -m 755 $(@D)/mkimage_imx8 $(HOST_DIR)/bin/mkimage_imx8
|
||||
endef
|
||||
endif
|
||||
|
||||
$(eval $(host-generic-package))
|
||||
|
@ -1,6 +1,6 @@
|
||||
# From https://sourceforge.net/projects/ipmiutil/files/
|
||||
md5 ee90387f8a14dea3f867167865c7c968 ipmiutil-3.1.2.tar.gz
|
||||
sha1 9453db110bffab3111d6ff4047243a34084e5878 ipmiutil-3.1.2.tar.gz
|
||||
md5 0d448d14726e2fda0eb9451fb2866a5c ipmiutil-3.1.3.tar.gz
|
||||
sha1 d20cb3194f4c5cb8c9fd64b3693d5b53dc9510d4 ipmiutil-3.1.3.tar.gz
|
||||
# Locally computed
|
||||
sha256 768053b3e3adfe1bf656e2848b2805ede87e429c10d282929a7c4ceeebc24703 ipmiutil-3.1.2.tar.gz
|
||||
sha256 b80303b6f05cbe48e728dd925fef201e9604a90cd3fc9c8af113367e8d6dbe57 ipmiutil-3.1.3.tar.gz
|
||||
sha256 7e0ec8238aa1431e95a4950032a4483fe33fec3fac348eaade5856cdc5ae3e39 COPYING
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
IPMIUTIL_VERSION = 3.1.2
|
||||
IPMIUTIL_VERSION = 3.1.3
|
||||
IPMIUTIL_SITE = https://sourceforge.net/projects/ipmiutil/files
|
||||
IPMIUTIL_LICENSE = BSD-3-Clause
|
||||
IPMIUTIL_LICENSE_FILES = COPYING
|
||||
|
@ -2,7 +2,7 @@ config BR2_PACKAGE_KEXEC
|
||||
bool "kexec"
|
||||
depends on BR2_i386 || BR2_x86_64 || BR2_arm || BR2_armeb || \
|
||||
BR2_mips || BR2_mips64 || BR2_mipsel || BR2_mips64el || \
|
||||
BR2_powerpc || BR2_sh4 || BR2_sh4a || BR2_aarch64
|
||||
BR2_powerpc || BR2_powerpc64le || BR2_sh4 || BR2_sh4a || BR2_aarch64
|
||||
help
|
||||
Kexec is a user space utility for loading another kernel
|
||||
and asking the currently running kernel to do something with
|
||||
|
@ -10,10 +10,17 @@ LIBCPPRESTSDK_LICENSE = MIT
|
||||
LIBCPPRESTSDK_LICENSE_FILES = license.txt
|
||||
LIBCPPRESTSDK_SUBDIR = Release
|
||||
LIBCPPRESTSDK_DEPENDENCIES += host-pkgconf boost openssl zlib
|
||||
LIBCPPRESTSDK_CONF_OPTS = -DWERROR=OFF -DCPPREST_EXCLUDE_WEBSOCKETS=ON -DBUILD_SAMPLES=OFF
|
||||
LIBCPPRESTSDK_CONF_OPTS = -DWERROR=OFF -DBUILD_SAMPLES=OFF
|
||||
|
||||
ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y)
|
||||
LIBCPPRESTSDK_CONF_OPTS += -DCMAKE_CXX_FLAGS="$(TARGET_CXXFLAGS) -latomic"
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_WEBSOCKETPP),y)
|
||||
LIBCPPRESTSDK_DEPENDENCIES += websocketpp
|
||||
LIBCPPRESTSDK_CONF_OPTS += -DCPPREST_EXCLUDE_WEBSOCKETS=OFF
|
||||
else
|
||||
LIBCPPRESTSDK_CONF_OPTS += -DCPPREST_EXCLUDE_WEBSOCKETS=ON
|
||||
endif
|
||||
|
||||
$(eval $(cmake-package))
|
||||
|
@ -1,4 +1,4 @@
|
||||
From 57383dc900e76e65ce5e5dc95f776e086100344d Mon Sep 17 00:00:00 2001
|
||||
From 3656db7fd23d166238cb8816c0d097095911b3fc Mon Sep 17 00:00:00 2001
|
||||
From: Peter Seiderer <ps.report@gmx.net>
|
||||
Date: Sat, 12 Jan 2019 10:22:38 +0100
|
||||
Subject: [PATCH] meson.build: enable CPP include check only in case CPP
|
||||
@ -8,22 +8,27 @@ Drop hard meson C++/CPP dependency, only needed for the build-time
|
||||
header inclusion test, build the test only in case C++/CPP compiler
|
||||
is available.
|
||||
|
||||
Upstream: https://gitlab.freedesktop.org/libinput/libinput/commit/4516ba977c1e22d01da4cc50a8ebffa5d11d73f1
|
||||
|
||||
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
|
||||
[Rebased on 1.12.6, add upstream link]
|
||||
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
|
||||
---
|
||||
---
|
||||
meson.build | 16 +++++++++-------
|
||||
1 file changed, 9 insertions(+), 7 deletions(-)
|
||||
|
||||
diff --git a/meson.build b/meson.build
|
||||
index a9c7c185..8183822e 100644
|
||||
index 8127c674..86960d84 100644
|
||||
--- a/meson.build
|
||||
+++ b/meson.build
|
||||
@@ -1,4 +1,4 @@
|
||||
-project('libinput', 'c', 'cpp',
|
||||
+project('libinput', 'c',
|
||||
version : '1.12.5',
|
||||
version : '1.12.6',
|
||||
license : 'MIT/Expat',
|
||||
default_options : [ 'c_std=gnu99', 'warning_level=2' ],
|
||||
@@ -641,12 +641,14 @@ executable('test-build-linker',
|
||||
@@ -642,12 +642,14 @@ executable('test-build-linker',
|
||||
include_directories : [includes_src, includes_include],
|
||||
dependencies : [ dep_libinput, dep_libinput_util ],
|
||||
install : false)
|
||||
|
@ -1,8 +1,8 @@
|
||||
# From https://lists.freedesktop.org/archives/wayland-devel/2019-January/039804.html
|
||||
md5 40dcc044443c9314537f605b6f30bf17 libinput-1.12.5.tar.xz
|
||||
sha1 7c0b75e8cf2f1747fb8ae69300acabd46f7a7f0d libinput-1.12.5.tar.xz
|
||||
sha256 7d4b6831010ef3bf69df4b41170047fa4325edef8ff5d2d28e78281af0687123 libinput-1.12.5.tar.xz
|
||||
sha512 9365b91b3ac2c4ff0f9927913242afac7677979682dd7b541001b13d09d7982acd854f6d348101cfa4b0854c6a92b4c683f62593a97870e32ae3d607eaeae3ff libinput-1.12.5.tar.xz
|
||||
# From https://lists.freedesktop.org/archives/wayland-devel/2019-January/039864.html
|
||||
md5 8cf10cc0fdfab865b105dd28283fa0fd libinput-1.12.6.tar.xz
|
||||
sha1 e3044cd2073312c24a315df1be4aa38da6bb2bbd libinput-1.12.6.tar.xz
|
||||
sha256 12b4023a3fc683d3d8127db573bdf925a2ef366615042f69c87e57c32a50f45d libinput-1.12.6.tar.xz
|
||||
sha512 02ad90c77a0c8c27fd96ec34e1546c5f0947ced49bad386372c1ef7c41b3b2157c39020f0766f20aaf2ab3c97128567e169279bea21115ced39499dda325d2ef libinput-1.12.6.tar.xz
|
||||
|
||||
# License files
|
||||
sha256 70d5b1dfe5a9c50a1f2ea91b1c2b1c85d876c5c92339585edbb85cf69e945e14 COPYING
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBINPUT_VERSION = 1.12.5
|
||||
LIBINPUT_VERSION = 1.12.6
|
||||
LIBINPUT_SOURCE = libinput-$(LIBINPUT_VERSION).tar.xz
|
||||
LIBINPUT_SITE = http://www.freedesktop.org/software/libinput
|
||||
LIBINPUT_DEPENDENCIES = host-pkgconf libevdev mtdev udev
|
||||
|
@ -7,7 +7,6 @@
|
||||
LIBMAD_VERSION = 0.15.1b
|
||||
LIBMAD_SITE = http://downloads.sourceforge.net/project/mad/libmad/$(LIBMAD_VERSION)
|
||||
LIBMAD_INSTALL_STAGING = YES
|
||||
LIBMAD_LIBTOOL_PATCH = NO
|
||||
LIBMAD_LICENSE = GPL-2.0+
|
||||
LIBMAD_LICENSE_FILES = COPYING
|
||||
LIBMAD_PATCH = \
|
||||
|
@ -1,3 +1,3 @@
|
||||
# Locally calculated
|
||||
sha256 ce3036d444c3fb4f9a9e2994bec1f4fa07872b01456998b422ce918fdc55c254 libuv-v1.25.0.tar.gz
|
||||
sha256 e414cf74615b7dae768f0f5667092f1d4975f5067c087bcbe0641e241ebe4693 libuv-v1.26.0.tar.gz
|
||||
sha256 6d20216ae022fbeed23916f48508fd807ece3d8464992330643b0e64e5c0c24b LICENSE
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBUV_VERSION = v1.25.0
|
||||
LIBUV_VERSION = v1.26.0
|
||||
LIBUV_SITE = $(call github,libuv,libuv,$(LIBUV_VERSION))
|
||||
LIBUV_DEPENDENCIES = host-pkgconf
|
||||
LIBUV_INSTALL_STAGING = YES
|
||||
|
13
package/libwpe/Config.in
Normal file
13
package/libwpe/Config.in
Normal file
@ -0,0 +1,13 @@
|
||||
comment "libwpe needs a toolchain w/ C++, dynamic library and an OpenEGL-capable backend"
|
||||
depends on !BR2_PACKAGE_HAS_LIBEGL || !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS
|
||||
|
||||
config BR2_PACKAGE_LIBWPE
|
||||
bool "libwpe"
|
||||
depends on !BR2_STATIC_LIBS # dlfcn.h
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on BR2_PACKAGE_HAS_LIBEGL
|
||||
select BR2_PACKAGE_LIBXKBCOMMON
|
||||
help
|
||||
Base library for the WPE WebKit port.
|
||||
|
||||
https://wpewebkit.org/
|
7
package/libwpe/libwpe.hash
Normal file
7
package/libwpe/libwpe.hash
Normal file
@ -0,0 +1,7 @@
|
||||
# From https://wpewebkit.org/releases/libwpe-1.0.0.tar.xz.sums
|
||||
md5 b5ea32bd644811d5c6433cf1439763f7 libwpe-1.0.0.tar.xz
|
||||
sha1 6e51591c00a9a6128e19920807e6874794c723fd libwpe-1.0.0.tar.xz
|
||||
sha256 aff11612123f9ab85a8b9a4bcdfb3a7503eba0a0d2d96f2cdecd30e911091719 libwpe-1.0.0.tar.xz
|
||||
|
||||
# Hashes for license files:
|
||||
sha256 6efc9991641b47b1f4e727db7f090d0ade00117dcbbc74be622f2baceddb1f22 COPYING
|
22
package/libwpe/libwpe.mk
Normal file
22
package/libwpe/libwpe.mk
Normal file
@ -0,0 +1,22 @@
|
||||
################################################################################
|
||||
#
|
||||
# libwpe
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBWPE_VERSION = 1.0.0
|
||||
LIBWPE_SITE = https://wpewebkit.org/releases
|
||||
LIBWPE_SOURCE = libwpe-$(LIBWPE_VERSION).tar.xz
|
||||
LIBWPE_INSTALL_STAGING = YES
|
||||
LIBWPE_LICENSE = BSD-2-Clause
|
||||
LIBWPE_LICENSE_FILES = COPYING
|
||||
LIBWPE_DEPENDENCIES = libegl libxkbcommon
|
||||
|
||||
# Workaround for https://github.com/raspberrypi/userland/issues/316
|
||||
ifeq ($(BR2_PACKAGE_RPI_USERLAND),y)
|
||||
LIBWPE_CONF_OPTS += \
|
||||
-DCMAKE_C_FLAGS='$(TARGET_CFLAGS) -D_GNU_SOURCE' \
|
||||
-DCMAKE_CXX_FLAGS='$(TARGET_CFLAGS) -D_GNU_SOURCE'
|
||||
endif
|
||||
|
||||
$(eval $(cmake-package))
|
@ -1,5 +1,5 @@
|
||||
# From https://lists.freedesktop.org/archives/wayland-devel/2018-August/039243.html
|
||||
sha256 7ab8c4b3403d89d01898066b72cb6069bddeb5af94905a65368f671a026ed58c libxkbcommon-0.8.2.tar.xz
|
||||
# From https://lists.freedesktop.org/archives/wayland-devel/2019-February/039970.html
|
||||
sha256 b855c629849a97ab9835a4ad99d6b749a636f70d38a03f070c6ef72024825540 libxkbcommon-0.8.3.tar.xz
|
||||
|
||||
# License file:
|
||||
sha256 086caee279449369d41c1157911ec7696e707b93feba7280de757d3c470b2dfb LICENSE
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBXKBCOMMON_VERSION = 0.8.2
|
||||
LIBXKBCOMMON_VERSION = 0.8.3
|
||||
LIBXKBCOMMON_SITE = http://xkbcommon.org/download
|
||||
LIBXKBCOMMON_SOURCE = libxkbcommon-$(LIBXKBCOMMON_VERSION).tar.xz
|
||||
LIBXKBCOMMON_LICENSE = MIT/X11
|
||||
|
@ -1,62 +0,0 @@
|
||||
From 0b541b828142dab6c23b0f4415dd2fd052d69ff1 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?J=C3=B6rg=20Krause?= <joerg.krause@embedded.rocks>
|
||||
Date: Wed, 31 Oct 2018 18:14:18 +0100
|
||||
Subject: [PATCH] Do not include compat-5.3.h in luv header file
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Do not include compat-5.3.h in luv header file
|
||||
|
||||
Exposing the compat-5.3.h header file directly in the luv.h header file
|
||||
is not a good idea, because it causes redefinition errors when building,
|
||||
for example latest luvi version 2.8.0, with a shared luv library and
|
||||
LuaJIT 2.0.5.
|
||||
|
||||
Therefore, include the compat header file in the luv.c source file.
|
||||
|
||||
Note, that luvi version 2.8.0 (and 2.7.6) still fails to build against the
|
||||
shared luv library using LuaJIT 2.0.5, as it does use `luaL_newlib` which is
|
||||
not available in Lua 5.1. However, this is unrelated to the luv library as
|
||||
luvi itself should define the macro for Lua 5.1.
|
||||
|
||||
Upstream status: https://github.com/luvit/luv/pull/310
|
||||
|
||||
Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
|
||||
---
|
||||
src/luv.c | 3 +++
|
||||
src/luv.h | 4 ----
|
||||
2 files changed, 3 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/src/luv.c b/src/luv.c
|
||||
index c4c7cb7..4af7582 100644
|
||||
--- a/src/luv.c
|
||||
+++ b/src/luv.c
|
||||
@@ -15,6 +15,9 @@
|
||||
*
|
||||
*/
|
||||
|
||||
+#if (LUA_VERSION_NUM != 503)
|
||||
+#include "c-api/compat-5.3.h"
|
||||
+#endif
|
||||
#include "luv.h"
|
||||
#include "util.c"
|
||||
#include "lhandle.c"
|
||||
diff --git a/src/luv.h b/src/luv.h
|
||||
index 27c8c94..4fedd3f 100644
|
||||
--- a/src/luv.h
|
||||
+++ b/src/luv.h
|
||||
@@ -50,10 +50,6 @@
|
||||
#define MAX_TITLE_LENGTH (8192)
|
||||
#endif
|
||||
|
||||
-#if (LUA_VERSION_NUM != 503)
|
||||
-#include "c-api/compat-5.3.h"
|
||||
-#endif
|
||||
-
|
||||
#if defined(__clang__)
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Wunused-function"
|
||||
--
|
||||
2.19.1
|
||||
|
@ -1,3 +1,3 @@
|
||||
# Locally calculated
|
||||
sha256 27886acb3d3f531a3d6ca70360d2593ddf1a8d4daf94ca3beea14d9381227ff7 luv-1.22.0-1.tar.gz
|
||||
sha256 6003b271170a6cef1056725f3a3b9faf56e7ebf83f1d1cc05e272be808a46206 luv-1.25.0-0.tar.gz
|
||||
sha256 cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30 LICENSE.txt
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LUV_VERSION = 1.22.0-1
|
||||
LUV_VERSION = 1.25.0-0
|
||||
LUV_SITE = https://github.com/luvit/luv/releases/download/$(LUV_VERSION)
|
||||
LUV_LICENSE = Apache-2.0
|
||||
LUV_LICENSE_FILES = LICENSE.txt
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Locally calculated after checking pgp signature
|
||||
# https://github.com/mesonbuild/meson/releases/download/0.49.0/meson-0.49.0.tar.gz.asc
|
||||
sha256 fb0395c4ac208eab381cd1a20571584bdbba176eb562a7efa9cb17cace0e1551 meson-0.49.0.tar.gz
|
||||
# https://github.com/mesonbuild/meson/releases/download/0.49.2/meson-0.49.2.tar.gz.asc
|
||||
sha256 ef9f14326ec1e30d3ba1a26df0f92826ede5a79255ad723af78a2691c37109fd meson-0.49.2.tar.gz
|
||||
sha256 cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30 COPYING
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
MESON_VERSION = 0.49.0
|
||||
MESON_VERSION = 0.49.2
|
||||
MESON_SITE = https://github.com/mesonbuild/meson/releases/download/$(MESON_VERSION)
|
||||
MESON_LICENSE = Apache-2.0
|
||||
MESON_LICENSE_FILES = COPYING
|
||||
|
@ -1,217 +0,0 @@
|
||||
From da27fcc39e187671b5e4373848f701a3d910446c Mon Sep 17 00:00:00 2001
|
||||
From: Max Kellermann <max@musicpd.org>
|
||||
Date: Wed, 26 Sep 2018 09:51:09 +0200
|
||||
Subject: [PATCH] {Global,}Bindings: add KeyBindings constructor to simplify
|
||||
initializers
|
||||
|
||||
As a side effect, this works around a build failure with GCC 4.9.
|
||||
|
||||
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
[Retrieved from
|
||||
https://github.com/MusicPlayerDaemon/ncmpc/commit/da27fcc39e187671b5e4373848f701a3d910446c
|
||||
and updated for 0.31 (remove NEWS update)]
|
||||
---
|
||||
src/Bindings.hxx | 3 +
|
||||
src/GlobalBindings.cxx | 142 ++++++++++++++++++++---------------------
|
||||
3 files changed, 75 insertions(+), 71 deletions(-)
|
||||
|
||||
diff --git a/src/Bindings.hxx b/src/Bindings.hxx
|
||||
index 342d951..0c630dc 100644
|
||||
--- a/src/Bindings.hxx
|
||||
+++ b/src/Bindings.hxx
|
||||
@@ -42,6 +42,9 @@ struct KeyBinding {
|
||||
bool modified = false;
|
||||
#endif
|
||||
|
||||
+ constexpr KeyBinding(int a, int b=0, int c=0) noexcept
|
||||
+ :keys{{a, b, c}} {}
|
||||
+
|
||||
gcc_pure
|
||||
bool HasKey(int key) const {
|
||||
return std::find(keys.begin(), keys.end(), key) != keys.end();
|
||||
diff --git a/src/GlobalBindings.cxx b/src/GlobalBindings.cxx
|
||||
index b565848..8049ed2 100644
|
||||
--- a/src/GlobalBindings.cxx
|
||||
+++ b/src/GlobalBindings.cxx
|
||||
@@ -51,110 +51,110 @@
|
||||
|
||||
static KeyBindings global_key_bindings{{{
|
||||
#ifdef ENABLE_KEYDEF_SCREEN
|
||||
- { {'K', 0, 0 } },
|
||||
+ {'K'},
|
||||
#endif
|
||||
- { { 'q', 'Q', C('C') } },
|
||||
+ {'q', 'Q', C('C')},
|
||||
|
||||
/* movement */
|
||||
- { { UP, 'k', 0 } },
|
||||
- { { DWN, 'j', 0 } },
|
||||
- { { 'H', 0, 0 } },
|
||||
- { { 'M', 0, 0 } },
|
||||
- { { 'L', 0, 0 } },
|
||||
- { { HOME, C('A'), 0 } },
|
||||
- { { END, C('E'), 0 } },
|
||||
- { { PGUP, 0, 0 } },
|
||||
- { { PGDN, 0, 0 } },
|
||||
- { { 'v', 0, 0 } },
|
||||
- { { C('N'), 0, 0 } },
|
||||
- { { C('B'), 0, 0 } },
|
||||
- { { 'N', 0, 0 } },
|
||||
- { { 'B', 0, 0 } },
|
||||
- { { 'l', 0, 0 } },
|
||||
+ {UP, 'k'},
|
||||
+ {DWN, 'j'},
|
||||
+ {'H'},
|
||||
+ {'M'},
|
||||
+ {'L'},
|
||||
+ {HOME, C('A')},
|
||||
+ {END, C('E')},
|
||||
+ {PGUP},
|
||||
+ {PGDN},
|
||||
+ {'v', 0},
|
||||
+ {C('N'), 0},
|
||||
+ {C('B'), 0},
|
||||
+ {'N', 0},
|
||||
+ {'B', 0},
|
||||
+ {'l'},
|
||||
|
||||
/* basic screens */
|
||||
- { { '1', F1, 'h' } },
|
||||
- { { '2', F2, 0 } },
|
||||
- { { '3', F3, 0 } },
|
||||
+ {'1', F1, 'h'},
|
||||
+ {'2', F2},
|
||||
+ {'3', F3},
|
||||
|
||||
/* player commands */
|
||||
- { { RET, 0, 0 } },
|
||||
- { { 'P', 0, 0 } },
|
||||
- { { 's', BS, 0 } },
|
||||
- { { 'o', 0, 0 } },
|
||||
- { { '>', 0, 0 } },
|
||||
- { { '<', 0, 0 } },
|
||||
- { { 'f', 0, 0 } },
|
||||
- { { 'b', 0, 0 } },
|
||||
- { { '+', RGHT, 0 } },
|
||||
- { { '-', LEFT, 0 } },
|
||||
- { { ' ', 0, 0 } },
|
||||
- { { 't', 0, 0 } },
|
||||
- { { DEL, 'd', 0 } },
|
||||
- { { 'Z', 0, 0 } },
|
||||
- { { 'c', 0, 0 } },
|
||||
- { { 'r', 0, 0 } },
|
||||
- { { 'z', 0, 0 } },
|
||||
- { { 'y', 0, 0 } },
|
||||
- { { 'C', 0, 0 } },
|
||||
- { { 'x', 0, 0 } },
|
||||
- { { C('U'), 0, 0 } },
|
||||
- { { 'S', 0, 0 } },
|
||||
- { { 'a', 0, 0 } },
|
||||
-
|
||||
- { { '!', 0, 0 } },
|
||||
- { { '"', 0, 0 } },
|
||||
-
|
||||
- { { 'G', 0, 0 } },
|
||||
+ {RET},
|
||||
+ {'P'},
|
||||
+ {'s', BS},
|
||||
+ {'o'},
|
||||
+ {'>'},
|
||||
+ {'<'},
|
||||
+ {'f'},
|
||||
+ {'b'},
|
||||
+ {'+', RGHT},
|
||||
+ {'-', LEFT},
|
||||
+ {' '},
|
||||
+ {'t'},
|
||||
+ {DEL, 'd'},
|
||||
+ {'Z'},
|
||||
+ {'c'},
|
||||
+ {'r'},
|
||||
+ {'z'},
|
||||
+ {'y'},
|
||||
+ {'C'},
|
||||
+ {'x'},
|
||||
+ {C('U')},
|
||||
+ {'S'},
|
||||
+ {'a'},
|
||||
+
|
||||
+ {'!'},
|
||||
+ {'"'},
|
||||
+
|
||||
+ {'G'},
|
||||
|
||||
/* lists */
|
||||
- { { C('K'), 0, 0 } },
|
||||
- { { C('J'), 0, 0 } },
|
||||
- { { C('L'), 0, 0 } },
|
||||
+ {C('K')},
|
||||
+ {C('J')},
|
||||
+ {C('L')},
|
||||
|
||||
|
||||
/* ncmpc options */
|
||||
- { { 'w', 0, 0 } },
|
||||
- { { 'U', 0, 0 } },
|
||||
+ {'w'},
|
||||
+ {'U'},
|
||||
|
||||
/* change screen */
|
||||
- { { TAB, 0, 0 } },
|
||||
- { { STAB, 0, 0 } },
|
||||
- { { '`', 0, 0 } },
|
||||
+ {TAB},
|
||||
+ {STAB},
|
||||
+ {'`'},
|
||||
|
||||
|
||||
/* find */
|
||||
- { { '/', 0, 0 } },
|
||||
- { { 'n', 0, 0 } },
|
||||
- { { '?', 0, 0 } },
|
||||
- { { 'p', 0, 0 } },
|
||||
- { { '.', 0, 0 } },
|
||||
+ {'/'},
|
||||
+ {'n'},
|
||||
+ {'?'},
|
||||
+ {'p'},
|
||||
+ {'.'},
|
||||
|
||||
|
||||
/* extra screens */
|
||||
#ifdef ENABLE_ARTIST_SCREEN
|
||||
- { {'4', F4, 0 } },
|
||||
+ {'4', F4},
|
||||
#endif
|
||||
#ifdef ENABLE_SEARCH_SCREEN
|
||||
- { {'5', F5, 0 } },
|
||||
- { {'m', 0, 0 } },
|
||||
+ {'5', F5},
|
||||
+ {'m'},
|
||||
#endif
|
||||
#ifdef ENABLE_SONG_SCREEN
|
||||
- { { 'i', 0, 0 } },
|
||||
+ {'i'},
|
||||
#endif
|
||||
#ifdef ENABLE_LYRICS_SCREEN
|
||||
- { {'7', F7, 0 } },
|
||||
- { {ESC, 0, 0 } },
|
||||
- { {'u', 0, 0 } },
|
||||
- { {'e', 0, 0 } },
|
||||
+ {'7', F7},
|
||||
+ {ESC},
|
||||
+ {'u'},
|
||||
+ {'e'},
|
||||
#endif
|
||||
|
||||
#ifdef ENABLE_OUTPUTS_SCREEN
|
||||
- { {'8', F8, 0 } },
|
||||
+ {'8', F8},
|
||||
#endif
|
||||
|
||||
#ifdef ENABLE_CHAT_SCREEN
|
||||
- { {'9', F9, 0} },
|
||||
+ {'9', F9},
|
||||
#endif
|
||||
}}};
|
||||
|
@ -0,0 +1,43 @@
|
||||
From d2bd33ec18c146b27fb5aff7dd0089faa195ef9b Mon Sep 17 00:00:00 2001
|
||||
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
Date: Mon, 11 Feb 2019 21:42:01 +0100
|
||||
Subject: [PATCH] meson.build: add atomic dependency for sparc
|
||||
|
||||
Linking with libatomic is needed on sparc otherwise build fails on:
|
||||
ncmpc@exe/src_Main.cxx.o: In function `std::__atomic_base<long>::operator++()':
|
||||
/home/buildroot/autobuild/instance-1/output/host/opt/ext-toolchain/sparc-buildroot-linux-uclibc/include/c++/6.4.0/bits/atomic_base.h:296: undefined reference to `__atomic_fetch_add_4'
|
||||
|
||||
Fixes:
|
||||
- http://autobuild.buildroot.org/results/7ac1a07e4f72633d3ec92b79dc5d8c062490abdc
|
||||
|
||||
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
[Upstream status: https://github.com/MusicPlayerDaemon/ncmpc/pull/45]
|
||||
---
|
||||
meson.build | 4 ++++
|
||||
1 file changed, 4 insertions(+)
|
||||
|
||||
diff --git a/meson.build b/meson.build
|
||||
index 2e6defc..b393e39 100644
|
||||
--- a/meson.build
|
||||
+++ b/meson.build
|
||||
@@ -174,6 +174,9 @@ else
|
||||
pcre_dep = declare_dependency()
|
||||
endif
|
||||
|
||||
+# Needed on sparc
|
||||
+atomic_dep = cc.find_library('atomic', required: false)
|
||||
+
|
||||
inc = include_directories(
|
||||
'src',
|
||||
|
||||
@@ -352,6 +355,7 @@ ncmpc = executable('ncmpc',
|
||||
sources,
|
||||
include_directories: inc,
|
||||
dependencies: [
|
||||
+ atomic_dep,
|
||||
thread_dep,
|
||||
boost_dep,
|
||||
pcre_dep,
|
||||
--
|
||||
2.14.1
|
||||
|
@ -2,10 +2,11 @@ config BR2_PACKAGE_NCMPC
|
||||
bool "ncmpc"
|
||||
depends on BR2_USE_MMU # fork()
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on BR2_USE_WCHAR # libglib2 -> gettext
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
||||
depends on BR2_USE_WCHAR # boost
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # boost
|
||||
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++14
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_BOOST
|
||||
select BR2_PACKAGE_BOOST_SYSTEM
|
||||
select BR2_PACKAGE_LIBMPDCLIENT
|
||||
select BR2_PACKAGE_NCURSES
|
||||
help
|
||||
|
@ -1,5 +1,5 @@
|
||||
# Locally calculated after checking pgp signature
|
||||
sha256 8d3416c5b99ec21527b506f75bd7e536ddff60e61695b05989e791a751611bcc ncmpc-0.31.tar.xz
|
||||
sha256 94e04a34854015aa013b43ec15b578f4541d077cf7ae5bf7c0944475673fd7a5 ncmpc-0.33.tar.xz
|
||||
|
||||
# Hash for license file:
|
||||
sha256 ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6 COPYING
|
||||
|
@ -5,22 +5,29 @@
|
||||
################################################################################
|
||||
|
||||
NCMPC_VERSION_MAJOR = 0
|
||||
NCMPC_VERSION = $(NCMPC_VERSION_MAJOR).31
|
||||
NCMPC_VERSION = $(NCMPC_VERSION_MAJOR).33
|
||||
NCMPC_SOURCE = ncmpc-$(NCMPC_VERSION).tar.xz
|
||||
NCMPC_SITE = http://www.musicpd.org/download/ncmpc/$(NCMPC_VERSION_MAJOR)
|
||||
NCMPC_DEPENDENCIES = host-pkgconf libglib2 libmpdclient ncurses
|
||||
NCMPC_DEPENDENCIES = boost host-pkgconf libmpdclient ncurses
|
||||
NCMPC_LICENSE = GPL-2.0+
|
||||
NCMPC_LICENSE_FILES = COPYING
|
||||
|
||||
NCMPC_CONF_OPTS = \
|
||||
-Dcurses=ncurses \
|
||||
-Ddocumentation=false
|
||||
-Ddocumentation=disabled
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIRC_TOOLS),y)
|
||||
NCMPC_DEPENDENCIES += lirc-tools
|
||||
NCMPC_CONF_OPTS += -Dlirc=true
|
||||
NCMPC_CONF_OPTS += -Dlirc=enabled
|
||||
else
|
||||
NCMPC_CONF_OPTS += -Dlirc=false
|
||||
NCMPC_CONF_OPTS += -Dlirc=disabled
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_PCRE),y)
|
||||
NCMPC_DEPENDENCIES += pcre
|
||||
NCMPC_CONF_OPTS += -Dregex=enabled
|
||||
else
|
||||
NCMPC_CONF_OPTS += -Dregex=disabled
|
||||
endif
|
||||
|
||||
$(eval $(meson-package))
|
||||
|
@ -1,2 +1,2 @@
|
||||
# Locally generated
|
||||
sha256 86b8700c3d0880c2b44c2ff67ce42774aaf8c28cbf57725cb881569288c1c6f4 ninja-v1.8.2.tar.gz
|
||||
sha256 5d7ec75828f8d3fd1a0c2f31b5b0cea780cdfe1031359228c428c1a48bfcd5b9 ninja-v1.9.0.tar.gz
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
NINJA_VERSION = v1.8.2
|
||||
NINJA_VERSION = v1.9.0
|
||||
NINJA_SITE = $(call github,ninja-build,ninja,$(NINJA_VERSION))
|
||||
NINJA_LICENSE = Apache-2.0
|
||||
NINJA_LICENSE_FILES = COPYING
|
||||
|
6
package/openjdk-bin/openjdk-bin.hash
Normal file
6
package/openjdk-bin/openjdk-bin.hash
Normal file
@ -0,0 +1,6 @@
|
||||
# From https://github.com/AdoptOpenJDK/openjdk11-binaries/releases
|
||||
sha256 d02089d834f7702ac1a9776d8d0d13ee174d0656cf036c6b68b9ffb71a6f610e OpenJDK11U-jdk_x64_linux_hotspot_11.0.2_9.tar.gz
|
||||
|
||||
# Locally calculated
|
||||
sha256 4b9abebc4338048a7c2dc184e9f800deb349366bdf28eb23c2677a77b4c87726 legal/java.prefs/LICENSE
|
||||
sha256 a44eb7b5caf5534c6ef536b21edb40b4d6babf91bf97d9d45596868618b2c6fb legal/java.prefs/ASSEMBLY_EXCEPTION
|
26
package/openjdk-bin/openjdk-bin.mk
Normal file
26
package/openjdk-bin/openjdk-bin.mk
Normal file
@ -0,0 +1,26 @@
|
||||
################################################################################
|
||||
#
|
||||
# host-openjdk-bin
|
||||
#
|
||||
################################################################################
|
||||
|
||||
HOST_OPENJDK_BIN_VERSION_MAJOR = 11.0.2
|
||||
HOST_OPENJDK_BIN_VERSION_MINOR = 9
|
||||
HOST_OPENJDK_BIN_VERSION = $(HOST_OPENJDK_BIN_VERSION_MAJOR)_$(HOST_OPENJDK_BIN_VERSION_MINOR)
|
||||
HOST_OPENJDK_BIN_SOURCE = OpenJDK11U-jdk_x64_linux_hotspot_$(HOST_OPENJDK_BIN_VERSION).tar.gz
|
||||
HOST_OPENJDK_BIN_SITE = https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-$(HOST_OPENJDK_BIN_VERSION_MAJOR)%2B$(HOST_OPENJDK_BIN_VERSION_MINOR)
|
||||
HOST_OPENJDK_BIN_LICENSE = GPL-2.0+ with exception
|
||||
HOST_OPENJDK_BIN_LICENSE_FILES = legal/java.prefs/LICENSE legal/java.prefs/ASSEMBLY_EXCEPTION
|
||||
|
||||
# unpack200 has an invalid RPATH and relies on libzlib. When
|
||||
# host-libzlib is installed on the system, the error "ERROR: package
|
||||
# host-libzlib installs executables without proper RPATH: will occur.
|
||||
# Because unpack200 is a deprecated tool, removing it to fix this
|
||||
# issue is safe.
|
||||
define HOST_OPENJDK_BIN_INSTALL_CMDS
|
||||
cp -dpfr $(@D)/bin/* $(HOST_DIR)/bin/
|
||||
cp -dpfr $(@D)/lib/* $(HOST_DIR)/lib/
|
||||
$(RM) -f $(HOST_DIR)/bin/unpack200
|
||||
endef
|
||||
|
||||
$(eval $(host-generic-package))
|
15
package/optee-benchmark/Config.in
Normal file
15
package/optee-benchmark/Config.in
Normal file
@ -0,0 +1,15 @@
|
||||
config BR2_PACKAGE_OPTEE_BENCHMARK
|
||||
bool "optee-benchmark"
|
||||
depends on !BR2_STATIC_LIBS # optee-client
|
||||
select BR2_PACKAGE_OPTEE_CLIENT
|
||||
select BR2_PACKAGE_LIBYAML
|
||||
help
|
||||
Enable the OP-TEE benchmark package that brings facilities
|
||||
for profiling traversal and execution timings when
|
||||
invoking OP-TEE. OP-TEE benchmark is a component delivered
|
||||
by the OP-TEE project.
|
||||
|
||||
http://github.com/linaro-swg/optee_benchmark
|
||||
|
||||
comment "optee-benchmark needs a toolchain w/ dynamic library"
|
||||
depends on BR2_STATIC_LIBS
|
2
package/optee-benchmark/optee-benchmark.hash
Normal file
2
package/optee-benchmark/optee-benchmark.hash
Normal file
@ -0,0 +1,2 @@
|
||||
# From https://github.com/linaro-swg/optee_benchmark/archive/3.4.0.tar.gz
|
||||
sha256 e5e868a06a9dcc8cc444b3e72c65f57670b0811091be62edbe0d03d13c75e716 optee-benchmark-3.4.0.tar.gz
|
13
package/optee-benchmark/optee-benchmark.mk
Normal file
13
package/optee-benchmark/optee-benchmark.mk
Normal file
@ -0,0 +1,13 @@
|
||||
################################################################################
|
||||
#
|
||||
# optee-benchmark
|
||||
#
|
||||
################################################################################
|
||||
|
||||
OPTEE_BENCHMARK_VERSION = 3.4.0
|
||||
OPTEE_BENCHMARK_SITE = $(call github,linaro-swg,optee_benchmark,$(OPTEE_BENCHMARK_VERSION))
|
||||
OPTEE_BENCHMARK_LICENSE = BSD-2-Clause
|
||||
|
||||
OPTEE_BENCHMARK_DEPENDENCIES = optee-client libyaml
|
||||
|
||||
$(eval $(cmake-package))
|
17
package/optee-client/Config.in
Normal file
17
package/optee-client/Config.in
Normal file
@ -0,0 +1,17 @@
|
||||
config BR2_PACKAGE_OPTEE_CLIENT
|
||||
bool "optee-client"
|
||||
depends on !BR2_STATIC_LIBS
|
||||
help
|
||||
Enable the OP-TEE client package that brings non-secure
|
||||
client application resources for OP-TEE support. OP-TEE
|
||||
client is a component delivered by the OP-TEE project.
|
||||
|
||||
The client API library allows application to invoke trusted
|
||||
applications hosted in the OP-TEE OS secure world. The
|
||||
supplicant provides services hosted by the non-secure world
|
||||
and invoked by the secure world.
|
||||
|
||||
https://github.com/OP-TEE/optee_client
|
||||
|
||||
comment "optee-client needs a toolchain w/ dynamic library"
|
||||
depends on BR2_STATIC_LIBS
|
49
package/optee-client/S30optee
Normal file
49
package/optee-client/S30optee
Normal file
@ -0,0 +1,49 @@
|
||||
#!/bin/sh
|
||||
|
||||
DAEMON="tee-supplicant"
|
||||
PIDFILE="/var/run/$DAEMON.pid"
|
||||
|
||||
DAEMON_ARGS="-d /dev/teepriv0"
|
||||
|
||||
start() {
|
||||
printf 'Starting %s: ' "$DAEMON"
|
||||
start-stop-daemon -S -q -p "$PIDFILE" -x "/usr/sbin/$DAEMON" \
|
||||
-- $DAEMON_ARGS
|
||||
status=$?
|
||||
if [ "$status" -eq 0 ]; then
|
||||
echo "OK"
|
||||
else
|
||||
echo "FAIL"
|
||||
fi
|
||||
return "$status"
|
||||
}
|
||||
|
||||
stop() {
|
||||
printf 'Stopping %s: ' "$DAEMON"
|
||||
start-stop-daemon -K -q -p "$PIDFILE"
|
||||
status=$?
|
||||
if [ "$status" -eq 0 ]; then
|
||||
echo "OK"
|
||||
else
|
||||
echo "FAIL"
|
||||
fi
|
||||
return "$status"
|
||||
}
|
||||
|
||||
restart() {
|
||||
stop
|
||||
sleep 1
|
||||
start
|
||||
}
|
||||
|
||||
case "$1" in
|
||||
start|stop|restart)
|
||||
"$1";;
|
||||
reload)
|
||||
# Restart, since there is no true "reload" feature (does not
|
||||
# reconfigure/restart on SIGHUP, just closes all open files).
|
||||
restart;;
|
||||
*)
|
||||
echo "Usage: $0 {start|stop|restart|reload}"
|
||||
exit 1
|
||||
esac
|
4
package/optee-client/optee-client.hash
Normal file
4
package/optee-client/optee-client.hash
Normal file
@ -0,0 +1,4 @@
|
||||
# From https://github.com/OP-TEE/optee_client/archive/3.4.0.tar.gz
|
||||
sha256 7c131a44f4d73acb8816fba88bcd7e6a18537f0a522ae426a20e2ca7dc46a6ec optee-client-3.4.0.tar.gz
|
||||
# Locally computed
|
||||
sha256 fda8385993f112d7ca61b88b54ba5b4cbeec7e43a0f9b317d5186703c1985e8f LICENSE
|
18
package/optee-client/optee-client.mk
Normal file
18
package/optee-client/optee-client.mk
Normal file
@ -0,0 +1,18 @@
|
||||
################################################################################
|
||||
#
|
||||
# optee-client
|
||||
#
|
||||
################################################################################
|
||||
|
||||
OPTEE_CLIENT_VERSION = 3.4.0
|
||||
OPTEE_CLIENT_SITE = $(call github,OP-TEE,optee_client,$(OPTEE_CLIENT_VERSION))
|
||||
OPTEE_CLIENT_LICENSE = BSD-2-Clause
|
||||
OPTEE_CLIENT_LICENSE_FILES = LICENSE
|
||||
OPTEE_CLIENT_INSTALL_STAGING = YES
|
||||
|
||||
define OPTEE_CLIENT_INSTALL_INIT_SYSV
|
||||
$(INSTALL) -m 0755 -D $(OPTEE_CLIENT_PKGDIR)/S30optee \
|
||||
$(TARGET_DIR)/etc/init.d/S30optee
|
||||
endef
|
||||
|
||||
$(eval $(cmake-package))
|
@ -0,0 +1,42 @@
|
||||
From 1a2713ac698410fb1a889941d52df12a7bd75f3b Mon Sep 17 00:00:00 2001
|
||||
From: Etienne Carriere <etienne.carriere@linaro.org>
|
||||
Date: Sun, 17 Feb 2019 22:17:21 +0100
|
||||
Subject: [PATCH] secure_storage: fix deprecated size_t type for size
|
||||
|
||||
size_t types is an deprecated type used in GPD API v1.0.
|
||||
Update
|
||||
|
||||
Error reported by GCC 7.3-2018.05:
|
||||
secure_storage_ta.c:203:6: warning: passing argument 4 of 'TEE_ReadObjectData' from incompatible pointer type [-Wincompatible-pointer-types]
|
||||
&read_bytes);
|
||||
|
||||
Signed-off-by: Etienne Carriere <etienne.carriere@linaro.org>
|
||||
---
|
||||
secure_storage/ta/secure_storage_ta.c | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/secure_storage/ta/secure_storage_ta.c b/secure_storage/ta/secure_storage_ta.c
|
||||
index d120e47..3ccc12d 100644
|
||||
--- a/secure_storage/ta/secure_storage_ta.c
|
||||
+++ b/secure_storage/ta/secure_storage_ta.c
|
||||
@@ -146,7 +146,7 @@ static TEE_Result read_raw_object(uint32_t param_types, TEE_Param params[4])
|
||||
TEE_ObjectHandle object;
|
||||
TEE_ObjectInfo object_info;
|
||||
TEE_Result res;
|
||||
- size_t read_bytes;
|
||||
+ uint32_t read_bytes;
|
||||
char *obj_id;
|
||||
size_t obj_id_sz;
|
||||
char *data;
|
||||
@@ -202,7 +202,7 @@ static TEE_Result read_raw_object(uint32_t param_types, TEE_Param params[4])
|
||||
res = TEE_ReadObjectData(object, data, object_info.dataSize,
|
||||
&read_bytes);
|
||||
if (res != TEE_SUCCESS || read_bytes != object_info.dataSize) {
|
||||
- EMSG("TEE_ReadObjectData failed 0x%08x, read %u over %u",
|
||||
+ EMSG("TEE_ReadObjectData failed 0x%08x, read %" PRIu32 " over %u",
|
||||
res, read_bytes, object_info.dataSize);
|
||||
goto exit;
|
||||
}
|
||||
--
|
||||
2.20.1
|
||||
|
23
package/optee-examples/Config.in
Normal file
23
package/optee-examples/Config.in
Normal file
@ -0,0 +1,23 @@
|
||||
config BR2_PACKAGE_OPTEE_EXAMPLES
|
||||
bool "optee-examples"
|
||||
depends on BR2_TARGET_OPTEE_OS
|
||||
depends on !BR2_STATIC_LIBS # optee-client
|
||||
select BR2_PACKAGE_OPTEE_CLIENT
|
||||
select BR2_TARGET_OPTEE_OS_SDK
|
||||
help
|
||||
Enable the OP-TEE examples package that brings examples of
|
||||
implementation of OP-TEE non-secure client applications and
|
||||
secure trusted applications. OP-TEE examples is a
|
||||
component delivered by the OP-TEE project.
|
||||
|
||||
Trusted application binary files are installed in the target
|
||||
directory /lib/optee_armtz as other trusted applications.
|
||||
At runtime OP-TEE OS can load trusted applications from this
|
||||
non-secure filesystem/directory into the secure world for
|
||||
execution.
|
||||
|
||||
https://github.com/linaro-swg/optee_examples
|
||||
|
||||
comment "optee-examples needs a toolchain w/ dynamic library"
|
||||
depends on BR2_TARGET_OPTEE_OS
|
||||
depends on BR2_STATIC_LIBS
|
4
package/optee-examples/optee-examples.hash
Normal file
4
package/optee-examples/optee-examples.hash
Normal file
@ -0,0 +1,4 @@
|
||||
# From https://github.com/linaro-swg/optee_examples/archive/3.4.0.tar.gz
|
||||
sha256 d833753980ac438c1675787857bb8352997352212334274de9419770097ce039 optee-examples-3.4.0.tar.gz
|
||||
# Locally computed
|
||||
sha256 6f1ef8449cb82ae79d2155605f7985bdf0f08e7ab5007de9b4362e8bf28733b9 LICENSE
|
37
package/optee-examples/optee-examples.mk
Normal file
37
package/optee-examples/optee-examples.mk
Normal file
@ -0,0 +1,37 @@
|
||||
################################################################################
|
||||
#
|
||||
# optee-examples
|
||||
#
|
||||
################################################################################
|
||||
|
||||
OPTEE_EXAMPLES_VERSION = 3.4.0
|
||||
OPTEE_EXAMPLES_SITE = $(call github,linaro-swg,optee_examples,$(OPTEE_EXAMPLES_VERSION))
|
||||
OPTEE_EXAMPLES_LICENSE = BSD-2-Clause
|
||||
OPTEE_EXAMPLES_LICENSE_FILES = LICENSE
|
||||
|
||||
OPTEE_EXAMPLES_DEPENDENCIES = optee-client optee-os
|
||||
|
||||
ifeq ($(BR2_aarch64),y)
|
||||
OPTEE_EXAMPLES_SDK = $(STAGING_DIR)/lib/optee/export-ta_arm64
|
||||
else ifeq ($(BR2_arm),y)
|
||||
OPTEE_EXAMPLES_SDK = $(STAGING_DIR)/lib/optee/export-ta_arm32
|
||||
endif
|
||||
|
||||
# Trusted Application are not built from CMake due to ta_dev_kit dependencies.
|
||||
# We must build and install them on target.
|
||||
define OPTEE_EXAMPLES_BUILD_TAS
|
||||
$(foreach f,$(wildcard $(@D)/*/ta/Makefile), \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
$(MAKE) CROSS_COMPILE=$(TARGET_CROSS) \
|
||||
TA_DEV_KIT_DIR=$(OPTEE_EXAMPLES_SDK) \
|
||||
O=out -C $(dir $f) all
|
||||
)
|
||||
endef
|
||||
define OPTEE_EXAMPLES_INSTALL_TAS
|
||||
@mkdir -p $(TARGET_DIR)/lib/optee_armtz
|
||||
@$(INSTALL) -D -m 444 -t $(TARGET_DIR)/lib/optee_armtz $(@D)/*/ta/out/*.ta
|
||||
endef
|
||||
OPTEE_EXAMPLES_POST_BUILD_HOOKS += OPTEE_EXAMPLES_BUILD_TAS
|
||||
OPTEE_EXAMPLES_POST_INSTALL_TARGET_HOOKS += OPTEE_EXAMPLES_INSTALL_TAS
|
||||
|
||||
$(eval $(cmake-package))
|
@ -0,0 +1,72 @@
|
||||
From 88714fc174b91950c9e1c53a9832fc6d4ffa6e2a Mon Sep 17 00:00:00 2001
|
||||
From: Etienne Carriere <etienne.carriere@linaro.org>
|
||||
Date: Sun, 17 Feb 2019 22:44:44 +0100
|
||||
Subject: [PATCH] regression 4100: update string conversion loop
|
||||
|
||||
Change the loop used to convert string into numerical value.
|
||||
The original loop was fine but its implementation hits toolchain
|
||||
unsafe-loop-optimizations feature. The new implementation
|
||||
proposed here simplifies a bit the loop and prevents toolchain
|
||||
from complaining when directive -Werror=unsafe-loop-optimizations
|
||||
is enabled.
|
||||
|
||||
Issue reported by the Buildroot cross toolchain [1] with the
|
||||
following error traces:
|
||||
|
||||
build/armv7/build/optee-test-3.4.0/host/xtest/regression_4100.c:447:8: error: missed loop optimization, the loop counter may overflow [-Werror=unsafe-loop-optimizations]
|
||||
while (spos) {
|
||||
^
|
||||
build/optee-test-3.4.0/host/xtest/regression_4100.c:454:6: error: missed loop optimization, the loop counter may overflow [-Werror=unsafe-loop-optimizations]
|
||||
if (!spos)
|
||||
^
|
||||
|
||||
[1] arm-buildroot-linux-uclibcgnueabihf-gcc.br_real (Buildroot 2019.02-git-00933-gb75e93c) 7.4.0
|
||||
|
||||
Signed-off-by: Etienne Carriere <etienne.carriere@linaro.org>
|
||||
---
|
||||
host/xtest/regression_4100.c | 25 ++++++++++++++-----------
|
||||
1 file changed, 14 insertions(+), 11 deletions(-)
|
||||
|
||||
diff --git a/host/xtest/regression_4100.c b/host/xtest/regression_4100.c
|
||||
index b477f38..88346d4 100644
|
||||
--- a/host/xtest/regression_4100.c
|
||||
+++ b/host/xtest/regression_4100.c
|
||||
@@ -445,21 +445,24 @@ static TEEC_Result convert_from_string(ADBG_Case_t *c, TEEC_Session *s,
|
||||
return TEEC_ERROR_OUT_OF_MEMORY;
|
||||
|
||||
while (spos) {
|
||||
- spos--;
|
||||
- nibble = digit_value(str[spos]);
|
||||
- if (nibble == -1)
|
||||
+ nibble = digit_value(str[spos - 1]);
|
||||
+ if (nibble == -1) {
|
||||
+ spos--;
|
||||
break;
|
||||
+ }
|
||||
os[ospos] = nibble;
|
||||
|
||||
- if (!spos)
|
||||
- break;
|
||||
+ if (spos > 1) {
|
||||
+ nibble = digit_value(str[spos - 2]);
|
||||
+ if (nibble == -1) {
|
||||
+ spos -= 2;
|
||||
+ break;
|
||||
+ }
|
||||
+ os[ospos] |= nibble << 4;
|
||||
+ ospos--;
|
||||
+ spos--;
|
||||
+ }
|
||||
spos--;
|
||||
- nibble = digit_value(str[spos]);
|
||||
- if (nibble == -1)
|
||||
- break;
|
||||
-
|
||||
- os[ospos] |= nibble << 4;
|
||||
- ospos--;
|
||||
}
|
||||
|
||||
if (spos)
|
||||
--
|
||||
2.20.1
|
||||
|
27
package/optee-test/Config.in
Normal file
27
package/optee-test/Config.in
Normal file
@ -0,0 +1,27 @@
|
||||
config BR2_PACKAGE_OPTEE_TEST
|
||||
bool "optee-test"
|
||||
depends on BR2_TARGET_OPTEE_OS
|
||||
depends on !BR2_STATIC_LIBS # optee-client
|
||||
select BR2_PACKAGE_OPTEE_CLIENT
|
||||
select BR2_TARGET_OPTEE_OS_SDK
|
||||
help
|
||||
This build option enables OP-TEE test package from the
|
||||
OP-TEE project. It helps platforms to verify the OP-TEE
|
||||
installation against a set of regression and performance
|
||||
tests.
|
||||
|
||||
The package generates userspace test applications and
|
||||
data files for the Linux userland. It also generates
|
||||
OP-TEE trusted applications.
|
||||
|
||||
Trusted application binary files are installed in the target
|
||||
directory /lib/optee_armtz as other trusted applications.
|
||||
At runtime OP-TEE OS can load trusted applications from this
|
||||
non-secure filesystem/directory into the secure world for
|
||||
execution.
|
||||
|
||||
http://github.com/OP-TEE/optee_test
|
||||
|
||||
comment "optee-test needs a toolchain w/ dynamic library"
|
||||
depends on BR2_TARGET_OPTEE_OS
|
||||
depends on BR2_STATIC_LIBS
|
4
package/optee-test/optee-test.hash
Normal file
4
package/optee-test/optee-test.hash
Normal file
@ -0,0 +1,4 @@
|
||||
# From https://github.com/OP-TEE/optee_test/archive/3.4.0.tar.gz
|
||||
sha256 755904c5b845763a2460c32c21100a57c713009b6b88cc3fc21f0e5be8645e2b optee-test-3.4.0.tar.gz
|
||||
# Locally computed
|
||||
sha256 6e6810981f0ddab9e0d44399d0700a15d9f760a3c2843cc866659c2074139ae7 LICENSE.md
|
38
package/optee-test/optee-test.mk
Normal file
38
package/optee-test/optee-test.mk
Normal file
@ -0,0 +1,38 @@
|
||||
################################################################################
|
||||
#
|
||||
# optee-test
|
||||
#
|
||||
################################################################################
|
||||
|
||||
OPTEE_TEST_VERSION = 3.4.0
|
||||
OPTEE_TEST_SITE = $(call github,OP-TEE,optee_test,$(OPTEE_TEST_VERSION))
|
||||
OPTEE_TEST_LICENSE = GPL-2.0, BSD-2-Clause,
|
||||
OPTEE_TEST_LICENSE_FILES = LICENSE.md
|
||||
|
||||
OPTEE_TEST_DEPENDENCIES = optee-client optee-os
|
||||
|
||||
ifeq ($(BR2_aarch64),y)
|
||||
OPTEE_TEST_SDK = $(STAGING_DIR)/lib/optee/export-ta_arm64
|
||||
else ifeq ($(BR2_arm),y)
|
||||
OPTEE_TEST_SDK = $(STAGING_DIR)/lib/optee/export-ta_arm32
|
||||
endif
|
||||
OPTEE_TEST_CONF_OPTS = -DOPTEE_TEST_SDK=$(OPTEE_TEST_SDK)
|
||||
|
||||
# Trusted Application are not built from CMake due to ta_dev_kit
|
||||
# dependencies. We must build and install them on target.
|
||||
define OPTEE_TEST_BUILD_TAS
|
||||
$(foreach f,$(wildcard $(@D)/ta/*/Makefile), \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
$(MAKE) CROSS_COMPILE=$(TARGET_CROSS) \
|
||||
TA_DEV_KIT_DIR=$(OPTEE_TEST_SDK) \
|
||||
-C $(dir $f) all
|
||||
)
|
||||
endef
|
||||
define OPTEE_TEST_INSTALL_TAS
|
||||
@mkdir -p $(TARGET_DIR)/lib/optee_armtz
|
||||
@$(INSTALL) -D -m 444 -t $(TARGET_DIR)/lib/optee_armtz $(@D)/ta/*/*.ta
|
||||
endef
|
||||
OPTEE_TEST_POST_BUILD_HOOKS += OPTEE_TEST_BUILD_TAS
|
||||
OPTEE_TEST_POST_INSTALL_TARGET_HOOKS += OPTEE_TEST_INSTALL_TAS
|
||||
|
||||
$(eval $(cmake-package))
|
@ -1,6 +1,6 @@
|
||||
# md5, sha256 from https://pypi.org/pypi/cython/json
|
||||
md5 867c8b48f15a5249f476dc5a2cb58758 Cython-0.29.4.tar.gz
|
||||
sha256 d1ee3d39c73a094ae5b6e2f9263ae0dc61af1b549a0869ade8c3c30325ed9f26 Cython-0.29.4.tar.gz
|
||||
md5 074f70ec8bd0a6bf5cf658508c63a999 Cython-0.29.5.tar.gz
|
||||
sha256 9d5290d749099a8e446422adfb0aa2142c711284800fb1eb70f595101e32cbf1 Cython-0.29.5.tar.gz
|
||||
# Locally computed sha256 checksums
|
||||
sha256 a6cba85bc92e0cff7a450b1d873c0eaa2e9fc96bf472df0247a26bec77bf3ff9 LICENSE.txt
|
||||
sha256 e1eb1c49a8508e8173dac30157e4a6439a44ad8846194746c424fbc3fc2b95d7 COPYING.txt
|
||||
|
@ -4,9 +4,9 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PYTHON_CYTHON_VERSION = 0.29.4
|
||||
PYTHON_CYTHON_VERSION = 0.29.5
|
||||
PYTHON_CYTHON_SOURCE = Cython-$(PYTHON_CYTHON_VERSION).tar.gz
|
||||
PYTHON_CYTHON_SITE = https://files.pythonhosted.org/packages/cf/e2/03af631ca4a2cf7bc392dd8785c7cc427bff3af4bf5864cdde734f80d052
|
||||
PYTHON_CYTHON_SITE = https://files.pythonhosted.org/packages/e0/31/4a166556f92c469d8291d4b03a187f325c773c330fffc1e798bf83d947f2
|
||||
PYTHON_CYTHON_SETUP_TYPE = setuptools
|
||||
PYTHON_CYTHON_LICENSE = Apache-2.0
|
||||
PYTHON_CYTHON_LICENSE_FILES = COPYING.txt LICENSE.txt
|
||||
|
@ -1,6 +1,6 @@
|
||||
# Locally computed
|
||||
sha256 7035d9361f3ceec9ccc1dd3482094d1174580e7e1bf6870b77ea758f7cad15d2 lxml-4.2.6.tar.gz
|
||||
sha256 3a9d8521c89bf6f2a929c3d12ad3ad7392c774c327ea809fd08a13be6b3bc05f lxml-4.3.2.tar.gz
|
||||
sha256 41d49dd406aa0e1548a6d5f21a30d6bf638b3cd96eb7289dd348d83ed2e40392 LICENSES.txt
|
||||
sha256 69edb445c1335a8312d4c09271847e9956d84f0d9f724d125340cc3fad767b2a doc/licenses/BSD.txt
|
||||
sha256 0497ae8138811ef4466ede653bab7a59feb3d3c14f9ed50fc33a00aeb5bec32e doc/licenses/elementtree.txt
|
||||
sha256 705bdfece6dbb87879d9ec40a8c9530651aefb98ae387da9134584464742d539 src/lxml/isoschematron/resources/rng/iso-schematron.rng
|
||||
sha256 56c5b13f28b78958890c36e3249c34c169041e42ebcfdce8080f3324ba2bf4de src/lxml/isoschematron/resources/rng/iso-schematron.rng
|
||||
|
@ -4,8 +4,8 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PYTHON_LXML_VERSION = 4.2.6
|
||||
PYTHON_LXML_SITE = https://files.pythonhosted.org/packages/b0/06/37437e348cd296c56a8bac0396007960abb2bcdaf77e8a3bde52bb68e550
|
||||
PYTHON_LXML_VERSION = 4.3.2
|
||||
PYTHON_LXML_SITE = https://files.pythonhosted.org/packages/65/6f/d070609b415f4a24bf36b7deb94bfd791e8d023c0dbf4233659af53fe0ab
|
||||
PYTHON_LXML_SOURCE = lxml-$(PYTHON_LXML_VERSION).tar.gz
|
||||
|
||||
# Not including the GPL, because it is used only for the test scripts.
|
||||
|
@ -1,5 +1,5 @@
|
||||
# md5, sha256 from https://pypi.org/pypi/pip/json
|
||||
md5 b6919f1a368138f73b367abccc06f5ae pip-19.0.1.tar.gz
|
||||
sha256 e81ddd35e361b630e94abeda4a1eddd36d47a90e71eb00f38f46b57f787cd1a5 pip-19.0.1.tar.gz
|
||||
md5 1c5edb0924a0d7d79f3a2e3df05009b4 pip-19.0.3.tar.gz
|
||||
sha256 6e6f197a1abfb45118dbb878b5c859a0edbdd33fd250100bc015b67fded4b9f2 pip-19.0.3.tar.gz
|
||||
# Locally computed sha256 checksums
|
||||
sha256 5ba21fbb0964f936ad7d15362d1ed6d4931cc8c8f9ff2d4d91190e109be74431 LICENSE.txt
|
||||
|
@ -4,9 +4,9 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PYTHON_PIP_VERSION = 19.0.1
|
||||
PYTHON_PIP_VERSION = 19.0.3
|
||||
PYTHON_PIP_SOURCE = pip-$(PYTHON_PIP_VERSION).tar.gz
|
||||
PYTHON_PIP_SITE = https://files.pythonhosted.org/packages/c8/89/ad7f27938e59db1f0f55ce214087460f65048626e2226531ba6cb6da15f0
|
||||
PYTHON_PIP_SITE = https://files.pythonhosted.org/packages/36/fa/51ca4d57392e2f69397cd6e5af23da2a8d37884a605f9e3f2d3bfdc48397
|
||||
PYTHON_PIP_SETUP_TYPE = setuptools
|
||||
PYTHON_PIP_LICENSE = MIT
|
||||
PYTHON_PIP_LICENSE_FILES = LICENSE.txt
|
||||
|
@ -1,5 +1,5 @@
|
||||
# md5, sha256 from https://pypi.org/pypi/psutil/json
|
||||
md5 0502dad59fcbe047baebe07165b1376a psutil-5.5.0.tar.gz
|
||||
sha256 1aba93430050270750d046a179c5f3d6e1f5f8b96c20399ba38c596b28fc4d37 psutil-5.5.0.tar.gz
|
||||
md5 81d6969ba8392cd3b6f5cba6c4e77caa psutil-5.5.1.tar.gz
|
||||
sha256 72cebfaa422b7978a1d3632b65ff734a34c6b34f4578b68a5c204d633756b810 psutil-5.5.1.tar.gz
|
||||
# Locally computed sha256 checksums
|
||||
sha256 bb073826b0dfb43b631c38ad5d9844cda74cc631d2a5569ad8798be4274a3e17 LICENSE
|
||||
|
@ -4,9 +4,9 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PYTHON_PSUTIL_VERSION = 5.5.0
|
||||
PYTHON_PSUTIL_VERSION = 5.5.1
|
||||
PYTHON_PSUTIL_SOURCE = psutil-$(PYTHON_PSUTIL_VERSION).tar.gz
|
||||
PYTHON_PSUTIL_SITE = https://files.pythonhosted.org/packages/6e/a0/833bcbcede5141cc5615e50c7cc5b960ce93d9c9b885fbe3b7d36e48a2d4
|
||||
PYTHON_PSUTIL_SITE = https://files.pythonhosted.org/packages/c7/01/7c30b247cdc5ba29623faa5c8cf1f1bbf7e041783c340414b0ed7e067c64
|
||||
PYTHON_PSUTIL_SETUP_TYPE = setuptools
|
||||
PYTHON_PSUTIL_LICENSE = BSD-3-Clause
|
||||
PYTHON_PSUTIL_LICENSE_FILES = LICENSE
|
||||
|
@ -1,5 +1,5 @@
|
||||
# md5, sha256 from https://pypi.org/pypi/py/json
|
||||
md5 e53ac12db4286737837ef3ccb4158301 py-1.7.0.tar.gz
|
||||
sha256 bf92637198836372b520efcba9e020c330123be8ce527e535d185ed4b6f45694 py-1.7.0.tar.gz
|
||||
md5 d9e30436ce7e79f30847f9b30b62e149 py-1.8.0.tar.gz
|
||||
sha256 dc639b046a6e2cff5bbe40194ad65936d6ba360b52b3c3fe1d08a82dd50b5e53 py-1.8.0.tar.gz
|
||||
# Locally computed sha256 checksums
|
||||
sha256 2af680c39ef493fb82830356d1d3df1acb5a06033cba2dec7a19e21caa77a866 LICENSE
|
||||
|
@ -4,9 +4,9 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PYTHON_PY_VERSION = 1.7.0
|
||||
PYTHON_PY_VERSION = 1.8.0
|
||||
PYTHON_PY_SOURCE = py-$(PYTHON_PY_VERSION).tar.gz
|
||||
PYTHON_PY_SITE = https://files.pythonhosted.org/packages/c7/fa/eb6dd513d9eb13436e110aaeef9a1703437a8efa466ce6bb2ff1d9217ac7
|
||||
PYTHON_PY_SITE = https://files.pythonhosted.org/packages/f1/5a/87ca5909f400a2de1561f1648883af74345fe96349f34f737cdfc94eba8c
|
||||
PYTHON_PY_DEPENDENCIES = host-python-setuptools-scm
|
||||
PYTHON_PY_SETUP_TYPE = setuptools
|
||||
PYTHON_PY_LICENSE = MIT
|
||||
|
@ -1,3 +1,3 @@
|
||||
# md5 from https://pypi.python.org/pypi/pyzmq/json, sha256 locally computed
|
||||
md5 6f5d77cb5ec1617ce9b6e5ad7c6174fb pyzmq-17.1.2.tar.gz
|
||||
sha256 a72b82ac1910f2cf61a49139f4974f994984475f771b0faa730839607eeedddf pyzmq-17.1.2.tar.gz
|
||||
# md5, sha256 from https://pypi.org/pypi/pyzmq/json
|
||||
md5 81d643d1e9eb9238960a18b6b0989db2 pyzmq-18.0.0.tar.gz
|
||||
sha256 b30c339eb58355f51f4f54dd61d785f1ff58c86bca1c3a5916977631d121867b pyzmq-18.0.0.tar.gz
|
||||
|
@ -4,9 +4,9 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PYTHON_PYZMQ_VERSION = 17.1.2
|
||||
PYTHON_PYZMQ_VERSION = 18.0.0
|
||||
PYTHON_PYZMQ_SOURCE = pyzmq-$(PYTHON_PYZMQ_VERSION).tar.gz
|
||||
PYTHON_PYZMQ_SITE = https://files.pythonhosted.org/packages/b9/6a/bc9277b78f5c3236e36b8c16f4d2701a7fd4fa2eb697159d3e0a3a991573
|
||||
PYTHON_PYZMQ_SITE = https://files.pythonhosted.org/packages/64/8d/78975da77627fd863c08e8ea3c7cebce7e51bed2936be5118de6b0050638
|
||||
PYTHON_PYZMQ_LICENSE = LGPL-3.0+, BSD-3-Clause, Apache-2.0
|
||||
# Apache license only online: http://www.apache.org/licenses/LICENSE-2.0
|
||||
PYTHON_PYZMQ_LICENSE_FILES = COPYING.LESSER COPYING.BSD
|
||||
|
@ -1,5 +1,5 @@
|
||||
# md5, sha256 from https://pypi.org/pypi/sentry-sdk/json
|
||||
md5 78642322818c1ce47e80938fe1f40b5f sentry-sdk-0.6.2.tar.gz
|
||||
sha256 56118f4c3bd3412e47d1969997580df2f27ae951df949d07f0c2120cefe40b00 sentry-sdk-0.6.2.tar.gz
|
||||
md5 3a5bd3a5d9bd1305d26a702b38134140 sentry-sdk-0.7.3.tar.gz
|
||||
sha256 6f4e264d0ad6267c40e20431a6a50f815515805ffe8eb9815340adf931279523 sentry-sdk-0.7.3.tar.gz
|
||||
# Locally computed sha256 checksums
|
||||
sha256 59404d4c854e579097d41bfccd5006afde9d6d70e646cf55074cdbfead5ecf1c LICENSE
|
||||
|
@ -4,9 +4,9 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PYTHON_SENTRY_SDK_VERSION = 0.6.2
|
||||
PYTHON_SENTRY_SDK_VERSION = 0.7.3
|
||||
PYTHON_SENTRY_SDK_SOURCE = sentry-sdk-$(PYTHON_SENTRY_SDK_VERSION).tar.gz
|
||||
PYTHON_SENTRY_SDK_SITE = https://files.pythonhosted.org/packages/92/6f/b7b74d7635e220660c06897213fc6df894d291900c8e2710d72fb67528a7
|
||||
PYTHON_SENTRY_SDK_SITE = https://files.pythonhosted.org/packages/9a/8d/e2af648ebb60cff433cdc80760bb45fe9cb7f32ccdff19c43c0d2e743968
|
||||
PYTHON_SENTRY_SDK_SETUP_TYPE = setuptools
|
||||
PYTHON_SENTRY_SDK_LICENSE = BSD-2-Clause
|
||||
PYTHON_SENTRY_SDK_LICENSE_FILES = LICENSE
|
||||
|
@ -1,5 +1,5 @@
|
||||
# md5, sha256 from https://pypi.org/pypi/websockets/json
|
||||
md5 76cf931a525a3415f5a4f59c133e89c3 websockets-6.0.tar.gz
|
||||
sha256 8f3b956d11c5b301206382726210dc1d3bee1a9ccf7aadf895aaf31f71c3716c websockets-6.0.tar.gz
|
||||
md5 e3b5f2e257de0371e7b4d0b6ef7bc29e websockets-7.0.tar.gz
|
||||
sha256 08e3c3e0535befa4f0c4443824496c03ecc25062debbcf895874f8a0b4c97c9f websockets-7.0.tar.gz
|
||||
# Locally computed sha256 checksums
|
||||
sha256 2cd4d416e432ca7fda2c103b38b852f8d3cb327d70c3db44410b9fe97e6c4d73 LICENSE
|
||||
|
@ -4,9 +4,9 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PYTHON_WEBSOCKETS_VERSION = 6.0
|
||||
PYTHON_WEBSOCKETS_VERSION = 7.0
|
||||
PYTHON_WEBSOCKETS_SOURCE = websockets-$(PYTHON_WEBSOCKETS_VERSION).tar.gz
|
||||
PYTHON_WEBSOCKETS_SITE = https://files.pythonhosted.org/packages/4e/2a/56e60bb4c3696bc736998cc13c3fa1a36210609d7e1a3f2519857b420245
|
||||
PYTHON_WEBSOCKETS_SITE = https://files.pythonhosted.org/packages/ba/60/59844a5cef2428cb752bd4f446b72095b1edee404a58c27e87cd12a141e2
|
||||
PYTHON_WEBSOCKETS_SETUP_TYPE = setuptools
|
||||
PYTHON_WEBSOCKETS_LICENSE = BSD-3-Clause
|
||||
PYTHON_WEBSOCKETS_LICENSE_FILES = LICENSE
|
||||
|
@ -1,4 +1,5 @@
|
||||
# md5 from https://pypi.python.org/pypi/python-xlib/json, sha256 locally computed
|
||||
md5 cdf342aa145c2be0ccae46cfb7b62551 python-xlib-0.21.tar.bz2
|
||||
sha256 25aad0056172920552c01a163e979b02336abaf47b0792dae9c93ecb29500431 python-xlib-0.21.tar.bz2
|
||||
sha256 9b872a8a070b8ad329c4bd380fb1bf0000f564c75023ec8e1e6803f15364b9e9 LICENSE
|
||||
# md5, sha256 from https://pypi.org/pypi/python-xlib/json
|
||||
md5 ded820dc8e943106bd660801ed7a82f7 python-xlib-0.25.tar.bz2
|
||||
sha256 204f280b549352af6cbdaff43405186822ae05749518dd9be209bd88a0088f99 python-xlib-0.25.tar.bz2
|
||||
# Locally computed sha256 checksums
|
||||
sha256 06eb1c441443cf15ac84f309003f4c43c62246939d37c75fc3e056c2d34cd300 LICENSE
|
||||
|
@ -4,9 +4,9 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PYTHON_XLIB_VERSION = 0.21
|
||||
PYTHON_XLIB_VERSION = 0.25
|
||||
PYTHON_XLIB_SOURCE = python-xlib-$(PYTHON_XLIB_VERSION).tar.bz2
|
||||
PYTHON_XLIB_SITE = https://pypi.python.org/packages/eb/de/b0eaaea7b8512dc41504db071824eef30293ff55c58d83081ebaebe85a38
|
||||
PYTHON_XLIB_SITE = https://files.pythonhosted.org/packages/3c/d9/51fc07ae57f6a44e62e2ee04bd501d763ac169ff05c838403ec7ae556992
|
||||
PYTHON_XLIB_SETUP_TYPE = setuptools
|
||||
PYTHON_XLIB_LICENSE = LGPL-2.1+
|
||||
PYTHON_XLIB_LICENSE_FILES = LICENSE
|
||||
|
@ -12,6 +12,7 @@ config BR2_PACKAGE_HOST_QEMU_ARCH_SUPPORTS
|
||||
default y if BR2_powerpc
|
||||
default y if BR2_powerpc64
|
||||
default y if BR2_powerpc64le
|
||||
default y if BR2_riscv
|
||||
default y if BR2_sh
|
||||
default y if BR2_sparc
|
||||
default y if BR2_x86_64
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user