Sergeev Artemiy

Results 3 comments of Sergeev Artemiy

@lukef any updates on this?) @gibahjoe, I would suggest to also update `README.md` file accordingly

Did you try `find out/arch/arm64/boot/dts/vendor/qcom -name '*.dtb' -exec cat {} + > out/arch/arm64/boot/dtb`?

AFAIU you can create it manually by changing [lines in config](https://github.com/kristofpetho/kernel_oneplus_sm8350/blob/0a8c8e0a63856ca87880fdce46fe393043bade67/arch/arm64/configs/omega_defconfig#L437): ```diff -# CONFIG_BUILD_ARM64_UNCOMPRESSED_KERNEL=y +CONFIG_BUILD_ARM64_KERNEL_COMPRESSION_GZIP=y ``` And then concatenating `dtb` with `Image.gz` (should appear after re-building): ```bash find out/arch/arm64/boot/dts/vendor/qcom -name...