arm: rpi: Increase headroom available to kernel image when relocated
3 unresolved threads
3 unresolved threads
Compare changes
Files
3
debian/patches/apertis/rpi/0049-arm-rpi-Increase-headroom-available-to-kernel-image-.patch
0 → 100644
+ 65
− 0
- Comment on lines +59 to +63
What about having different configurations, one for ARM and another for ARM64? I think that in this way the impact will be reduced, and it will be clearer. Something like
#ifdef CONFIG_ARM64 fdt_high=ffffffffffffffff initrd_high=ffffffffffffffff pxefile_addr_r=0x00080000 scriptaddr=0x00100000 kernel_addr_r=0x00200000 fdt_addr_r=0x03400000 ramdisk_addr_r=0x03500000 #else fdt_high=ffffffff initrd_high=ffffffff kernel_addr_r=0x00080000 scriptaddr=0x02400000 pxefile_addr_r=0x02500000 fdt_addr_r=0x02600000 ramdisk_addr_r=0x02700000 #endif
I have submitted my proposal upstream
The new proposed approach is in !117 (merged)
this should be ideally written in a way that would make sense upstream ;)