mirror of
https://github.com/GaryOderNichts/drc-fw-patches.git
synced 2024-11-24 03:09:16 +01:00
Improve version patching in Makefile
This commit is contained in:
parent
22562059d8
commit
4c2d3eef36
4
Makefile
4
Makefile
@ -19,8 +19,8 @@ patch: unpack
|
|||||||
|
|
||||||
@echo "Patching versions..."
|
@echo "Patching versions..."
|
||||||
# patch version to 254.0.0 (blob_header.bin is big endian, VER_.bin is little endian)
|
# patch version to 254.0.0 (blob_header.bin is big endian, VER_.bin is little endian)
|
||||||
@printf '\xfe\x00\x00\x00' | dd of=unpacked/blob_header.bin bs=1 seek=0 conv=notrunc
|
@env printf '\xfe\x00\x00\x00' | dd of=unpacked/blob_header.bin bs=1 seek=0 count=4 conv=notrunc
|
||||||
@printf '\x00\x00\x00\xfe' | dd of=unpacked/VER_.bin bs=1 seek=0 conv=notrunc
|
@env printf '\x00\x00\x00\xfe' | dd of=unpacked/VER_.bin bs=1 seek=0 count=4 conv=notrunc
|
||||||
|
|
||||||
pack: patch
|
pack: patch
|
||||||
@echo "Packing firmware..."
|
@echo "Packing firmware..."
|
||||||
|
Loading…
Reference in New Issue
Block a user