nexmon – Rev 1
?pathlinks?
include definitions.mk
all: ucode.bin
ucode.bin: $(RAM_FILE) definitions.mk
@printf "\033[0;31m EXTRACTING UCODE\033[0m\n"
$(Q)dd if=$< of=$@ bs=1 skip=$$(($(UCODESTART)-$(RAMSTART))) count=$$(($(UCODESIZE))) 2>/dev/null
clean:
@printf "\033[0;31m CLEANING\033[0m\n"
$(Q)rm -f ucode.bin