Hello community,

here is the log from the commit of package raspberrypi-firmware for 
openSUSE:Factory checked in at 2015-12-20 10:52:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/raspberrypi-firmware (Old)
 and      /work/SRC/openSUSE:Factory/.raspberrypi-firmware.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "raspberrypi-firmware"

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/raspberrypi-firmware/raspberrypi-firmware.changes    
    2015-11-18 22:34:29.000000000 +0100
+++ 
/work/SRC/openSUSE:Factory/.raspberrypi-firmware.new/raspberrypi-firmware.changes
   2015-12-20 10:52:41.000000000 +0100
@@ -1,0 +2,24 @@
+Tue Dec  8 16:29:07 UTC 2015 - [email protected]
+
+- Update to 224c756 (2015-12-08)
+
+-------------------------------------------------------------------
+Tue Dec  8 16:13:14 UTC 2015 - [email protected]
+
+- Move files from /boot to /boot/vc to allow directly updating the
+  FAT partition through a /boot/vc mount
+- Require the main package for the branding package
+
+-------------------------------------------------------------------
+Sun Nov 29 14:08:53 UTC 2015 - [email protected]
+
+- Update to ed611df (2015-11-25)
+* Clarifies licensing of start_*.elf files
+- Improve get-from-git.sh
+* Automate file removal and addition
+* Use date of last relevant change
+- Add branding-openSUSE subpackage, based on a to-do item in
+  openSUSE:Factory:ARM JeOS package's uboot-image-install.in script
+* Update comment about zImage to reflect current U-Boot situation
+
+-------------------------------------------------------------------

Old:
----
  raspberrypi-firmware-2015.10.23.tar.bz2

New:
----
  Config.txt
  raspberrypi-firmware-2015.12.08.tar.bz2

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

Other differences:
------------------
++++++ raspberrypi-firmware.spec ++++++
--- /var/tmp/diff_new_pack.GJO4e3/_old  2015-12-20 10:52:43.000000000 +0100
+++ /var/tmp/diff_new_pack.GJO4e3/_new  2015-12-20 10:52:43.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package raspberrypi-firmware
 #
-# Copyright (c) 2015 SUSE Linux GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,21 +12,37 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
+# Please submit bugfixes or comments via http://bugs.opensuse.org/
+#
+
+
 Name:           raspberrypi-firmware
-Version:        2015.10.23
+Version:        2015.12.08
 Release:        0
-License:        SUSE-Firmware
 Summary:        Binary bootloader and firmware files for Raspberry Pi
-Url:            https://github.com/raspberrypi/firmware/
+License:        SUSE-Firmware
 Group:          System/Boot
+Url:            https://github.com/raspberrypi/firmware/
 ExclusiveArch:  %arm
 Source0:        raspberrypi-firmware-%{version}.tar.bz2
 Source1:        get-from-git.sh
+Source2:        Config.txt
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
 %description
 Binary bootloader and firmware files for Raspberry Pi
 
+
+%package branding-openSUSE
+Summary:        openSUSE Branding for Raspberry Pi
+Group:          System/Boot
+Requires:       raspberrypi-firmware = %{version}
+
+%description branding-openSUSE
+Binary bootloader and firmware files for Raspberry Pi
+
+This sub-package configures the openSUSE boot process.
+
 Note: Config.txt can be used to set some params (gpu_mem, etc.)
 
 
@@ -36,20 +52,26 @@
 %build
 
 %install
