Stephan Kulow 2019-02-04 13:25:14 +00:00 committed by Git OBS Bridge
commit 70a332512f
5 changed files with 33 additions and 39 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4f9b9062d9568a8b6ac8e485a665221231ae1d32c2db610482f74f7d61624ca7
size 6230052

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e2ce097d417e8d3d7c6874fbc3795063480db41a2c0a0068ed4b382100308c5e
size 6232652

View File

@ -1,3 +1,31 @@
-------------------------------------------------------------------
Thu Jan 31 08:52:05 UTC 2019 - Guillaume GARDET <guillaume.gardet@opensuse.org>
- Update to 8f862eec9 (2019-01-29):
* dtoverlays: Correct DT handling camera GPIOs
* overlays: Add mcp342x overlay
* overlays: mcp23017: Support the MCP23008
* overlays: Add ssd1306 overlay for OLED display
* overlays: sdio: Add enhanced 1-bit support
* dtoverlays: fe-pi-audio: fix sgtl5000 compatible string
* overlays: Update README with removal of lirc-rpi
* Add overlay for SLB9760 Iridium /LetsTrust TPM
* lirc-rpi: Remove in favour of gpio-ir
* overlays: Update upstream overlay
* dtoverlays: Add i2c on 0&1 option to TC358743, ADV7282 and OV5647
* overlays: Remove superfluous #address/size-cells
* dtoverlays: Add support for ADV7280-M, ADV7281-M and ADV7281-MA chips.
* arm: dt: Add DT overlays for ADV7282M, OV5647, and TC358743
* overlays: uart0 - return GPIOs 14 and 15 to inputs
* overlays: pi3-disable-bt: Clear out bt_pins node
* overlays: Add gpio-no-bank0-irq overlay
* overlays: add overrides for PoE HAT fan control
* Update gpio-fan-overlay.dts (#2711)
* devicetree: add RPi CM3 dts to arm64; mimic the RPi 3B arm64 dts
implementation, by referring to the actual dts file in the arm directory
- Remove upstream-aux-interrupt-overlay.dts as it is already in
arch/arm/boot/dts/overlays/upstream-aux-interrupt-overlay.dts
-------------------------------------------------------------------
Tue Jan 15 12:56:15 UTC 2019 - Nicolas Patricio Saenz Julienne <nsaenzjulienne@suse.com>

View File

@ -17,14 +17,13 @@
Name: raspberrypi-firmware-dt
Version: 2018.07.16
Version: 2019.01.29
Release: 0
Summary: Device trees for the Raspberry Pi firmware loader
License: GPL-2.0-only
Group: System/Boot
Url: https://github.com/raspberrypi/linux/
Source: raspberrypi-firmware-dt-%{version}.tar.xz
Source1: upstream-aux-interrupt-overlay.dts
Source100: get-from-git.sh
Patch1: upstream-rpi-ft5406-overlay.patch
Requires: raspberrypi-firmware
@ -54,7 +53,7 @@ for dts in arch/arm/boot/dts/bcm27*dts arch/arm64/boot/dts/broadcom/bcm27*dts; d
done
export DTC_FLAGS="-R 0 -p 0 -@ -H epapr"
for dts in arch/arm/boot/dts/overlays/*dts %{SOURCE1}; do
for dts in arch/arm/boot/dts/overlays/*dts; do
target=$(basename ${dts%*.dts})
target=${target%*-overlay}
mkdir -p $PPDIR/overlays

View File

@ -1,33 +0,0 @@
// Overlay for missing AUX interrupt controller
// Instead we bind all AUX devices to the generic AUX interrupt line
/dts-v1/;
/plugin/;
/ {
compatible = "brcm,bcm2708";
fragment@0 {
target = <&uart1>;
__overlay__ {
interrupt-parent = <&intc>;
interrupts = <0x1 0x1d>;
};
};
fragment@1 {
target = <&spi1>;
__overlay__ {
interrupt-parent = <&intc>;
interrupts = <0x1 0x1d>;
};
};
fragment@2 {
target = <&spi2>;
__overlay__ {
interrupt-parent = <&intc>;
interrupts = <0x1 0x1d>;
};
};
};