Replies: 1 comment
-
|
The SC2/S905X4 patches and DTS files are not fully available in the public Linux repository yet. As stated in the README:
and also:
So devmfc may be using local/private patches that are not present in the public kernel tree or in the debian-on-amlogic repository. However, the DTBs are included in the released images. You can extract them from a Debian/Ubuntu image from the releases page: Example: unxz image.img.xz
sudo losetup --show -fP image.imgTake note of the created loop device (example: Then: sudo mkdir -p /mnt/devmfc-image-boot
sudo mount /dev/loop0p1 /mnt/devmfc-image-bootThe DTBs are usually located in something like: /mnt/devmfc-image-boot/dtb-6.18.26-meson64/amlogicYou can search for SC2 DTBs with: find /mnt/devmfc-image-boot/dtb-6.18.26-meson64/amlogic | grep -i sc2Copy the DTB you want, then unmount everything: sudo umount /mnt/devmfc-image-boot
sudo losetup -d /dev/loop0If you want to inspect or modify the DTB, convert it back to DTS using dtc -I dtb -O dts -o output.dts input.dtb |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
where can i find the patched kernel source code for s905x4 (sc2), i have checked all branches of your linux repository, but i cant find the dts for s905x4 (sc2)?
Beta Was this translation helpful? Give feedback.
All reactions