alarm/uboot-raspberrypi to 2024.07-3

Add 8250.nr_uarts=1 to armv7 to allow picocom booting
This commit is contained in:
graysky 2024-07-08 11:48:34 -04:00
parent b55595df83
commit 1d5af7b2d5
2 changed files with 3 additions and 3 deletions

View file

@ -4,7 +4,7 @@
pkgname=uboot-raspberrypi
pkgver=2024.07
pkgrel=2
pkgrel=3
pkgdesc="U-Boot for Raspberry Pi"
arch=('armv7h' 'aarch64')
url='https://docs.u-boot.org/en/latest'
@ -81,7 +81,7 @@ md5sums=('f750ca945f4a4d6a69b36259c8b68689'
'8dea82ecb9ec769246767836c74fb8f7'
'35074bb767e8b259c5825b0c1f17fd60'
'636c8ac2098ebf0acdc2ff15430edf0d'
'69e883f0b8d1686b32bdf79684623f06'
'f8ad4508b9734e9e13aedb9f7419d7a3'
'be8abe44b86d63428d7ac3acc64ee3bf'
'021623a04afd29ac3f368977140cfbfd')

View file

@ -3,7 +3,7 @@
# Set root partition to the second partition of boot device
part uuid ${devtype} ${devnum}:2 uuid
setenv bootargs console=ttyAMA0,115200 root=PARTUUID=${uuid} rw rootwait smsc95xx.macaddr=${usbethaddr}
setenv bootargs 8250.nr_uarts=1 console=ttyAMA0,115200 root=PARTUUID=${uuid} rw rootwait smsc95xx.macaddr=${usbethaddr}
if load ${devtype} ${devnum}:${bootpart} ${kernel_addr_r} /zImage; then
if load ${devtype} ${devnum}:${bootpart} ${fdt_addr_r} /dtbs/${fdtfile}; then