diff options
| author | Tim Harvey | 2025-06-19 21:34:34 +0000 |
|---|---|---|
| committer | Robert Marko | 2025-06-25 19:02:35 +0000 |
| commit | 009aad8a02f1dbd70f0829d9d3f8b157be0b0c4e (patch) | |
| tree | 2ed5a83f2cc07a63f56bb88236abfd77f2f04959 | |
| parent | fa34d9c5112fe27c126900d741786d1ac1039f5f (diff) | |
| download | openwrt-009aad8a02f1dbd70f0829d9d3f8b157be0b0c4e.tar.gz | |
imx: venice: disable PCI AER
As a workaround to an issue causing hang during PCI enumeration on
imx8mp with a specific PCI switch, disable PCI AER.
Signed-off-by: Tim Harvey <tharvey@gateworks.com>
Link: https://github.com/openwrt/openwrt/pull/19218
Signed-off-by: Robert Marko <robimarko@gmail.com>
| -rw-r--r-- | target/linux/imx/image/bootscript-gateworks_venice | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/imx/image/bootscript-gateworks_venice b/target/linux/imx/image/bootscript-gateworks_venice index 3f87bae50b..fceed130af 100644 --- a/target/linux/imx/image/bootscript-gateworks_venice +++ b/target/linux/imx/image/bootscript-gateworks_venice @@ -22,7 +22,7 @@ echo "Gateworks Venice OpenWrt Boot script v1.0" # partition, therefore we add 1 to the current partition setexpr rootpart ${distro_bootpart} + 1 # root on 'next' partition part uuid ${devtype} ${devnum}:${rootpart} uuid -setenv bootargs ${bootargs} console=${console} root=PARTUUID=${uuid} rootfstype=squashfs,ext4,f2fs rootwait +setenv bootargs ${bootargs} console=${console} root=PARTUUID=${uuid} rootfstype=squashfs,ext4,f2fs rootwait pci=noaer # load dtb (we try fdt_file and then fdt_file{1,2,3,4,5}) echo "loading DTB..." |