Hello community,

here is the log from the commit of package raspberrypi-firmware-dt for 
openSUSE:Factory checked in at 2019-06-13 23:03:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/raspberrypi-firmware-dt (Old)
 and      /work/SRC/openSUSE:Factory/.raspberrypi-firmware-dt.new.4811 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "raspberrypi-firmware-dt"

Thu Jun 13 23:03:06 2019 rev:7 rq:709418 version:2019.06.03

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/raspberrypi-firmware-dt/raspberrypi-firmware-dt.changes
  2019-02-04 14:25:16.241057781 +0100
+++ 
/work/SRC/openSUSE:Factory/.raspberrypi-firmware-dt.new.4811/raspberrypi-firmware-dt.changes
        2019-06-13 23:03:08.195404370 +0200
@@ -1,0 +2,26 @@
+Wed Jun  5 07:38:30 UTC 2019 - Guillaume GARDET <[email protected]>
+
+- Switch branch to 'rpi-5.1.y' to match the kernel version
+- Update to f1d85e3870 (2019-06-03):
+  * remove 3dlab-nano-player, upstream-aux-interrupt (deprecated 
+    and no more needed)
+  * add draws, i-sabre-q2m, ilitek251x, iqaudio-codec, max98357a,
+    piglow, udrc
+
+-------------------------------------------------------------------
+Tue Mar 12 10:03:07 UTC 2019 - Guillaume GARDET <[email protected]>
+
+- Handle properly the branch switch in get-from-git.sh script
+- Switch branch to 'rpi-5.0.y' to match the kernel version
+- Remove upstreamed patch:
+  * upstream-rpi-ft5406-overlay.patch
+- Update to 00794df91 (2019-03-06):
+  * remove adv7282m, adv728x-m, ov5647, tc358743 and tc358743-audio
+  * update balena-fin
+
+-------------------------------------------------------------------
+Fri Mar  8 13:51:27 UTC 2019 - Guillaume GARDET <[email protected]>
+
+- Include README file for overlays as it contains useful information
+
+-------------------------------------------------------------------

Old:
----
  raspberrypi-firmware-dt-2019.01.29.tar.xz
  upstream-rpi-ft5406-overlay.patch

New:
----
  raspberrypi-firmware-dt-2019.06.03.tar.xz

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

Other differences:
------------------
++++++ raspberrypi-firmware-dt.spec ++++++
--- /var/tmp/diff_new_pack.kzCGct/_old  2019-06-13 23:03:08.787403856 +0200
+++ /var/tmp/diff_new_pack.kzCGct/_new  2019-06-13 23:03:08.791403852 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           raspberrypi-firmware-dt
-Version:        2019.01.29
+Version:        2019.06.03
 Release:        0
 Summary:        Device trees for the Raspberry Pi firmware loader
 License:        GPL-2.0-only
@@ -25,7 +25,6 @@
 Url:            https://github.com/raspberrypi/linux/
 Source:         raspberrypi-firmware-dt-%{version}.tar.xz
 Source100:      get-from-git.sh
-Patch1:         upstream-rpi-ft5406-overlay.patch
 Requires:       raspberrypi-firmware
 BuildRequires:  dtc
 BuildRequires:  raspberrypi-firmware
@@ -38,7 +37,6 @@
 
 %prep
 %setup
-%patch1 -p1
 
 %build
 SRCDIR=`pwd`
@@ -60,6 +58,8 @@
     cpp -x assembler-with-cpp -undef -D__DTS__ -nostdinc -I. 
-I$SRCDIR/include/ -I$SRCDIR/scripts/dtc/include-prefixes/ -P $dts -o 
$PPDIR/overlays/$target.dts
     dtc $DTC_FLAGS -I dts -O dtb -i ./$(dirname $dts) -o 
$PPDIR/overlays/$target.dtbo $PPDIR/overlays/$target.dts
 done
+# Include README file
+cp arch/arm/boot/dts/overlays/README $PPDIR/overlays/
 
 %define dtbdir /boot/vc
 %install
@@ -73,6 +73,7 @@
 for dtbo in pp/overlays/*.dtbo; do
     install -m 644 $dtbo %{buildroot}%{dtbdir}/overlays/
 done
+install -m 644 pp/overlays/README %{buildroot}%{dtbdir}/overlays/
 
 %post
 if mountpoint -q /boot/efi && [ ! -L /boot/efi ]; then
@@ -85,5 +86,6 @@
 %dir /boot/vc/overlays
 /boot/vc/*dtb
 /boot/vc/overlays/*dtbo
+/boot/vc/overlays/README
 
 %changelog

++++++ get-from-git.sh ++++++
--- /var/tmp/diff_new_pack.kzCGct/_old  2019-06-13 23:03:08.827403821 +0200
+++ /var/tmp/diff_new_pack.kzCGct/_new  2019-06-13 23:03:08.827403821 +0200
@@ -1,16 +1,19 @@
 #!/bin/bash
 
-LINUX_BRANCH=rpi-4.19.y
+LINUX_BRANCH=rpi-5.1.y
 
 # this is a huge hunk of stuff, so reuse the local repo if possible
 if [ -d linux/.git ]; then
+       set -e
        cd linux
        git remote update
-       git checkout origin/$LINUX_BRANCH
+       # Check we are on the right branch, otherwise clone the right one
+       git checkout origin/$LINUX_BRANCH || (cd .. && (echo "ERROR: Please 
remove the linux folder as we cannot switch to $LINUX_BRANCH branch"; exit 1) )
        cd ..
+       set +e
 else
        set -e
-       git clone -b $LINUX_BRANCH --depth 1 
https://github.com/raspberrypi/linux.git
+       git clone -b $LINUX_BRANCH --depth 1 --no-single-branch 
https://github.com/raspberrypi/linux.git
        set +e
 fi
 

++++++ raspberrypi-firmware-dt-2019.01.29.tar.xz -> 
raspberrypi-firmware-dt-2019.06.03.tar.xz ++++++
/work/SRC/openSUSE:Factory/raspberrypi-firmware-dt/raspberrypi-firmware-dt-2019.01.29.tar.xz
 
/work/SRC/openSUSE:Factory/.raspberrypi-firmware-dt.new.4811/raspberrypi-firmware-dt-2019.06.03.tar.xz
 differ: char 26, line 1


Reply via email to