nes-proj/.gitignore

106 lines
1.6 KiB
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
2011-02-22 12:58:01 +00:00
*.ihex
*.pyc
*~
.DS_Store
2011-02-22 12:58:01 +00:00
obj_*
Makefile.target
doc/html
doc/latex
patches-*
2014-06-06 13:05:11 +00:00
tools/tunslip
tools/tunslip6
2012-11-18 19:32:47 +00:00
build
tools/coffee-manager/build/
tools/cooja/dist/
tools/collect-view/build/
tools/collect-view/dist/
COOJA.testlog
tools/cooja/apps/mrm/lib/
tools/cooja/apps/mspsim/lib/
tools/cooja/apps/powertracker/lib/
tools/cooja/apps/serial_socket/lib/
tools/coffee-manager/coffee.jar
tools/cooja/apps/avrora/lib/cooja_avrora.jar
tools/cooja/apps/collect-view/cooja-collect-view.jar
2017-07-06 08:15:09 +00:00
# platform build artifacts
*.cc2538dk
*.cooja
*.cooja-ip64
*.galileo
*.jn516x
*.native
*.nrf52dk
*.openmote-cc2538
*.sky
*.srf06-cc26xx
*.zoul
# do not ignore platform makefiles
!Makefile.cc2538dk
!Makefile.cooja
!Makefile.cooja-ip64
!Makefile.galileo
!Makefile.jn516x
!Makefile.native
!Makefile.nrf52dk
!Makefile.openmote-cc2538
!Makefile.sky
!Makefile.srf06-cc26xx
!Makefile.zoul
# other galileo build and debug artefacts
*.galileo.dll
*.galileo.efi
LOG_OPENOCD
# other nRF52 build artifacts
*.jlink
# galileo bsp files
platform/galileo/bsp/libc/Makefile.libc
platform/galileo/bsp/libc/i586-elf/
platform/galileo/bsp/libc/newlib-2.2.0-1*
platform/galileo/bsp/grub/src/
platform/galileo/bsp/grub/bin/
2013-02-03 11:05:04 +00:00
# VC++ build artifacts
*.exp
*.ilk
*.lib
*.pdb
*.prg
*.dsc
2013-05-22 13:57:24 +00:00
#regression tests artifacts
*.testlog
*.log.prog
2017-07-06 08:15:09 +00:00
*.report
summary
*.summary
*.runerr
*.runlog
*.faillog
regression-tests/[0-9][0-9]-*/report
regression-tests/[0-9][0-9]-*/org/
2015-02-03 18:58:04 +00:00
# cscope files
cscope.*
2015-03-12 09:04:00 +00:00
# vim swap files
*.swp
*.swo
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