Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package u-boot for openSUSE:Factory checked 
in at 2021-03-10 08:49:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/u-boot (Old)
 and      /work/SRC/openSUSE:Factory/.u-boot.new.2378 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "u-boot"

Wed Mar 10 08:49:06 2021 rev:144 rq:876781 version:2021.01

Changes:
--------
--- /work/SRC/openSUSE:Factory/u-boot/u-boot.changes    2021-02-23 
20:20:33.519663859 +0100
+++ /work/SRC/openSUSE:Factory/.u-boot.new.2378/u-boot.changes  2021-03-10 
08:49:19.778398136 +0100
@@ -1,0 +2,23 @@
+Thu Mar  4 14:59:52 UTC 2021 - Matthias Brugger <mbrug...@suse.com>
+
+- Fix confname assignment for zynqmp and zynq case (bsc#1182962)
+
+-------------------------------------------------------------------
+Thu Mar  4 10:51:38 UTC 2021 - Guillaume GARDET <guillaume.gar...@opensuse.org>
+
+- Guard 'export BL31' for sun50i_h6 and sun50i_a64 with
+  '%{with uboot_atf}' condition (bsc#1182962)
+
+-------------------------------------------------------------------
+Mon Mar  1 13:13:54 UTC 2021 - Matthias Gerstner <matthias.gerst...@suse.com>
+
+- update_git.sh: use safe tmp directories, use authenticated https://
+  procotol.
+
+-------------------------------------------------------------------
+Mon Mar  1 09:36:17 UTC 2021 - Guillaume GARDET <guillaume.gar...@opensuse.org>
+
+- Build with arm-trusted-firmware for Tumbleweed
+- Drop unused uboot_atf_pine64 option
+
+-------------------------------------------------------------------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ u-boot.spec ++++++
--- /var/tmp/diff_new_pack.PxcJ4A/_old  2021-03-10 08:49:20.582398965 +0100
+++ /var/tmp/diff_new_pack.PxcJ4A/_new  2021-03-10 08:49:20.582398965 +0100
@@ -206,8 +206,12 @@
 %endif
 %endif
 %endif
+%if 0%{?suse_version} > 1500
+# arm-trusted-firmware is only in Tumbleweed
+%bcond_without uboot_atf
+%else
 %bcond_with uboot_atf
-%bcond_with uboot_atf_pine64
+%endif
 Version:        2021.01
 Release:        0
 Summary:        The U-Boot firmware for the %target platform
@@ -404,11 +408,15 @@
 %else
 export SOURCE_DATE_EPOCH=$(date -d "$(head -n 2 %{_sourcedir}/u-boot.changes | 
tail -n 1 | cut -d- -f1 )" +%s)
 %if 0%{?is_a64} || 0%{?is_h5}
+%if %{with uboot_atf}
 export BL31=%{_datadir}/arm-trusted-firmware-sun50i_a64/bl31.bin
+%endif
 export SCP=/dev/null
 %endif
 %if 0%{?is_h6}
+%if %{with uboot_atf}
 export BL31=%{_datadir}/arm-trusted-firmware-sun50i_h6/bl31.bin
+%endif
 export SCP=/dev/null
 %endif
 %if "%{name}" == "u-boot-qemu-riscv64spl"
@@ -429,11 +437,13 @@
 
 %if %{is_zynq}
 confname="xilinx_zynq_virt_defconfig"
-%elif %{is_zynqmp}
+%else
+%if %{is_zynqmp}
 confname="xilinx_zynqmp_virt_defconfig"
 %else
 confname=$(ls configs | perl -ne '$l=lc; $l=~ s,_,,g; $l eq 
"%{target}defconfig\n" && print;')
 %endif
+%endif
 
 %if "%target" == "avnetultra96rev1"
 export DEVICE_TREE=avnet-ultra96-rev1



++++++ update_git.sh ++++++
--- /var/tmp/diff_new_pack.PxcJ4A/_old  2021-03-10 08:49:20.682399068 +0100
+++ /var/tmp/diff_new_pack.PxcJ4A/_new  2021-03-10 08:49:20.682399068 +0100
@@ -11,15 +11,14 @@
 
 set -e
 
-GIT_TREE=git://github.com/openSUSE/u-boot.git
+GIT_TREE=https://github.com/openSUSE/u-boot.git
 GIT_LOCAL_TREE=~/src/opensuse/u-boot
 GIT_BRANCH=tumbleweed-2021.01
 GIT_UPSTREAM_TAG=v2021.01
-GIT_DIR=/dev/shm/u-boot-factory-git-dir
-CMP_DIR=/dev/shm/u-boot-factory-cmp-dir
+GIT_DIR=`mktemp -d -p /dev/shm`
+CMP_DIR=`mktemp -d -p /dev/shm`
 
-rm -rf $GIT_DIR
-rm -rf $CMP_DIR
+trap 'rm -rf "$GIT_DIR" "$CMP_DIR"' EXIT
 
 if [ -d "$GIT_LOCAL_TREE" ] || [ -L "$GIT_LOCAL_TREE" ]; then
     echo "Processing $GIT_BRANCH branch of local git tree, using tag:" \
@@ -57,7 +56,6 @@
 UBOOT_VERSION="${UBOOT_VERSION}${UBOOT_EXTRAVERSION}"
 echo "U-Boot version: $UBOOT_VERSION"
 
-rm -rf $GIT_DIR
 
 (
     CHANGED_COUNT=0
@@ -70,9 +68,10 @@
 # Process patches to eliminate useless differences: limit file names to 40 
chars
 # before extension and remove git signature. ('32' below gets us past dir 
prefix)
     for i in $CMP_DIR/*; do
+        base=`basename "$i"`
         # format-patch may append a signature, which per default contains the 
git version
         # wipe everything starting from the signature tag
-        sed '/^-- $/Q' $i > $CMP_DIR/${i:32:40}.patch
+        sed '/^-- $/Q' $i > $CMP_DIR/${base:0:40}.patch
         rm $i
     done
 
@@ -128,8 +127,6 @@
     echo "      added: $ADDED_COUNT"
 )
 
-rm -rf $CMP_DIR
-
 echo "Updating patch list"
 # Handle patch list automatically in spec file
 patch_list=`ls 0*.patch`

Reply via email to