nes-proj/.gitignore

70 lines
951 B
Plaintext
Raw Normal View History

2015-11-25 16:03:30 +00:00
*.a
*.bin
2017-07-06 08:15:09 +00:00
*.hex
*.map
*.png
*.log
*.elf
*.zip
2012-11-18 19:35:20 +00:00
*.d
*.o
*.e
2011-02-22 12:58:01 +00:00
*.ihex
*.pyc
*~
2018-10-13 22:15:06 +00:00
build/*
Makefile.target
2017-12-17 01:54:43 +00:00
Makefile.*.defines
tools/doxygen/html
tools/readthedocs/_build
patches-*
tools/serial-io/tunslip6
tools/serial-io/serialdump
serialdump-*
2012-11-18 19:32:47 +00:00
build
tools/coffee-manager/build/
2017-10-06 12:30:13 +00:00
tools/coffee-manager/coffee.jar
2012-11-18 19:32:47 +00:00
COOJA.testlog
2017-07-06 08:15:09 +00:00
# platform build artifacts
*.cc2538dk
*.cooja
*.jn516x
*.native
*.nrf52dk
*.openmote-cc2538
*.simplelink
2017-07-06 08:15:09 +00:00
*.sky
*.firmware
2018-10-12 13:13:29 +00:00
*.cc26x0-cc13x0
2017-07-06 08:15:09 +00:00
*.zoul
# do not ignore platform makefiles
!Makefile.cc2538dk
!Makefile.cooja
!Makefile.jn516x
!Makefile.native
!Makefile.nrf52dk
!Makefile.openmote-cc2538
!Makefile.sky
2018-10-12 13:13:29 +00:00
!Makefile.cc26x0-cc13x0
2017-07-06 08:15:09 +00:00
!Makefile.zoul
# other nRF52 build artifacts
*.jlink
#test artifacts
2013-05-22 13:57:24 +00:00
*.testlog
*.scriptlog
*.coojalog
2017-07-06 08:15:09 +00:00
*.summary
2017-11-18 13:17:05 +00:00
*.err
summary
tests/[0-9][0-9]-*/org/
tests/18-coap-lwm2m/Californium.properties
tests/18-coap-lwm2m/leshan-server-demo*.jar
x86, galileo: Add UEFI support This patch adds support for optionally building EFI binaries in addition to Multiboot ELF binaries. It includes a script, build_uefi.sh, that downloads tool and library sources from the EDK II project, builds the GenFw tool that is used to create UEFI binaries, and creates a makefile that is included from the main x86 common makefile and enables UEFI support in the Contiki build system. If the script is not run prior to building Contiki, then an informational message will be displayed with instructions for running build_uefi.sh if UEFI support is desired. This patch also adds the path to the auto-generated makefile to .gitignore. This patch modifies the linker script for the Intel Quark X1000 to account for the output file section offsets and alignment expectations of the EDK II GenFw project. This patch also adds a newlib patch to remove the weak symbol attribute from floating point stdio support routines. See <newlib>/newlib/README for an explanation of how the newlib developers intended for _printf_float and _scanf_float to be linked. Newlib declares them as weak symbols with the intention that developers would force them to be linked only when needed using a linker command line option. However, some but not all Contiki programs require them, so we cannot simply always include or exclude them. Instead, we remove the weak symbol attributes and rely on the linker to automatically determine whether or not they should be linked. This avoids an issue in which weak symbols were undefined in the intermediate DLL generated as part of the UEFI build process. That resulted in the GenFw program emitting "ERROR 3000" messages when it encountered relocations referencing such an undefined symbol. Finally, this patch updates README.md to both make some revisions to account for the UART support introduced in previous patches as well as to provide instructions for using the UEFI support.
2015-07-10 18:21:00 +00:00
# x86 UEFI files
cpu/x86/uefi/Makefile.uefi
cpu/x86/uefi/edk2