badaed7177
* Moved more PinePhone related kernel stuff to the upstream * Added cma=256M so the CSI subsystem doesn't throw out-of-memory errors when capturing at higher than 1280x720 resolutions (but it still hangs) * Removed a lot of modules that get compiled for DVB tuners after enableing the camera stuff. [ci:skip-build]: doesn't finish in time
19 lines
612 B
Batchfile
19 lines
612 B
Batchfile
setenv bootargs init=/init.sh rw console=tty0 console=ttyS0,115200 no_console_suspend earlycon=uart,mmio32,0x01c28000 panic=10 consoleblank=0 loglevel=1 cma=256M PMOS_NO_OUTPUT_REDIRECT
|
|
|
|
printenv
|
|
|
|
echo Loading DTB
|
|
load mmc ${mmc_bootdev}:1 ${fdt_addr_r} dtb-postmarketos-allwinner.dtb
|
|
|
|
echo Loading Initramfs
|
|
load mmc ${mmc_bootdev}:1 ${ramdisk_addr_r} uInitrd-postmarketos-allwinner
|
|
|
|
echo Loading Kernel
|
|
load mmc ${mmc_bootdev}:1 ${kernel_addr_r} vmlinuz-postmarketos-allwinner-dtb
|
|
|
|
echo Resizing FDT
|
|
fdt addr ${fdt_addr_r}
|
|
fdt resize
|
|
|
|
echo Booting kernel
|
|
booti ${kernel_addr_r} ${ramdisk_addr_r} ${fdt_addr_r}
|