"file" missing in Windows file length setting command. See https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/fsutil-file
This commit is contained in:
parent
7edd6efd9d
commit
cc183e6509
|
@ -160,7 +160,7 @@ ifeq ("$(PAD_FLASH_SIZE)","")
|
||||||
endif
|
endif
|
||||||
ifeq ($(OS),Windows_NT)
|
ifeq ($(OS),Windows_NT)
|
||||||
RM = del /F/Q
|
RM = del /F/Q
|
||||||
PAD_CMD = fsutil seteof $@ $(PAD_FLASH_SIZE)
|
PAD_CMD = fsutil file seteof $@ $(PAD_FLASH_SIZE)
|
||||||
else
|
else
|
||||||
RM = rm -f
|
RM = rm -f
|
||||||
PAD_CMD = truncate -s $(PAD_FLASH_SIZE) $@
|
PAD_CMD = truncate -s $(PAD_FLASH_SIZE) $@
|
||||||
|
|
Loading…
Reference in a new issue