Package: u-boot / 2023.01+dfsg-2+deb12u1
Metadata
Package | Version | Patches format |
---|---|---|
u-boot | 2023.01+dfsg-2+deb12u1 | 3.0 (quilt) |
Patch series
view the series filePatch | File delta | Description |
---|---|---|
mx53loco | (download) |
configs/mx53loco_defconfig |
1 1 + 0 - 0 ! |
--- |
arndale/board spl rule.diff | (download) |
Makefile |
3 3 + 0 - 0 ! |
add spl/arndale-spl.bin rule |
test imagetools test fixes | (download) |
test/image/test-imagetools.sh |
26 13 + 13 - 0 ! |
--- |
exynos/0001 arm config fix default console only to specify the d.patch | (download) |
board/samsung/common/bootscripts/autoboot.cmd |
2 1 + 1 - 0 ! |
[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> |
riscv64/unmatched prevent relocating initrd and fdt.patch | (download) |
include/configs/sifive-unmatched.h |
2 2 + 0 - 0 ! |
prevent relocating initrd & fdt, that results in failure to boot |
disable fit image tests | (download) |
test/image/test-imagetools.sh |
12 0 + 12 - 0 ! |
--- |
rockchip/rockchip inno usb.patch | (download) |
drivers/phy/rockchip/phy-rockchip-inno-usb2.c |
21 21 + 0 - 0 ! |
[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> |
rockchip/rockchip roc pc rk3399 Enable rockchip efuse support.patch | (download) |
configs/roc-pc-mezzanine-rk3399_defconfig |
2 2 + 0 - 0 ! |
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> |
qemu/efi secure boot.patch | (download) |
configs/qemu-x86_64_defconfig |
2 2 + 0 - 0 ! |
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 |
fix qemu ppce500 with binutils 2.38.patch | (download) |
arch/powerpc/cpu/mpc85xx/tlb.c |
21 17 + 4 - 0 ! |
--- |
Makefile Use relative paths for debugging symbols.patch | (download) |
Makefile |
8 6 + 2 - 0 ! |
[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> |
tools disable video logo | (download) |
configs/tools-only_defconfig |
1 1 + 0 - 0 ! |
--- |
riscv64/vbe Allow probing the VBE bootmeth to fail in OS fixup.patch | (download) |
boot/vbe_simple_os.c |
16 12 + 4 - 0 ! |
[patch v2] vbe: allow probing the vbe bootmeth to fail in os fixup Date: Thu, 12 Jan 2023 16:48:54 -0700 Message-Id: <20230112234854.936325-1-sjg@chromium.org> |
upstream/0001 timer orion timer Fix problem in early_init_done.patch | (download) |
drivers/timer/orion-timer.c |
3 2 + 1 - 0 ! |
[patch] timer: orion-timer: fix problem in early_init_done() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It was noticed that Clearfog is currently broken with this newly introduced early_init_done() function. Apparently the timer is enabled here when U-Boot is run but not configured - at least not correctly. Resulting in a hangup in the timer reading functions. To fix this, also read the value of the reload register and check it's value with the one written to by U-Boot. Only if this matches, the init has already been done. Fixes: 5387b093cb79 ("timer: orion-timer: Fix problem with early static variable") Signed-off-by: Stefan Roese <sr@denx.de> |