[no ci] General: rename toolchain archives

pull/1619/head
viktorxda 2024-11-21 22:46:49 +01:00
parent d6c4b42bcc
commit 3506ab35c5
3 changed files with 5 additions and 5 deletions

View File

@ -21,9 +21,9 @@ jobs:
create() {
uboot=u-boot-$1-nor.bin
firmware=openipc.$2-nor-$3.tgz
release=image/openipc-$1-nor-$3.bin
release=target/openipc-$1-nor-$3.bin
mkdir -p image output
mkdir -p output target
if ! wget -nv $link/$uboot -O output/$1.bin; then
echo -e "Download failed: $link/$uboot\n"
return 0
@ -59,4 +59,4 @@ jobs:
with:
tag_name: ${{env.TAG_NAME}}
make_latest: false
files: image/*.bin
files: target/*.bin

View File

@ -54,7 +54,7 @@ package:
@find $(PWD)/general/package/* -maxdepth 0 -type d -printf "br-%f\n" | grep -v patch
toolname:
@echo br-sdk-$(BR2_OPENIPC_SOC_VENDOR)-$(BR2_OPENIPC_SOC_FAMILY)
@echo toolchain.$(BR2_OPENIPC_SOC_VENDOR)-$(BR2_OPENIPC_SOC_FAMILY)
clean:
@rm -rf $(TARGET)/build $(TARGET)/images $(TARGET)/per-package $(TARGET)/target

View File

@ -8,6 +8,6 @@ export WGET := wget --show-progress --passive-ftp -nd -t5 -T10
EXTERNAL_VENDOR := $(BR2_EXTERNAL)/../br-ext-chip-$(OPENIPC_SOC_VENDOR)
OPENIPC_KERNEL := $(OPENIPC_SOC_VENDOR)-$(OPENIPC_SOC_FAMILY)
OPENIPC_TOOLCHAIN := toolchain/br-sdk-$(OPENIPC_KERNEL)
OPENIPC_TOOLCHAIN := toolchain/toolchain.$(OPENIPC_KERNEL)
include $(sort $(wildcard $(BR2_EXTERNAL)/package/*/*.mk))