Skip to content
Snippets Groups Projects
  1. Sep 04, 2023
  2. Aug 30, 2023
  3. Aug 29, 2023
  4. Aug 24, 2023
  5. Aug 23, 2023
  6. Aug 22, 2023
  7. Aug 21, 2023
  8. Aug 18, 2023
  9. Aug 16, 2023
    • Michal Hrusecky's avatar
      NEWS: Prepare NEWS for upcoming 6.4.2 release · 394520da
      Michal Hrusecky authored
      See NEWS file for details.
      Verified
      394520da
    • Michal Hrusecky's avatar
      packages/samba4: Update to the latest version · 0c141061
      Michal Hrusecky authored
      For details see respected patches, but long story short, this updates
      Samba to the latest version making sure we have all the security
      patches.
      Verified
      0c141061
    • Michal Hrusecky's avatar
      turris1x: Fix gcc floating points · 51cc8f7c
      Michal Hrusecky authored
      There are wrong flags passed to gcc during compilation for Turris 1.X.
      Problem description bellow:
      
      $ cat test.c
      int main(int argc, char *argv[]) { printf("Hello World %lg\n",
      atof(argv[1]) + atof(argv[2])); return 0; }
      
      $ usr/bin/gcc test.c
      /usr/bin/ld: Warning: /tmp/usr/bin/../lib/gcc/powerpc-openwrt-linux-muslspe/8.4.0/libgcc.a(adddf3.o)
      uses double-precision hard float, a.out uses single-precision hard
      float
      
      $ usr/bin/gcc --help=target -Q | grep -E
      '(-mcpu=|-mdouble-float|-mfloat-gprs=|-mtune=)'
      -mcpu= 8540
      -mdouble-float [disabled]
      -mfloat-gprs= single
      -mtune= 8540
      
      The take out of this is that -mcpu and-mtune má byť 8548, and
      -mdouble-float should be enabled and -mfloat-gprs should be double.
      
      This should be fixed by passing `--with-cpu=8548 --enable-e500-double`
      to configure script.
      Verified
      51cc8f7c
  10. Aug 15, 2023
  11. Aug 01, 2023
  12. Jul 31, 2023
  13. Jul 24, 2023
  14. Jul 20, 2023
  15. Jul 17, 2023
  16. Jul 14, 2023
  17. Jun 30, 2023
Loading