Vagrant Cascadian [Fri, 6 Jan 2023 03:38:24 +0000 (03:38 +0000)]
Merge u-boot (2023.01~rc4+dfsg-2) import into refs/heads/workingbranch
Vagrant Cascadian [Wed, 17 Aug 2022 02:00:04 +0000 (19:00 -0700)]
[PATCH] Makefile: Use relative paths for debugging symbols.
The KBUILD_CFLAGS and KBUILD_AFLAGS variables are adjusted to use
-ffile-prefix-map and --debug-prefix-map, respectively, to use
relative paths for occurrences of __FILE__ and debug paths.
This enables reproducible builds regardless of the absolute path to
the build directory:
https://reproducible-builds.org/docs/build-path/
Series-to: u-boot
Signed-off-by: Vagrant Cascadian <vagrant@reproducible-builds.org>
Gbp-Pq: Name Makefile-Use-relative-paths-for-debugging-symbols.patch
Vagrant Cascadian [Fri, 6 Jan 2023 03:38:24 +0000 (03:38 +0000)]
fix-qemu-ppce500-with-binutils-2.38
Fix building qemu-ppce500 target with binutils ~2.38.
https://bugs.debian.org/
1003490
The incompatibility was introduced in binutils commit:
https://sourceware.org/git/?p=binutils-gdb.git;a=commit;h=
b25f942e18d6ecd7ec3e2d2e9930eb4f996c258a
Gbp-Pq: Name fix-qemu-ppce500-with-binutils-2.38.patch
Luca Boccassi [Fri, 6 Jan 2023 03:38:24 +0000 (03:38 +0000)]
enable support for secure boot on qemu arm64/amd64
Secure boot is now supported upstream in EFI mode. It is disabled
by default, and can be enabled by loading keys from the console:
https://u-boot.readthedocs.io/en/latest/develop/uefi/uefi.html#configuring-uefi-secure-boot
Gbp-Pq: Topic qemu
Gbp-Pq: Name efi-secure-boot.patch
Christopher Obbard [Wed, 23 Nov 2022 13:59:02 +0000 (13:59 +0000)]
configs: roc-pc-rk3399: Enable rockchip efuse support
Enable efuse support which allows reading of the cpuid#, serial#
and also generates a unique mac address from the board's serial.
Signed-off-by: Christopher Obbard <chris.obbard@collabora.com>
Forwarded: https://lists.denx.de/pipermail/u-boot/2022-November/500564.html
Gbp-Pq: Topic rockchip
Gbp-Pq: Name rockchip-roc-pc-rk3399-Enable-rockchip-efuse-support.patch
Vagrant Cascadian [Fri, 6 Jan 2023 03:38:24 +0000 (03:38 +0000)]
rockchip-inno-usb
Downloaded from:
https://patchwork.ozlabs.org/project/uboot/patch/
20210406151059.
1187379-1-icenowy@aosc.io
Downloaded from:
https://patchwork.ozlabs.org/project/uboot/patch/
20210406151059.
1187379-1-icenowy@aosc.io
From: Icenowy Zheng <icenowy@aosc.io>
To: Simon Glass <sjg@chromium.org>, Kever Yang <kever.yang@rock-chips.com>,
Frank Wang <frank.wang@rock-chips.com>,
Jagan Teki <jagan@amarulasolutions.com>
Cc: u-boot@lists.denx.de,
Icenowy Zheng <icenowy@aosc.io>
Subject: [PATCH] phy: rockchip: inno-usb2: fix hang when multiple controllers
exit
Date: Tue, 6 Apr 2021 23:10:59 +0800
Message-Id: <
20210406151059.
1187379-1-icenowy@aosc.io>
The OHCI and EHCI controllers are both bound to the same PHY. They will
both do init and power_on operations when the controller is brought up
and both do power_off and exit when the controller is stopped. However,
the PHY uclass of U-Boot is not as sane as we thought -- they won't
maintain a status mark for PHYs, and thus the functions of the PHYs
could be called for multiple times. Calling init/power_on for multiple
times have no severe problems, however calling power_off/exit for
multiple times have a problem -- the first exit call will stop the PHY
clock, and power_off/exit calls after it still trying to write to PHY
registers. The write operation to PHY registers will fail because clock
is already stopped.
Adapt the count mechanism from phy-sun4i-usb to both init/exit and
power_on/power_off functions to phy-rockchip-inno-usb2 to fix this
problem. With this stopping USB controllers (manually or before booting
a kernel) will work.
Signed-off-by: Icenowy Zheng <icenowy@aosc.io>
Fixes: ac97a9ece14e ("phy: rockchip: Add Rockchip USB2PHY driver")
Tested-by: Peter Robinson <pbrobinson@gmail.com>
Gbp-Pq: Topic rockchip
Gbp-Pq: Name rockchip-inno-usb.patch
Vagrant Cascadian [Fri, 6 Jan 2023 03:38:24 +0000 (03:38 +0000)]
disable-fit-image-tests
Disable FIT image tests.
FIT images were made more robust in light of CVE-2021-27097 and
CVE-2021-27138, but test-imagetools.sh was not updated to reflect
those changes.
Reported upstream: https://lists.denx.de/pipermail/u-boot/2021-March/443460.html
Gbp-Pq: Name disable-fit-image-tests
Vagrant Cascadian [Fri, 6 Jan 2023 03:38:24 +0000 (03:38 +0000)]
prevent relocating initrd & fdt, that results in failure to boot
Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/u-boot/+bug/
1937246
===================================================================
Gbp-Pq: Topic riscv64
Gbp-Pq: Name unmatched-prevent-relocating-initrd-and-fdt.patch
Dongjin Kim [Sat, 28 Oct 2017 04:22:27 +0000 (00:22 -0400)]
[PATCH] arm: config: fix default console only to specify the device
This reverts commit
767edf0f6b3eaa0303f3fd6afdc14ddce0aca70c and restores
commit
232ed3ca534708527a9515c7c41bc3542949525c.
Debian's flash-kernel expect the console variable to just contain the device,
because it will set the bootargs to "console=${console}". So revert adding
"console=" to the console parameter, but also adjust the shipped bootscripts
for exynos boards to cope with it.
Bug-Debian: https://bugs.debian.org/920116
Signed-off-by: Benjamin Drung <bdrung@debian.org>
Gbp-Pq: Topic exynos
Gbp-Pq: Name 0001-arm-config-fix-default-console-only-to-specify-the-d.patch
Vagrant Cascadian [Fri, 6 Jan 2023 03:38:24 +0000 (03:38 +0000)]
test-imagetools-test-fixes
This patch allows testing in an alternate directory and also detects
failures to execute commands, treating that as a failure.
Gbp-Pq: Name test-imagetools-test-fixes
Ian Campbell [Fri, 6 Jan 2023 03:38:24 +0000 (03:38 +0000)]
Add spl/arndale-spl.bin rule
Gbp-Pq: Topic arndale
Gbp-Pq: Name board-spl-rule.diff
Vagrant Cascadian [Fri, 6 Jan 2023 03:38:24 +0000 (03:38 +0000)]
mx53loco
Enables support for ext4, the "load" command, and using bootz with raw initrds.
Gbp-Pq: Name mx53loco
Vagrant Cascadian [Fri, 6 Jan 2023 03:38:24 +0000 (03:38 +0000)]
u-boot (2023.01~rc4+dfsg-2) unstable; urgency=medium
[ Frédéric Danis ]
* u-boot-amlogic: Build libretech-cc-noefi variant to work around
https://bugs.debian.org/
1027176
[ Vagrant Cascadian ]
* debian/targets.mk: Remove testers who no longer have access to boards
or who are not reachable.
* u-boot-amlogic: Enable "noefi" variants for all amlogic platforms to
work around https://bugs.debian.org/
1027176
* debian/control: Drop u-boot meta-package for armhf and mips.
* u-boot-amlogic: Add README.Debian describing the difference between
the default and "noefi" variants of each platform.
[dgit import unpatched u-boot 2023.01~rc4+dfsg-2]
Vagrant Cascadian [Fri, 6 Jan 2023 03:38:24 +0000 (03:38 +0000)]
Import u-boot_2023.01~rc4+dfsg-2.debian.tar.xz
[dgit import tarball u-boot 2023.01~rc4+dfsg-2 u-boot_2023.01~rc4+dfsg-2.debian.tar.xz]
Vagrant Cascadian [Sat, 24 Dec 2022 03:13:23 +0000 (03:13 +0000)]
Import u-boot_2023.01~rc4+dfsg.orig.tar.xz
[dgit import orig u-boot_2023.01~rc4+dfsg.orig.tar.xz]
Vagrant Cascadian [Tue, 4 Oct 2022 00:06:38 +0000 (01:06 +0100)]
Merge u-boot (2022.10+dfsg-1) import into refs/heads/workingbranch
Vagrant Cascadian [Wed, 17 Aug 2022 02:00:04 +0000 (19:00 -0700)]
[PATCH] Makefile: Use relative paths for debugging symbols.
The KBUILD_CFLAGS and KBUILD_AFLAGS variables are adjusted to use
-ffile-prefix-map and --debug-prefix-map, respectively, to use
relative paths for occurrences of __FILE__ and debug paths.
This enables reproducible builds regardless of the absolute path to
the build directory:
https://reproducible-builds.org/docs/build-path/
Series-to: u-boot
Signed-off-by: Vagrant Cascadian <vagrant@reproducible-builds.org>
Gbp-Pq: Name Makefile-Use-relative-paths-for-debugging-symbols.patch
Vagrant Cascadian [Tue, 4 Oct 2022 00:06:38 +0000 (01:06 +0100)]
fix-qemu-ppce500-with-binutils-2.38
Fix building qemu-ppce500 target with binutils ~2.38.
https://bugs.debian.org/
1003490
The incompatibility was introduced in binutils commit:
https://sourceware.org/git/?p=binutils-gdb.git;a=commit;h=
b25f942e18d6ecd7ec3e2d2e9930eb4f996c258a
Gbp-Pq: Name fix-qemu-ppce500-with-binutils-2.38.patch
Vagrant Cascadian [Tue, 4 Oct 2022 00:06:38 +0000 (01:06 +0100)]
rockchip-inno-usb
Downloaded from:
https://patchwork.ozlabs.org/project/uboot/patch/
20210406151059.
1187379-1-icenowy@aosc.io
Downloaded from:
https://patchwork.ozlabs.org/project/uboot/patch/
20210406151059.
1187379-1-icenowy@aosc.io
From: Icenowy Zheng <icenowy@aosc.io>
To: Simon Glass <sjg@chromium.org>, Kever Yang <kever.yang@rock-chips.com>,
Frank Wang <frank.wang@rock-chips.com>,
Jagan Teki <jagan@amarulasolutions.com>
Cc: u-boot@lists.denx.de,
Icenowy Zheng <icenowy@aosc.io>
Subject: [PATCH] phy: rockchip: inno-usb2: fix hang when multiple controllers
exit
Date: Tue, 6 Apr 2021 23:10:59 +0800
Message-Id: <
20210406151059.
1187379-1-icenowy@aosc.io>
The OHCI and EHCI controllers are both bound to the same PHY. They will
both do init and power_on operations when the controller is brought up
and both do power_off and exit when the controller is stopped. However,
the PHY uclass of U-Boot is not as sane as we thought -- they won't
maintain a status mark for PHYs, and thus the functions of the PHYs
could be called for multiple times. Calling init/power_on for multiple
times have no severe problems, however calling power_off/exit for
multiple times have a problem -- the first exit call will stop the PHY
clock, and power_off/exit calls after it still trying to write to PHY
registers. The write operation to PHY registers will fail because clock
is already stopped.
Adapt the count mechanism from phy-sun4i-usb to both init/exit and
power_on/power_off functions to phy-rockchip-inno-usb2 to fix this
problem. With this stopping USB controllers (manually or before booting
a kernel) will work.
Signed-off-by: Icenowy Zheng <icenowy@aosc.io>
Fixes: ac97a9ece14e ("phy: rockchip: Add Rockchip USB2PHY driver")
Tested-by: Peter Robinson <pbrobinson@gmail.com>
Gbp-Pq: Topic rockchip
Gbp-Pq: Name rockchip-inno-usb.patch
Vagrant Cascadian [Tue, 4 Oct 2022 00:06:38 +0000 (01:06 +0100)]
disable-fit-image-tests
Disable FIT image tests.
FIT images were made more robust in light of CVE-2021-27097 and
CVE-2021-27138, but test-imagetools.sh was not updated to reflect
those changes.
Reported upstream: https://lists.denx.de/pipermail/u-boot/2021-March/443460.html
Gbp-Pq: Name disable-fit-image-tests
Vagrant Cascadian [Tue, 4 Oct 2022 00:06:38 +0000 (01:06 +0100)]
bootz_and_raw_initrd
Enable booting of zImage/vmlinuz and initrd without requiring the use
of mkimage to create uImage/uInitrd.
Gbp-Pq: Topic n900
Gbp-Pq: Name bootz_and_raw_initrd.patch
Vagrant Cascadian [Tue, 4 Oct 2022 00:06:38 +0000 (01:06 +0100)]
update-isa-spec
Update to newer default ISA spec in GCC and binutils:
Update to newer default ISA spec in GCC and binutils:
https://lists.infradead.org/pipermail/linux-riscv/2022-January/011728.html
Gbp-Pq: Topic riscv64
Gbp-Pq: Name update-isa-spec.patch
Vagrant Cascadian [Tue, 4 Oct 2022 00:06:38 +0000 (01:06 +0100)]
prevent relocating initrd & fdt, that results in failure to boot
Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/u-boot/+bug/
1937246
===================================================================
Gbp-Pq: Topic riscv64
Gbp-Pq: Name unmatched-prevent-relocating-initrd-and-fdt.patch
Dongjin Kim [Sat, 28 Oct 2017 04:22:27 +0000 (00:22 -0400)]
[PATCH] arm: config: fix default console only to specify the device
This reverts commit
767edf0f6b3eaa0303f3fd6afdc14ddce0aca70c and restores
commit
232ed3ca534708527a9515c7c41bc3542949525c.
Debian's flash-kernel expect the console variable to just contain the device,
because it will set the bootargs to "console=${console}". So revert adding
"console=" to the console parameter, but also adjust the shipped bootscripts
for exynos boards to cope with it.
Bug-Debian: https://bugs.debian.org/920116
Signed-off-by: Benjamin Drung <bdrung@debian.org>
Gbp-Pq: Topic exynos
Gbp-Pq: Name 0001-arm-config-fix-default-console-only-to-specify-the-d.patch
Vagrant Cascadian [Tue, 4 Oct 2022 00:06:38 +0000 (01:06 +0100)]
test-imagetools-test-fixes
This patch allows testing in an alternate directory and also detects
failures to execute commands, treating that as a failure.
Gbp-Pq: Name test-imagetools-test-fixes
Ian Campbell [Tue, 4 Oct 2022 00:06:38 +0000 (01:06 +0100)]
Add spl/arndale-spl.bin rule
Gbp-Pq: Topic arndale
Gbp-Pq: Name board-spl-rule.diff
Vagrant Cascadian [Tue, 4 Oct 2022 00:06:38 +0000 (01:06 +0100)]
mx53loco
Enables support for ext4, the "load" command, and using bootz with raw initrds.
Gbp-Pq: Name mx53loco
Vagrant Cascadian [Tue, 4 Oct 2022 00:06:38 +0000 (01:06 +0100)]
u-boot (2022.10+dfsg-1) unstable; urgency=medium
* New upstream release. (Closes: #
1019004)
[ Vagrant Cascadian ]
* debian/control: Add libcurses-dev:native to Build-Depends.
[ Daniel Serpell ]
* u-boot-sunxi: Add A20-OLinuXino_MICRO-eMMC. (Closes: #
1019880)
[dgit import unpatched u-boot 2022.10+dfsg-1]
Vagrant Cascadian [Tue, 4 Oct 2022 00:06:38 +0000 (01:06 +0100)]
Import u-boot_2022.10+dfsg.orig.tar.xz
[dgit import orig u-boot_2022.10+dfsg.orig.tar.xz]
Vagrant Cascadian [Tue, 4 Oct 2022 00:06:38 +0000 (01:06 +0100)]
Import u-boot_2022.10+dfsg-1.debian.tar.xz
[dgit import tarball u-boot 2022.10+dfsg-1 u-boot_2022.10+dfsg-1.debian.tar.xz]
Vagrant Cascadian [Tue, 9 Aug 2022 23:59:45 +0000 (00:59 +0100)]
Merge u-boot (2022.07+dfsg-1) import into refs/heads/workingbranch
Vagrant Cascadian [Tue, 9 Aug 2022 23:59:45 +0000 (00:59 +0100)]
fix-qemu-ppce500-with-binutils-2.38
Fix building qemu-ppce500 target with binutils ~2.38.
https://bugs.debian.org/
1003490
The incompatibility was introduced in binutils commit:
https://sourceware.org/git/?p=binutils-gdb.git;a=commit;h=
b25f942e18d6ecd7ec3e2d2e9930eb4f996c258a
Gbp-Pq: Name fix-qemu-ppce500-with-binutils-2.38.patch
Vagrant Cascadian [Tue, 9 Aug 2022 23:59:45 +0000 (00:59 +0100)]
rockchip-inno-usb
Downloaded from:
https://patchwork.ozlabs.org/project/uboot/patch/
20210406151059.
1187379-1-icenowy@aosc.io
Downloaded from:
https://patchwork.ozlabs.org/project/uboot/patch/
20210406151059.
1187379-1-icenowy@aosc.io
From: Icenowy Zheng <icenowy@aosc.io>
To: Simon Glass <sjg@chromium.org>, Kever Yang <kever.yang@rock-chips.com>,
Frank Wang <frank.wang@rock-chips.com>,
Jagan Teki <jagan@amarulasolutions.com>
Cc: u-boot@lists.denx.de,
Icenowy Zheng <icenowy@aosc.io>
Subject: [PATCH] phy: rockchip: inno-usb2: fix hang when multiple controllers
exit
Date: Tue, 6 Apr 2021 23:10:59 +0800
Message-Id: <
20210406151059.
1187379-1-icenowy@aosc.io>
The OHCI and EHCI controllers are both bound to the same PHY. They will
both do init and power_on operations when the controller is brought up
and both do power_off and exit when the controller is stopped. However,
the PHY uclass of U-Boot is not as sane as we thought -- they won't
maintain a status mark for PHYs, and thus the functions of the PHYs
could be called for multiple times. Calling init/power_on for multiple
times have no severe problems, however calling power_off/exit for
multiple times have a problem -- the first exit call will stop the PHY
clock, and power_off/exit calls after it still trying to write to PHY
registers. The write operation to PHY registers will fail because clock
is already stopped.
Adapt the count mechanism from phy-sun4i-usb to both init/exit and
power_on/power_off functions to phy-rockchip-inno-usb2 to fix this
problem. With this stopping USB controllers (manually or before booting
a kernel) will work.
Signed-off-by: Icenowy Zheng <icenowy@aosc.io>
Fixes: ac97a9ece14e ("phy: rockchip: Add Rockchip USB2PHY driver")
Tested-by: Peter Robinson <pbrobinson@gmail.com>
Gbp-Pq: Topic rockchip
Gbp-Pq: Name rockchip-inno-usb.patch
Vagrant Cascadian [Tue, 9 Aug 2022 23:59:45 +0000 (00:59 +0100)]
disable-fit-image-tests
Disable FIT image tests.
FIT images were made more robust in light of CVE-2021-27097 and
CVE-2021-27138, but test-imagetools.sh was not updated to reflect
those changes.
Reported upstream: https://lists.denx.de/pipermail/u-boot/2021-March/443460.html
Gbp-Pq: Name disable-fit-image-tests
Vagrant Cascadian [Tue, 9 Aug 2022 23:59:45 +0000 (00:59 +0100)]
bootz_and_raw_initrd
Enable booting of zImage/vmlinuz and initrd without requiring the use
of mkimage to create uImage/uInitrd.
Gbp-Pq: Topic n900
Gbp-Pq: Name bootz_and_raw_initrd.patch
Vagrant Cascadian [Tue, 9 Aug 2022 23:59:45 +0000 (00:59 +0100)]
update-isa-spec
Update to newer default ISA spec in GCC and binutils:
Update to newer default ISA spec in GCC and binutils:
https://lists.infradead.org/pipermail/linux-riscv/2022-January/011728.html
Gbp-Pq: Topic riscv64
Gbp-Pq: Name update-isa-spec.patch
Vagrant Cascadian [Tue, 9 Aug 2022 23:59:45 +0000 (00:59 +0100)]
prevent relocating initrd & fdt, that results in failure to boot
Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/u-boot/+bug/
1937246
===================================================================
Gbp-Pq: Topic riscv64
Gbp-Pq: Name unmatched-prevent-relocating-initrd-and-fdt.patch
Dongjin Kim [Sat, 28 Oct 2017 04:22:27 +0000 (00:22 -0400)]
[PATCH] arm: config: fix default console only to specify the device
This reverts commit
767edf0f6b3eaa0303f3fd6afdc14ddce0aca70c and restores
commit
232ed3ca534708527a9515c7c41bc3542949525c.
Debian's flash-kernel expect the console variable to just contain the device,
because it will set the bootargs to "console=${console}". So revert adding
"console=" to the console parameter, but also adjust the shipped bootscripts
for exynos boards to cope with it.
Bug-Debian: https://bugs.debian.org/920116
Signed-off-by: Benjamin Drung <bdrung@debian.org>
Gbp-Pq: Topic exynos
Gbp-Pq: Name 0001-arm-config-fix-default-console-only-to-specify-the-d.patch
Vagrant Cascadian [Tue, 9 Aug 2022 23:59:45 +0000 (00:59 +0100)]
test-imagetools-test-fixes
This patch allows testing in an alternate directory and also detects
failures to execute commands, treating that as a failure.
Gbp-Pq: Name test-imagetools-test-fixes
Ian Campbell [Tue, 9 Aug 2022 23:59:45 +0000 (00:59 +0100)]
Add spl/arndale-spl.bin rule
Gbp-Pq: Topic arndale
Gbp-Pq: Name board-spl-rule.diff
Vagrant Cascadian [Tue, 9 Aug 2022 23:59:45 +0000 (00:59 +0100)]
mx53loco
Enables support for ext4, the "load" command, and using bootz with raw initrds.
Gbp-Pq: Name mx53loco
Vagrant Cascadian [Tue, 9 Aug 2022 23:59:45 +0000 (00:59 +0100)]
u-boot (2022.07+dfsg-1) unstable; urgency=medium
[ Dave Jones ]
* Fix Unleashed name typo
[ Vagrant Cascadian ]
* debian/patches: Refresh exynos console patch.
* Drop update-lintian-overrides helper script.
* Update lintian overrides.
[dgit import unpatched u-boot 2022.07+dfsg-1]
Vagrant Cascadian [Tue, 9 Aug 2022 23:59:45 +0000 (00:59 +0100)]
Import u-boot_2022.07+dfsg.orig.tar.xz
[dgit import orig u-boot_2022.07+dfsg.orig.tar.xz]
Vagrant Cascadian [Tue, 9 Aug 2022 23:59:45 +0000 (00:59 +0100)]
Import u-boot_2022.07+dfsg-1.debian.tar.xz
[dgit import tarball u-boot 2022.07+dfsg-1 u-boot_2022.07+dfsg-1.debian.tar.xz]
Vagrant Cascadian [Sun, 10 Apr 2022 23:28:14 +0000 (00:28 +0100)]
Merge u-boot (2022.04+dfsg-2) import into refs/heads/workingbranch
Vagrant Cascadian [Sun, 10 Apr 2022 23:28:14 +0000 (00:28 +0100)]
fix-qemu-ppce500-with-binutils-2.38
Fix building qemu-ppce500 target with binutils ~2.38.
https://bugs.debian.org/
1003490
The incompatibility was introduced in binutils commit:
https://sourceware.org/git/?p=binutils-gdb.git;a=commit;h=
b25f942e18d6ecd7ec3e2d2e9930eb4f996c258a
Gbp-Pq: Name fix-qemu-ppce500-with-binutils-2.38.patch
Vagrant Cascadian [Wed, 6 Apr 2022 20:42:04 +0000 (13:42 -0700)]
[PATCH 2/2] rockchip: Enable AHCI/SCSI/SATA on rockpro64-rk3399.
From
539e85868701524a62942c2b729131ce0175cc2a Mon Sep 17 00:00:00 2001
Origin: https://patchwork.ozlabs.org/project/uboot/patch/
20220406204204.60328-3-vagrant@debian.org/
Add options to enable AHCI, SCSI and SATA.
Signed-off-by: Vagrant Cascadian <vagrant@debian.org>
Gbp-Pq: Topic rockchip
Gbp-Pq: Name 0002-rockchip-Enable-AHCI-SCSI-SATA-on-rockpro64-rk3399.patch
Vagrant Cascadian [Wed, 6 Apr 2022 20:42:03 +0000 (13:42 -0700)]
[PATCH 1/2] rockchip: Enable SCSI in distro bootcmd for rk3399.
From
9184b89aa1bbda6a474357908c09d75ebf98f6db Mon Sep 17 00:00:00 2001
Origin: https://patchwork.ozlabs.org/project/uboot/patch/
20220406204204.60328-2-vagrant@debian.org/
Include SCSI in the list of boot targets if CONFIG_CMD_SCSI is
enabled.
Signed-off-by: Vagrant Cascadian <vagrant@debian.org>
Gbp-Pq: Topic rockchip
Gbp-Pq: Name 0001-rockchip-Enable-SCSI-in-distro-bootcmd-for-rk3399.patch
Vagrant Cascadian [Sun, 10 Apr 2022 23:28:14 +0000 (00:28 +0100)]
rockchip-inno-usb
Downloaded from:
https://patchwork.ozlabs.org/project/uboot/patch/
20210406151059.
1187379-1-icenowy@aosc.io
Downloaded from:
https://patchwork.ozlabs.org/project/uboot/patch/
20210406151059.
1187379-1-icenowy@aosc.io
From: Icenowy Zheng <icenowy@aosc.io>
To: Simon Glass <sjg@chromium.org>, Kever Yang <kever.yang@rock-chips.com>,
Frank Wang <frank.wang@rock-chips.com>,
Jagan Teki <jagan@amarulasolutions.com>
Cc: u-boot@lists.denx.de,
Icenowy Zheng <icenowy@aosc.io>
Subject: [PATCH] phy: rockchip: inno-usb2: fix hang when multiple controllers
exit
Date: Tue, 6 Apr 2021 23:10:59 +0800
Message-Id: <
20210406151059.
1187379-1-icenowy@aosc.io>
The OHCI and EHCI controllers are both bound to the same PHY. They will
both do init and power_on operations when the controller is brought up
and both do power_off and exit when the controller is stopped. However,
the PHY uclass of U-Boot is not as sane as we thought -- they won't
maintain a status mark for PHYs, and thus the functions of the PHYs
could be called for multiple times. Calling init/power_on for multiple
times have no severe problems, however calling power_off/exit for
multiple times have a problem -- the first exit call will stop the PHY
clock, and power_off/exit calls after it still trying to write to PHY
registers. The write operation to PHY registers will fail because clock
is already stopped.
Adapt the count mechanism from phy-sun4i-usb to both init/exit and
power_on/power_off functions to phy-rockchip-inno-usb2 to fix this
problem. With this stopping USB controllers (manually or before booting
a kernel) will work.
Signed-off-by: Icenowy Zheng <icenowy@aosc.io>
Fixes: ac97a9ece14e ("phy: rockchip: Add Rockchip USB2PHY driver")
Tested-by: Peter Robinson <pbrobinson@gmail.com>
Gbp-Pq: Topic rockchip
Gbp-Pq: Name rockchip-inno-usb.patch
Vagrant Cascadian [Sun, 10 Apr 2022 23:28:14 +0000 (00:28 +0100)]
disable-fit-image-tests
Disable FIT image tests.
FIT images were made more robust in light of CVE-2021-27097 and
CVE-2021-27138, but test-imagetools.sh was not updated to reflect
those changes.
Reported upstream: https://lists.denx.de/pipermail/u-boot/2021-March/443460.html
Gbp-Pq: Name disable-fit-image-tests
Vagrant Cascadian [Sun, 10 Apr 2022 23:28:14 +0000 (00:28 +0100)]
bootz_and_raw_initrd
Enable booting of zImage/vmlinuz and initrd without requiring the use
of mkimage to create uImage/uInitrd.
Gbp-Pq: Topic n900
Gbp-Pq: Name bootz_and_raw_initrd.patch
Vagrant Cascadian [Sun, 10 Apr 2022 23:28:14 +0000 (00:28 +0100)]
update-isa-spec
Update to newer default ISA spec in GCC and binutils:
Update to newer default ISA spec in GCC and binutils:
https://lists.infradead.org/pipermail/linux-riscv/2022-January/011728.html
Gbp-Pq: Topic riscv64
Gbp-Pq: Name update-isa-spec.patch
Vagrant Cascadian [Sun, 10 Apr 2022 23:28:14 +0000 (00:28 +0100)]
prevent relocating initrd & fdt, that results in failure to boot
Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/u-boot/+bug/
1937246
===================================================================
Gbp-Pq: Topic riscv64
Gbp-Pq: Name unmatched-prevent-relocating-initrd-and-fdt.patch
Dongjin Kim [Sat, 28 Oct 2017 04:22:27 +0000 (00:22 -0400)]
[PATCH] arm: config: fix default console only to specify the device
This reverts commit
767edf0f6b3eaa0303f3fd6afdc14ddce0aca70c and restores
commit
232ed3ca534708527a9515c7c41bc3542949525c.
Debian's flash-kernel expect the console variable to just contain the device,
because it will set the bootargs to "console=${console}". So revert adding
"console=" to the console parameter, but also adjust the shipped bootscripts
for exynos boards to cope with it.
Bug-Debian: https://bugs.debian.org/920116
Signed-off-by: Benjamin Drung <bdrung@debian.org>
Gbp-Pq: Topic exynos
Gbp-Pq: Name 0001-arm-config-fix-default-console-only-to-specify-the-d.patch
Vagrant Cascadian [Sun, 10 Apr 2022 23:28:14 +0000 (00:28 +0100)]
test-imagetools-test-fixes
This patch allows testing in an alternate directory and also detects
failures to execute commands, treating that as a failure.
Gbp-Pq: Name test-imagetools-test-fixes
Ian Campbell [Sun, 10 Apr 2022 23:28:14 +0000 (00:28 +0100)]
Add spl/arndale-spl.bin rule
Gbp-Pq: Topic arndale
Gbp-Pq: Name board-spl-rule.diff
Vagrant Cascadian [Sun, 10 Apr 2022 23:28:14 +0000 (00:28 +0100)]
mx53loco
Enables support for ext4, the "load" command, and using bootz with raw initrds.
Gbp-Pq: Name mx53loco
Hector Oron [Sun, 10 Apr 2022 23:28:14 +0000 (00:28 +0100)]
Enable generic tools build
Gbp-Pq: Name tools-generic-builds.patch
Vagrant Cascadian [Sun, 10 Apr 2022 23:28:14 +0000 (00:28 +0100)]
add-debian-revision-to-u-boot-version
Add the debian revision to the U-boot version, which is displayed at
boot and can be helpful to determine which specific version is used.
Gbp-Pq: Name add-debian-revision-to-u-boot-version
Vagrant Cascadian [Sun, 10 Apr 2022 23:28:14 +0000 (00:28 +0100)]
u-boot (2022.04+dfsg-2) unstable; urgency=medium
* debian/watch: Exclude erroneous upstream version.
* debian/patches: Add patches submitted upstream to enable SCSI on
rockpro64.
[dgit import unpatched u-boot 2022.04+dfsg-2]
Vagrant Cascadian [Sun, 10 Apr 2022 23:28:14 +0000 (00:28 +0100)]
Import u-boot_2022.04+dfsg-2.debian.tar.xz
[dgit import tarball u-boot 2022.04+dfsg-2 u-boot_2022.04+dfsg-2.debian.tar.xz]
Vagrant Cascadian [Tue, 5 Apr 2022 16:26:39 +0000 (17:26 +0100)]
Merge u-boot (2022.04+dfsg-1) import into refs/heads/workingbranch
Vagrant Cascadian [Tue, 5 Apr 2022 16:26:39 +0000 (17:26 +0100)]
Import u-boot_2022.04+dfsg.orig.tar.xz
[dgit import orig u-boot_2022.04+dfsg.orig.tar.xz]
Vagrant Cascadian [Tue, 5 Apr 2022 16:26:39 +0000 (17:26 +0100)]
fix-qemu-ppce500-with-binutils-2.38
Fix building qemu-ppce500 target with binutils ~2.38.
https://bugs.debian.org/
1003490
The incompatibility was introduced in binutils commit:
https://sourceware.org/git/?p=binutils-gdb.git;a=commit;h=
b25f942e18d6ecd7ec3e2d2e9930eb4f996c258a
Gbp-Pq: Name fix-qemu-ppce500-with-binutils-2.38.patch
Vagrant Cascadian [Tue, 5 Apr 2022 16:26:39 +0000 (17:26 +0100)]
rockchip-inno-usb
Downloaded from:
https://patchwork.ozlabs.org/project/uboot/patch/
20210406151059.
1187379-1-icenowy@aosc.io
Downloaded from:
https://patchwork.ozlabs.org/project/uboot/patch/
20210406151059.
1187379-1-icenowy@aosc.io
From: Icenowy Zheng <icenowy@aosc.io>
To: Simon Glass <sjg@chromium.org>, Kever Yang <kever.yang@rock-chips.com>,
Frank Wang <frank.wang@rock-chips.com>,
Jagan Teki <jagan@amarulasolutions.com>
Cc: u-boot@lists.denx.de,
Icenowy Zheng <icenowy@aosc.io>
Subject: [PATCH] phy: rockchip: inno-usb2: fix hang when multiple controllers
exit
Date: Tue, 6 Apr 2021 23:10:59 +0800
Message-Id: <
20210406151059.
1187379-1-icenowy@aosc.io>
The OHCI and EHCI controllers are both bound to the same PHY. They will
both do init and power_on operations when the controller is brought up
and both do power_off and exit when the controller is stopped. However,
the PHY uclass of U-Boot is not as sane as we thought -- they won't
maintain a status mark for PHYs, and thus the functions of the PHYs
could be called for multiple times. Calling init/power_on for multiple
times have no severe problems, however calling power_off/exit for
multiple times have a problem -- the first exit call will stop the PHY
clock, and power_off/exit calls after it still trying to write to PHY
registers. The write operation to PHY registers will fail because clock
is already stopped.
Adapt the count mechanism from phy-sun4i-usb to both init/exit and
power_on/power_off functions to phy-rockchip-inno-usb2 to fix this
problem. With this stopping USB controllers (manually or before booting
a kernel) will work.
Signed-off-by: Icenowy Zheng <icenowy@aosc.io>
Fixes: ac97a9ece14e ("phy: rockchip: Add Rockchip USB2PHY driver")
Tested-by: Peter Robinson <pbrobinson@gmail.com>
Gbp-Pq: Topic rockchip
Gbp-Pq: Name rockchip-inno-usb.patch
Vagrant Cascadian [Tue, 5 Apr 2022 16:26:39 +0000 (17:26 +0100)]
disable-fit-image-tests
Disable FIT image tests.
FIT images were made more robust in light of CVE-2021-27097 and
CVE-2021-27138, but test-imagetools.sh was not updated to reflect
those changes.
Reported upstream: https://lists.denx.de/pipermail/u-boot/2021-March/443460.html
Gbp-Pq: Name disable-fit-image-tests
Vagrant Cascadian [Tue, 5 Apr 2022 16:26:39 +0000 (17:26 +0100)]
bootz_and_raw_initrd
Enable booting of zImage/vmlinuz and initrd without requiring the use
of mkimage to create uImage/uInitrd.
Gbp-Pq: Topic n900
Gbp-Pq: Name bootz_and_raw_initrd.patch
Vagrant Cascadian [Tue, 5 Apr 2022 16:26:39 +0000 (17:26 +0100)]
update-isa-spec
Update to newer default ISA spec in GCC and binutils:
Update to newer default ISA spec in GCC and binutils:
https://lists.infradead.org/pipermail/linux-riscv/2022-January/011728.html
Gbp-Pq: Topic riscv64
Gbp-Pq: Name update-isa-spec.patch
Vagrant Cascadian [Tue, 5 Apr 2022 16:26:39 +0000 (17:26 +0100)]
prevent relocating initrd & fdt, that results in failure to boot
Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/u-boot/+bug/
1937246
===================================================================
Gbp-Pq: Topic riscv64
Gbp-Pq: Name unmatched-prevent-relocating-initrd-and-fdt.patch
Dongjin Kim [Sat, 28 Oct 2017 04:22:27 +0000 (00:22 -0400)]
[PATCH] arm: config: fix default console only to specify the device
This reverts commit
767edf0f6b3eaa0303f3fd6afdc14ddce0aca70c and restores
commit
232ed3ca534708527a9515c7c41bc3542949525c.
Debian's flash-kernel expect the console variable to just contain the device,
because it will set the bootargs to "console=${console}". So revert adding
"console=" to the console parameter, but also adjust the shipped bootscripts
for exynos boards to cope with it.
Bug-Debian: https://bugs.debian.org/920116
Signed-off-by: Benjamin Drung <bdrung@debian.org>
Gbp-Pq: Topic exynos
Gbp-Pq: Name 0001-arm-config-fix-default-console-only-to-specify-the-d.patch
Vagrant Cascadian [Tue, 5 Apr 2022 16:26:39 +0000 (17:26 +0100)]
test-imagetools-test-fixes
This patch allows testing in an alternate directory and also detects
failures to execute commands, treating that as a failure.
Gbp-Pq: Name test-imagetools-test-fixes
Ian Campbell [Tue, 5 Apr 2022 16:26:39 +0000 (17:26 +0100)]
Add spl/arndale-spl.bin rule
Gbp-Pq: Topic arndale
Gbp-Pq: Name board-spl-rule.diff
Vagrant Cascadian [Tue, 5 Apr 2022 16:26:39 +0000 (17:26 +0100)]
mx53loco
Enables support for ext4, the "load" command, and using bootz with raw initrds.
Gbp-Pq: Name mx53loco
Hector Oron [Tue, 5 Apr 2022 16:26:39 +0000 (17:26 +0100)]
Enable generic tools build
Gbp-Pq: Name tools-generic-builds.patch
Vagrant Cascadian [Tue, 5 Apr 2022 16:26:39 +0000 (17:26 +0100)]
add-debian-revision-to-u-boot-version
Add the debian revision to the U-boot version, which is displayed at
boot and can be helpful to determine which specific version is used.
Gbp-Pq: Name add-debian-revision-to-u-boot-version
Vagrant Cascadian [Tue, 5 Apr 2022 16:26:39 +0000 (17:26 +0100)]
u-boot (2022.04+dfsg-1) unstable; urgency=medium
* New upstream release.
* debian/upstream/signing-key: Update key.
[dgit import unpatched u-boot 2022.04+dfsg-1]
Vagrant Cascadian [Tue, 5 Apr 2022 16:26:39 +0000 (17:26 +0100)]
Import u-boot_2022.04+dfsg-1.debian.tar.xz
[dgit import tarball u-boot 2022.04+dfsg-1 u-boot_2022.04+dfsg-1.debian.tar.xz]
Vagrant Cascadian [Wed, 26 Jan 2022 19:58:27 +0000 (19:58 +0000)]
Merge u-boot (2022.01+dfsg-2) import into refs/heads/workingbranch
Vagrant Cascadian [Wed, 26 Jan 2022 19:58:27 +0000 (19:58 +0000)]
fix-qemu-ppce500-with-binutils-2.38
Fix building qemu-ppce500 target with binutils ~2.38.
https://bugs.debian.org/
1003490
The incompatibility was introduced in binutils commit:
https://sourceware.org/git/?p=binutils-gdb.git;a=commit;h=
b25f942e18d6ecd7ec3e2d2e9930eb4f996c258a
Gbp-Pq: Name fix-qemu-ppce500-with-binutils-2.38.patch
Vagrant Cascadian [Wed, 26 Jan 2022 19:58:27 +0000 (19:58 +0000)]
rockchip-inno-usb
Downloaded from:
https://patchwork.ozlabs.org/project/uboot/patch/
20210406151059.
1187379-1-icenowy@aosc.io
Downloaded from:
https://patchwork.ozlabs.org/project/uboot/patch/
20210406151059.
1187379-1-icenowy@aosc.io
From: Icenowy Zheng <icenowy@aosc.io>
To: Simon Glass <sjg@chromium.org>, Kever Yang <kever.yang@rock-chips.com>,
Frank Wang <frank.wang@rock-chips.com>,
Jagan Teki <jagan@amarulasolutions.com>
Cc: u-boot@lists.denx.de,
Icenowy Zheng <icenowy@aosc.io>
Subject: [PATCH] phy: rockchip: inno-usb2: fix hang when multiple controllers
exit
Date: Tue, 6 Apr 2021 23:10:59 +0800
Message-Id: <
20210406151059.
1187379-1-icenowy@aosc.io>
The OHCI and EHCI controllers are both bound to the same PHY. They will
both do init and power_on operations when the controller is brought up
and both do power_off and exit when the controller is stopped. However,
the PHY uclass of U-Boot is not as sane as we thought -- they won't
maintain a status mark for PHYs, and thus the functions of the PHYs
could be called for multiple times. Calling init/power_on for multiple
times have no severe problems, however calling power_off/exit for
multiple times have a problem -- the first exit call will stop the PHY
clock, and power_off/exit calls after it still trying to write to PHY
registers. The write operation to PHY registers will fail because clock
is already stopped.
Adapt the count mechanism from phy-sun4i-usb to both init/exit and
power_on/power_off functions to phy-rockchip-inno-usb2 to fix this
problem. With this stopping USB controllers (manually or before booting
a kernel) will work.
Signed-off-by: Icenowy Zheng <icenowy@aosc.io>
Fixes: ac97a9ece14e ("phy: rockchip: Add Rockchip USB2PHY driver")
Tested-by: Peter Robinson <pbrobinson@gmail.com>
Gbp-Pq: Topic rockchip
Gbp-Pq: Name rockchip-inno-usb.patch
Vagrant Cascadian [Wed, 26 Jan 2022 19:58:27 +0000 (19:58 +0000)]
disable-fit-image-tests
Disable FIT image tests.
FIT images were made more robust in light of CVE-2021-27097 and
CVE-2021-27138, but test-imagetools.sh was not updated to reflect
those changes.
Reported upstream: https://lists.denx.de/pipermail/u-boot/2021-March/443460.html
Gbp-Pq: Name disable-fit-image-tests
Vagrant Cascadian [Wed, 26 Jan 2022 19:58:27 +0000 (19:58 +0000)]
bootz_and_raw_initrd
Enable booting of zImage/vmlinuz and initrd without requiring the use
of mkimage to create uImage/uInitrd.
Gbp-Pq: Topic n900
Gbp-Pq: Name bootz_and_raw_initrd.patch
Vagrant Cascadian [Wed, 26 Jan 2022 19:58:27 +0000 (19:58 +0000)]
update-isa-spec
Update to newer default ISA spec in GCC and binutils:
Update to newer default ISA spec in GCC and binutils:
https://lists.infradead.org/pipermail/linux-riscv/2022-January/011728.html
Gbp-Pq: Topic riscv64
Gbp-Pq: Name update-isa-spec.patch
Vagrant Cascadian [Wed, 26 Jan 2022 19:58:27 +0000 (19:58 +0000)]
prevent relocating initrd & fdt, that results in failure to boot
Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/u-boot/+bug/
1937246
===================================================================
Gbp-Pq: Topic riscv64
Gbp-Pq: Name unmatched-prevent-relocating-initrd-and-fdt.patch
Dongjin Kim [Sat, 28 Oct 2017 04:22:27 +0000 (00:22 -0400)]
[PATCH] arm: config: fix default console only to specify the device
This reverts commit
767edf0f6b3eaa0303f3fd6afdc14ddce0aca70c and restores
commit
232ed3ca534708527a9515c7c41bc3542949525c.
Debian's flash-kernel expect the console variable to just contain the device,
because it will set the bootargs to "console=${console}". So revert adding
"console=" to the console parameter, but also adjust the shipped bootscripts
for exynos boards to cope with it.
Bug-Debian: https://bugs.debian.org/920116
Signed-off-by: Benjamin Drung <bdrung@debian.org>
Gbp-Pq: Topic exynos
Gbp-Pq: Name 0001-arm-config-fix-default-console-only-to-specify-the-d.patch
Vagrant Cascadian [Wed, 26 Jan 2022 19:58:27 +0000 (19:58 +0000)]
test-imagetools-test-fixes
This patch allows testing in an alternate directory and also detects
failures to execute commands, treating that as a failure.
Gbp-Pq: Name test-imagetools-test-fixes
Vagrant Cascadian [Wed, 26 Jan 2022 19:58:27 +0000 (19:58 +0000)]
ensure-config-sandbox-for-make-env
Ensure that CONFIG_SANDBOX is set when running "make env", avoiding a
failure to build caused by config_distro_bootcmd.h following the wrong
codepath...
Gbp-Pq: Name ensure-config-sandbox-for-make-env.patch
Ian Campbell [Wed, 26 Jan 2022 19:58:27 +0000 (19:58 +0000)]
Add spl/arndale-spl.bin rule
Gbp-Pq: Topic arndale
Gbp-Pq: Name board-spl-rule.diff
Vagrant Cascadian [Wed, 26 Jan 2022 19:58:27 +0000 (19:58 +0000)]
mx53loco
Enables support for ext4, the "load" command, and using bootz with raw initrds.
Gbp-Pq: Name mx53loco
Hector Oron [Wed, 26 Jan 2022 19:58:27 +0000 (19:58 +0000)]
Enable generic tools build
Gbp-Pq: Name tools-generic-builds.patch
Vagrant Cascadian [Wed, 26 Jan 2022 19:58:27 +0000 (19:58 +0000)]
add-debian-revision-to-u-boot-version
Add the debian revision to the U-boot version, which is displayed at
boot and can be helpful to determine which specific version is used.
Gbp-Pq: Name add-debian-revision-to-u-boot-version
Vagrant Cascadian [Wed, 26 Jan 2022 19:58:27 +0000 (19:58 +0000)]
u-boot (2022.01+dfsg-2) unstable; urgency=medium
* debian/patches: Fix building qemu-ppce500 target with binutils
2.38. Thanks to Aurelien Jarno! (Closes: #
1003490)
* debian/patches: Update to newer riscv64 default ISA spec.
Thanks to Aurelien Jarno! (Closes: #
1003490)
* debian/control: Add versioned Build-Depends on binutils.
* debian/control: Update versioned Build-Depends on opensbi.
[dgit import unpatched u-boot 2022.01+dfsg-2]
Vagrant Cascadian [Wed, 26 Jan 2022 19:58:27 +0000 (19:58 +0000)]
Import u-boot_2022.01+dfsg-2.debian.tar.xz
[dgit import tarball u-boot 2022.01+dfsg-2 u-boot_2022.01+dfsg-2.debian.tar.xz]
Vagrant Cascadian [Mon, 10 Jan 2022 22:07:13 +0000 (22:07 +0000)]
Merge u-boot (2022.01+dfsg-1) import into refs/heads/workingbranch
Vagrant Cascadian [Mon, 10 Jan 2022 22:07:13 +0000 (22:07 +0000)]
Import u-boot_2022.01+dfsg.orig.tar.xz
[dgit import orig u-boot_2022.01+dfsg.orig.tar.xz]
Vagrant Cascadian [Mon, 10 Jan 2022 22:07:13 +0000 (22:07 +0000)]
rockchip-inno-usb
Downloaded from:
https://patchwork.ozlabs.org/project/uboot/patch/
20210406151059.
1187379-1-icenowy@aosc.io
Downloaded from:
https://patchwork.ozlabs.org/project/uboot/patch/
20210406151059.
1187379-1-icenowy@aosc.io
From: Icenowy Zheng <icenowy@aosc.io>
To: Simon Glass <sjg@chromium.org>, Kever Yang <kever.yang@rock-chips.com>,
Frank Wang <frank.wang@rock-chips.com>,
Jagan Teki <jagan@amarulasolutions.com>
Cc: u-boot@lists.denx.de,
Icenowy Zheng <icenowy@aosc.io>
Subject: [PATCH] phy: rockchip: inno-usb2: fix hang when multiple controllers
exit
Date: Tue, 6 Apr 2021 23:10:59 +0800
Message-Id: <
20210406151059.
1187379-1-icenowy@aosc.io>
The OHCI and EHCI controllers are both bound to the same PHY. They will
both do init and power_on operations when the controller is brought up
and both do power_off and exit when the controller is stopped. However,
the PHY uclass of U-Boot is not as sane as we thought -- they won't
maintain a status mark for PHYs, and thus the functions of the PHYs
could be called for multiple times. Calling init/power_on for multiple
times have no severe problems, however calling power_off/exit for
multiple times have a problem -- the first exit call will stop the PHY
clock, and power_off/exit calls after it still trying to write to PHY
registers. The write operation to PHY registers will fail because clock
is already stopped.
Adapt the count mechanism from phy-sun4i-usb to both init/exit and
power_on/power_off functions to phy-rockchip-inno-usb2 to fix this
problem. With this stopping USB controllers (manually or before booting
a kernel) will work.
Signed-off-by: Icenowy Zheng <icenowy@aosc.io>
Fixes: ac97a9ece14e ("phy: rockchip: Add Rockchip USB2PHY driver")
Tested-by: Peter Robinson <pbrobinson@gmail.com>
Gbp-Pq: Topic rockchip
Gbp-Pq: Name rockchip-inno-usb.patch
Vagrant Cascadian [Mon, 10 Jan 2022 22:07:13 +0000 (22:07 +0000)]
disable-fit-image-tests
Disable FIT image tests.
FIT images were made more robust in light of CVE-2021-27097 and
CVE-2021-27138, but test-imagetools.sh was not updated to reflect
those changes.
Reported upstream: https://lists.denx.de/pipermail/u-boot/2021-March/443460.html
Gbp-Pq: Name disable-fit-image-tests
Vagrant Cascadian [Mon, 10 Jan 2022 22:07:13 +0000 (22:07 +0000)]
bootz_and_raw_initrd
Enable booting of zImage/vmlinuz and initrd without requiring the use
of mkimage to create uImage/uInitrd.
Gbp-Pq: Topic n900
Gbp-Pq: Name bootz_and_raw_initrd.patch
Vagrant Cascadian [Mon, 10 Jan 2022 22:07:13 +0000 (22:07 +0000)]
prevent relocating initrd & fdt, that results in failure to boot
Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/u-boot/+bug/
1937246
===================================================================
Gbp-Pq: Topic riscv64
Gbp-Pq: Name unmatched-prevent-relocating-initrd-and-fdt.patch
Dongjin Kim [Sat, 28 Oct 2017 04:22:27 +0000 (00:22 -0400)]
[PATCH] arm: config: fix default console only to specify the device
This reverts commit
767edf0f6b3eaa0303f3fd6afdc14ddce0aca70c and restores
commit
232ed3ca534708527a9515c7c41bc3542949525c.
Debian's flash-kernel expect the console variable to just contain the device,
because it will set the bootargs to "console=${console}". So revert adding
"console=" to the console parameter, but also adjust the shipped bootscripts
for exynos boards to cope with it.
Bug-Debian: https://bugs.debian.org/920116
Signed-off-by: Benjamin Drung <bdrung@debian.org>
Gbp-Pq: Topic exynos
Gbp-Pq: Name 0001-arm-config-fix-default-console-only-to-specify-the-d.patch