made initanim internal
This commit is contained in:
parent
ee4c420b41
commit
f92234da78
|
@ -22,7 +22,7 @@ void main_final(void) {
|
||||||
|
|
||||||
init_nick();
|
init_nick();
|
||||||
if(GLOBAL(privacy)>2){ //firstboot
|
if(GLOBAL(privacy)>2){ //firstboot
|
||||||
execute_file("initanim.c0d");
|
execute_file("initanim.int");
|
||||||
if(execute_file("1boot.int")){
|
if(execute_file("1boot.int")){
|
||||||
lcdPrintln("Badge SETUP");
|
lcdPrintln("Badge SETUP");
|
||||||
lcdPrintln("error.");
|
lcdPrintln("error.");
|
||||||
|
|
|
@ -31,7 +31,7 @@ CRYPTFLAGS=-p
|
||||||
skey=`cd .. && ./getkey.pl l0dable_sign`
|
skey=`cd .. && ./getkey.pl l0dable_sign`
|
||||||
ekey=`cd .. && ./getkey.pl l0dable_crypt`
|
ekey=`cd .. && ./getkey.pl l0dable_crypt`
|
||||||
|
|
||||||
all: $(OBJS) $(ELFS) $(BINS) $(CODS) $(NIKS) 1boot.int debug.int config.int
|
all: $(OBJS) $(ELFS) $(BINS) $(CODS) $(NIKS) 1boot.int debug.int config.int initanim.int
|
||||||
|
|
||||||
$(LDFILE):
|
$(LDFILE):
|
||||||
-@echo "MEMORY" > $(LDFILE)
|
-@echo "MEMORY" > $(LDFILE)
|
||||||
|
@ -71,6 +71,9 @@ debug.int: debug.c0d .PHONY
|
||||||
config.int: config.c0d .PHONY
|
config.int: config.c0d .PHONY
|
||||||
mv $< $@
|
mv $< $@
|
||||||
|
|
||||||
|
initanim.int: initanim.c0d .PHONY
|
||||||
|
mv $< $@
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f *.o *.elf *.bin usetable.h
|
rm -f *.o *.elf *.bin usetable.h
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue