Ubuntu and gento uses old avr toolchain, that lacks
the SIGNATURE defines.
So I disabled it in simavr, it was not used for
anything functional for now anyway
Signed-off-by: Michel Pollet <buserror@gmail.com>
2 files changed:
.flashend = FLASHEND, \
.e2end = E2END, \
.vector_size = _vector_size, \
- .signature = { SIGNATURE_0,SIGNATURE_1,SIGNATURE_2 }, \
.fuse = { LFUSE_DEFAULT, HFUSE_DEFAULT, EFUSE_DEFAULT }
-
+// Disable signature for now, for ubuntu, gentoo and other using old avr toolchain
+// .signature = { SIGNATURE_0,SIGNATURE_1,SIGNATURE_2 },
#endif /* __SIM_CORE_DECLARE_H__ */
.flashend = FLASHEND,
.e2end = E2END,
.vector_size = 2,
- .signature = { SIGNATURE_0,SIGNATURE_1,SIGNATURE_2 },
+// Disable signature for now, for ubuntu, gentoo and other using old avr toolchain
+// .signature = { SIGNATURE_0,SIGNATURE_1,SIGNATURE_2 },
.fuse = { LFUSE_DEFAULT, HFUSE_DEFAULT },
.init = init,