Skip to content
Snippets Groups Projects
  1. Aug 11, 2016
  2. 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
    • Adam Wujek's avatar
      4c621a98
    • Adam Wujek's avatar
      Kconfig: support interfaces wriX · a8f7ce67
      Adam Wujek authored
      
      --Part of changing names of interfaces in WRS from wrX (wr0-17) to
        wriX (wri1-wri18).
      --Rename wr0 to wri1 in help
      
      Signed-off-by: default avatarAdam Wujek <adam.wujek@cern.ch>
      a8f7ce67
  3. Feb 10, 2016
  4. Feb 09, 2016
  5. Aug 28, 2015
  6. Aug 27, 2015
  7. Aug 26, 2015
    • Adam Wujek's avatar
      configs: update wrs_release_defconfig · 4fcc9be3
      Adam Wujek authored
      
      add:
      --CONFIG_ROOT_PWD_CLEAR
      --CONFIG_PTP_REMOTE_CONF
      
      Signed-off-by: default avatarAdam Wujek <adam.wujek@cern.ch>
      4fcc9be3
    • Adam Wujek's avatar
      rootfs: make possible to get URL to the dot-config via dhcp · 4ef3017c
      Adam Wujek authored
      
      force-dhcp can be used to retrieve a URL to the dot-config, which is downloaded
      during boot.
      try-dhcp the same as above but don't complain about unsuccessful receive of the
      URL via DHCP to SNMP.
      
      Update:
      --MIB - add tryDhcp and forceDhcp to the wrsConfigSource object; add
              dhcpError to the wrsBootConfigStatus object
      --SNMPd - same as the above; don't error in wrsBootConfigStatus when tryDhcp
                fails
      --dot-config's script - support new dot-config sources
      --Kconfig - support new dot-config sources
      --wrs_failures
      --wrs-user-manual
      --wrs_release_defconfig - add new items
      --create new script for udhcpc to save "filename" configuration field retrieved
        from DHCP server; it contains the URL to the dot-config to be downloaded.
      
      Signed-off-by: default avatarAdam Wujek <adam.wujek@cern.ch>
      4ef3017c
  8. Jul 29, 2015
    • Alessandro Rubini's avatar
      userspace: new dot-config directory; allow 'make config' in target · 7a42391f
      Alessandro Rubini authored
      
      This factorized configuration stuff out of wrap_rootfs into a build
      target.  It also adds building and installing "conf" so to allow the
      following commands in the target (in /wr/etc):
      
      	  make config
      
      	  make oldconfig     (likely after editing dot-config)
      
      	  make defconfig
      
      I'm unable to build menuconfig at this time, because of missing
      symbols in the target's libncurses. I hope to fix this when we
      bump buildroot up (thanks Adam for that!)
      
      Signed-off-by: default avatarAlessandro Rubini <rubini@gnudd.com>
      7a42391f
  9. Jul 10, 2015
  10. Jan 04, 2015
  11. Dec 11, 2014
  12. Sep 30, 2014
  13. Jul 10, 2014
  14. Mar 31, 2014
  15. Feb 17, 2014
  16. Feb 09, 2014
  17. Feb 01, 2014
  18. Nov 29, 2013
  19. Nov 21, 2013