Added .gitignore to simulator/firmware
This commit is contained in:
parent
65a3a4761d
commit
36b67aad74
|
@ -44,3 +44,11 @@ do
|
||||||
(printf "# GENERATED INCLUDE BRIDGE/\n"; echo include `dirname $i | sed "s#[^/]*#..#g" `/../$i) >simulat0r/$i
|
(printf "# GENERATED INCLUDE BRIDGE/\n"; echo include `dirname $i | sed "s#[^/]*#..#g" `/../$i) >simulat0r/$i
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
if cmp firmware/.gitignore simulat0r/firmware/.gitignore;
|
||||||
|
then
|
||||||
|
echo OK .gitignore is the same in firmware/ and simulat0r/firmware
|
||||||
|
else
|
||||||
|
echo WARNING: .gitignore mismatch in firmware/ and simulat0r/firmware
|
||||||
|
diff -y firmware/.gitignore simulat0r/firmware/.gitignore
|
||||||
|
fi
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
firmware.bin
|
||||||
|
firmware.elf
|
||||||
|
lpc1xxx/memory.ld
|
||||||
|
applications/wrapper.c
|
||||||
|
lcd/allfonts.h
|
||||||
|
Makefile.dep
|
Loading…
Reference in New Issue