Skip to content

Commit

Permalink
bios: add build date to banner
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastien Bourdeauducq committed Feb 17, 2013
1 parent b135d87 commit 8247f3a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
7 changes: 5 additions & 2 deletions software/bios/Makefile
Expand Up @@ -24,6 +24,9 @@ bios-rescue.elf: linker-rescue.ld $(OBJECTS) libs
-lbase -lcompiler-rt
chmod -x $@

main.o: main.c
$(compile-dep)

%.o: %.c
$(compile-dep)

Expand All @@ -38,6 +41,6 @@ flash: bios.bin
m1nor bios.bin

clean:
rm -f $(OBJECTS) $(OBJECTS:.o=.ts) $(OBJECTS:.o=.d) bios.elf bios.bin bios-rescue.elf bios-rescue.bin .*~ *~
rm -f $(OBJECTS) $(OBJECTS:.o=.d) bios.elf bios.bin bios-rescue.elf bios-rescue.bin .*~ *~

.PHONY: clean libs flash
.PHONY: main.o clean libs flash
3 changes: 2 additions & 1 deletion software/bios/main.c
Expand Up @@ -423,7 +423,8 @@ static void print_mac(void)

static const char banner[] =
"\nMILKYMIST(tm) v"VERSION" BIOS http://www.milkymist.org\n"
"(c) Copyright 2007-2012 Sebastien Bourdeauducq\n\n"
"(c) Copyright 2007-2013 Sebastien Bourdeauducq\n"
"Built "__DATE__" "__TIME__"\n\n"
"This program is free software: you can redistribute it and/or modify\n"
"it under the terms of the GNU General Public License as published by\n"
"the Free Software Foundation, version 3 of the License.\n";
Expand Down

0 comments on commit 8247f3a

Please sign in to comment.