File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -210,7 +210,14 @@ jobs:
210
210
211
211
echo "Copying Image.lz4 and concatenating DTB files..."
212
212
cp ./out/arch/arm64/boot/Image.lz4 ../AnyKernel3/Image.lz4
213
- cat ./out/google-devices/${{ inputs.codename }}/dts/*.dtb > ../AnyKernel3/dtb
213
+ if [ "${{ inputs.codename }}" == "gs201" ]; then
214
+ cat ./out/google-devices/gs201/dts/*.dtb > ../AnyKernel3/dtb
215
+ #cp ./out/google-devices/gs201/dts/dtbo.img ../AnyKernel3/dtbo.img
216
+ elif [ "${{ inputs.codename }}" == "zuma" ]; then
217
+ cat ./out/google-devices/zuma/dts/*.dtb > ../AnyKernel3/dtb
218
+ elif [ "${{ inputs.codename }}" == "zumapro" ]; then
219
+ cat ./out/google-devices/zumapro/dts/*.dtb > ../AnyKernel3/dtb
220
+ fi
214
221
215
222
- name : Create ZIP Files for Different Formats
216
223
run : |
You can’t perform that action at this time.
0 commit comments