Skip to content
Snippets Groups Projects
  1. 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))
      8a783554
  2. Sep 06, 2018
  3. Sep 05, 2018
  4. Aug 20, 2018
  5. Aug 16, 2018
  6. Aug 10, 2018
  7. 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
  8. 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'
      bfbc9c1c
  9. Aug 02, 2018
  10. Jul 26, 2018
    • Gaëtan Harter's avatar
      makefiles/docker.inc.mk: allow overwriting 'docker' command · e5c49aa4
      Gaëtan Harter authored
      Not all users register their user in the docker group and should not run the
      whole make process as root to use docker.
      
      They can now overwrite DOCKER with `DOCKER="sudo docker"`.
      
      Creating files as a user is correctly handled as `id -u` is still run as the
      original user.
      e5c49aa4
  11. Jul 25, 2018
  12. Jul 23, 2018
  13. Jul 19, 2018
  14. Jul 18, 2018
  15. Jul 10, 2018
  16. Jul 06, 2018
    • Gaëtan Harter's avatar
      make: Add 'BUILDDEPS' variable · fb10a181
      Gaëtan Harter authored
      BUILDDEPS are files / make targets that should be build before compiling.
      It can include packages source download, generating headers, modules.
      
      It is the equivalent of `APPDEPS` but not limited to the application.
      It cannot be done right now with `APPDEPS` as it is used in `BASELIBS` and
      fixing it requires changing mips using it for source files.
      fb10a181
  17. Jul 05, 2018
  18. Jul 04, 2018
  19. Jun 28, 2018
  20. Jun 27, 2018
    • Marian Buschsieweke's avatar
      drivers: Renamed module sht11 to sht1x · d208c224
      Marian Buschsieweke authored
      The sensor family SHT10, SHT11 and SHT15 only differ in their accuracy (as in
      calibration, not as in resolution). Thus, the same driver can be used for all.
      The new driver name better reflects this fact.
      d208c224
  21. Jun 26, 2018
  22. Jun 22, 2018
  23. Jun 13, 2018
Loading