Skip to content
Snippets Groups Projects
  1. Dec 05, 2018
  2. Dec 03, 2018
    • Francisco Acosta's avatar
      sys: add riotboot_hdr submodule · 00adbd69
      Francisco Acosta authored
      
      riotboot_hdr enables to partition the internal flash memory
      into "slots", each one with a header providing information
      about the partition. The concept for now is limited to
      firmware partitions, which are recognised by the riotboot
      bootloader. In the future the concept might be extended to
      represent other content.
      
      Co-authored-by: default avatarKaspar Schleiser <kaspar@schleiser.de>
      00adbd69
  3. Nov 27, 2018
    • cladmi's avatar
      jlink: get flash and debug files from cli · 5fcc1210
      cladmi authored
      Get BINFILE and ELFFILE from command line instead of environment variable.
      
      Rename 'HEXFILE' to 'BINFILE' in the script as the binary file is used.
      The documentation was already talking about 'BINFILE' but 'BINFILE'
      was never exported by the build system and it was using 'HEXFILE' in the
      implementation.
      Unverified
      5fcc1210
  4. Nov 15, 2018
  5. Nov 14, 2018
  6. Nov 08, 2018
  7. Oct 30, 2018
  8. Oct 24, 2018
  9. Oct 23, 2018
  10. Oct 17, 2018
  11. Oct 16, 2018
    • cladmi's avatar
      llvm.inc.mk: completely replace detection of GCC includes · 1802e775
      cladmi authored
      This completely removes the hardcoded/os specific path setting for includes.
      It directly queries gcc include directories.
      
      It takes what was already done by `makefiles/libc/llvm.inc.mk`.
      
      I replaced the `GCC_MULTI_DIR` handling by givining `CFLAGS_CPU` when
      searching for include directories.
      `CFLAGS` cannot be used as it will crash when `-target $(CPU_ARCH)` is
      added.
      It currently requires using deferred variables as `CFLAGS_CPU` can be
      overwritten later in the build process.
      Unverified
      1802e775
  12. Oct 15, 2018
  13. Oct 12, 2018
  14. Oct 04, 2018
  15. Sep 28, 2018
  16. Sep 27, 2018
  17. Sep 25, 2018
  18. Sep 18, 2018
    • cladmi's avatar
      edbg.inc.mk: handle IMAGE_OFFSET being defined with a space · 8a783554
      cladmi authored
      Handle that `IMAGE_OFFSET` can be set to something that contain spaces.
      
      With 'IMAGE_OFFSET=$$((0x1000 + 0x1000))' we had in the command line when doing
      'flash'
      
          --offset $((0x1000 --offset + --offset 0x1000))
      
      With the change we correctly have
      
          --offset $((0x1000 + 0x1000))
      Unverified
      8a783554
  19. Sep 06, 2018
  20. Sep 05, 2018
  21. Aug 20, 2018
  22. Aug 16, 2018
  23. Aug 10, 2018
  24. Aug 09, 2018
    • Sebastian Meiling's avatar
      make: add APPDIR to info-build target · ec2a0f9f
      Sebastian Meiling authored
          While info-build already provides lots of useful information
          it does not print the application source dir. However this
          might be useful for debugging and logging, hence its added
          to the output.
      ec2a0f9f
  25. Aug 08, 2018
    • Gaëtan Harter's avatar
      makefiles/buildtests.inc.mk: allow overwriting make output redirection · bfbc9c1c
      Gaëtan Harter authored
      When running tests, I often needed to modify `buildtests.inc.mk` to see the
      actual errors/standard output.
      This allows overwriting the default redirection of both to `/dev/null`.
      It is low level and directly given to the command execution.
      
      As it is interpreted by make, it can even be overwritten using build system
      variables:
      
          'BUILDTEST_MAKE_REDIRECT=>/tmp/buildtest.$${board}.out 2>&1'
      Unverified
      bfbc9c1c
Loading