-mkdir -p %buildroot/boot
-cp -a boot/*.elf boot/*.bin boot/*.dat boot/LICENCE.broadcom %buildroot/boot
+mkdir -p %buildroot/boot/vc
+cp -a boot/*.elf boot/*.bin boot/*.dat boot/LICENCE.broadcom %buildroot/boot/vc
+cp %{SOURCE2} %buildroot/boot/vc/Config.txt
 
 %files
 %defattr(-,root,root)
-/boot/start.elf
-/boot/start_cd.elf
-/boot/start_db.elf
-/boot/start_x.elf
-/boot/fixup.dat
-/boot/fixup_cd.dat
-/boot/fixup_db.dat
-/boot/fixup_x.dat
-/boot/bootcode.bin
-%doc /boot/LICENCE.broadcom
+%dir /boot/vc
+/boot/vc/start.elf
+/boot/vc/start_cd.elf
+/boot/vc/start_db.elf
+/boot/vc/start_x.elf
+/boot/vc/fixup.dat
+/boot/vc/fixup_cd.dat
+/boot/vc/fixup_db.dat
+/boot/vc/fixup_x.dat
+/boot/vc/bootcode.bin
+%doc /boot/vc/LICENCE.broadcom
+
+%files branding-openSUSE
+%defattr(-,root,root)
+%config /boot/vc/Config.txt
 
 %changelog

++++++ Config.txt ++++++
# Get more options/information on http://elinux.org/RPiconfig
# Our kernels are located on a Linux partition. Chainload U-Boot to load them.
kernel=u-boot.bin
# Use 64 MB for GPU for RPi with 256 MB (Min 16 - Max 192 MB)
gpu_mem_256=64
# Use 128 MB for GPU for RPi with 512 MB (Min 16 - Max 448 MB)
gpu_mem_512=128
# Turbo mode: 0 = enable dynamic freq/voltage - 1 = always max
force_turbo=0
# Start in turbo mode for 30 seconds or until cpufreq sets a frequency
initial_turbo=30
# Max ARM freq (default 700 MHz)
arm_freq=840
# Max core (GPU) freq (default 250 MHz)
core_freq=375
# SDRAM freq (default 400)
sdram_freq=400
# DO NOT overvoltage manually to not void warranty!
over_voltage=0

++++++ get-from-git.sh ++++++
--- /var/tmp/diff_new_pack.GJO4e3/_old  2015-12-20 10:52:43.000000000 +0100
+++ /var/tmp/diff_new_pack.GJO4e3/_new  2015-12-20 10:52:43.000000000 +0100
@@ -12,15 +12,18 @@
 fi
 
 TOPDIR=$(pwd)
+SOURCES="README boot/LICENCE.broadcom boot/*.elf boot/*.bin boot/*.dat"
 cd firmware
-LINE=$(git show --format=format:"%h %ai"|head -n 1)
+LINE=$(git show --format=format:"%h %ai" -- ${SOURCES}|head -n 1)
 set -- $LINE
 REV=$1
 DATE=$2
 VER=${DATE//-/.}
 set -e
-git archive --prefix=raspberrypi-firmware-$VER/ -o 
$TOPDIR/raspberrypi-firmware-${VER}.tar master -- README boot/LICENCE.broadcom 
boot/*.elf boot/*.bin boot/*.dat
+git archive --prefix=raspberrypi-firmware-$VER/ -o 
$TOPDIR/raspberrypi-firmware-${VER}.tar master -- ${SOURCES}
 cd $TOPDIR
+osc rm -f raspberrypi-firmware-*.tar.bz2 || true
 bzip2 --force raspberrypi-firmware-${VER}.tar
+osc add raspberrypi-firmware-${VER}.tar.bz2
 sed -i "s/^Version:.*/Version:        $VER/" raspberrypi-firmware.spec
 osc vc -m "Update to $REV ($DATE)"

++++++ raspberrypi-firmware-2015.10.23.tar.bz2 -> 
raspberrypi-firmware-2015.12.08.tar.bz2 ++++++
/work/SRC/openSUSE:Factory/raspberrypi-firmware/raspberrypi-firmware-2015.10.23.tar.bz2
 
/work/SRC/openSUSE:Factory/.raspberrypi-firmware.new/raspberrypi-firmware-2015.12.08.tar.bz2
 differ: char 11, line 1


Reply via email to