Skip to content
Snippets Groups Projects
  1. Jul 05, 2024
  2. Sep 18, 2023
  3. May 28, 2023
  4. Jan 24, 2023
  5. Oct 29, 2020
  6. Oct 22, 2020
  7. Jun 08, 2020
  8. May 20, 2020
  9. May 19, 2020
  10. Jun 24, 2019
  11. Jun 06, 2019
  12. Jun 03, 2019
  13. Apr 10, 2019
  14. Nov 20, 2018
    • Adam Wujek's avatar
      [BUG: 1575] rootfs: add new parameters to CONFIG_PORTXX_PARAMS · c92b2f40
      Adam Wujek authored
      
      DONE: Kconfig, assembly_ppsi_conf.sh
      TODO: SNMP, DOCs, HAL?
      
      Redefine options CONFIG_PORTXX_PARAMS in dot-config
      --role={master,slave,auto,none}, keep non-wr for compatibility
      --ext={WR}:{HR}, HR for future, if no ext defined use WR as default
      --add extra option to disable/enable triggering errors in SNMP
      --add option for delay mechanism (dm)
        p2p or e2e
        e2e default
      
      Signed-off-by: default avatarAdam Wujek <adam.wujek@cern.ch>
      c92b2f40
  15. Aug 10, 2018
  16. Jul 18, 2018
  17. Jan 17, 2017
  18. Dec 14, 2016
  19. Dec 01, 2016
  20. Aug 11, 2016
  21. Jul 07, 2016
    • Adam Wujek's avatar
      configs/buildroot: remove ifplugd · 0aaf71f0
      Adam Wujek authored
      We don't use ifplugd since Feb 2014. See the commit:
      162fb24e
      
       userspace: run dhcpc in background forever, not through auto means
      
      Signed-off-by: default avatarAdam Wujek <adam.wujek@cern.ch>
      0aaf71f0
    • Adam Wujek's avatar
      configs/buildroot: don't create images by buildroot · ae769904
      Adam Wujek authored
      
      There is no need to create cpio, tar and bzip2 images, since we don't use them
      anyway. We assemble images on our own in build/scripts/wrs_build_wraprootfs.
      
      Signed-off-by: default avatarAdam Wujek <adam.wujek@cern.ch>
      ae769904
    • Adam Wujek's avatar
      configs/buildroot/busybox: uplift config to busybox 1.24.1 · 60968a07
      Adam Wujek authored
      
      Change done due to uplift of the buildroot to the 2016.02
      Please note that some of the options just changed their position.
      
      Some changes:
      
      remove:
      --DOS2UNIX
      --UNIX2DOS
      --FDFORMAT (we don't have floppy)
      --EJECT (we don't have CD/DVD)
      --HDPARM (we don't have ATA drives)
      --ETHER_WAKE (to send wake-on-lan magic packet)
      --DNSD (we don't need DNS server)
      --NAMEIF (we don't want to change names of interfaces)
      
      remove the following, since they're provided by prosps_ng:
      --pidof
      --top
      --uptime
      --free
      --kill*
      --ps
      --sysctl
      --watch
      
      add:
      --LFS (large file support)
      --MD5_SMALL=0 (We don't care so much about the size, more about
        the performance. Use the fastest. Difference in the size is very
        small anyway.)
      --SHA3_SMALL=0 (like above)
      --CONFIG_GZIP_FAST=2 (like above, use the fastest)
      --FEATURE_LESS_WINCH and FEATURE_LESS_ASK_TERMINAL allow to display i.e.
        "less" command via serial terminal with non standard terminal sizes.
      
      Signed-off-by: default avatarAdam Wujek <adam.wujek@cern.ch>
      60968a07
    • Adam Wujek's avatar
      buildroot: use nm compiled in buildroot · 8b38b5de
      Adam Wujek authored
      Remove binaries/usr/lib/libbfd-2.21.1.so and /usr/bin/nm from the repo.
      Instead use the compiled versions in buildroot.
      
      Patch the installation rule to install only "nm", when
      PACKAGE_BINUTILS_TARGET is not used(!).
      libbfd-2.21.1.so is installed by default by the installation rule of
      PACKAGE_BINUTILS.
      
      Binary nm was added in the commit:
      d2a486cc
      
       rootfs_override: add /usr/bin/nm and its libbfd
      
      Signed-off-by: default avatarAdam Wujek <adam.wujek@cern.ch>
      8b38b5de
    • Adam Wujek's avatar
      build/scripts/wrs_build_buildroot: fix parallel build for make <= 3.81 · b4b62a09
      Adam Wujek authored
      
      make 3.82 splits the work differently. When using buildroot with
      the make > 3.81 buildroot uses BR2_JLEVEL= (preferably 0 for automatic number
      of jobs setting).
      For make =< 3.81 BR2_JLEVEL= is ignored and build is done using only one job.
      Passing -j allows to build with many jobs, but many warning messages are
      printed:
      make[2]: warning: -jN forced in submake: disabling jobserver mode.
      
      Use BR_JLEVEL=0, this allows buildroot to pick automatically number of jobs.
      
      Signed-off-by: default avatarAdam Wujek <adam.wujek@cern.ch>
      b4b62a09