nexmon – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 include definitions.mk
2  
3 all: ucode.bin
4  
5 ucode.bin: $(RAM_FILE) definitions.mk
6 @printf "\033[0;31m EXTRACTING UCODE\033[0m\n"
7 $(Q)dd if=$< of=$@ bs=1 skip=$$(($(UCODESTART)-$(RAMSTART))) count=$$(($(UCODESIZE))) 2>/dev/null
8  
9 clean:
10 @printf "\033[0;31m CLEANING\033[0m\n"
11 $(Q)rm -f ucode.bin