1. 29 Oct, 2020 19 commits
  2. 28 Oct, 2020 4 commits
  3. 22 Oct, 2020 11 commits
  4. 08 Oct, 2020 1 commit
  5. 07 Oct, 2020 2 commits
    • Alessandro Rubini's avatar
      patches/buildroot: turn all patches into git ones (no change) · ae852163
      Alessandro Rubini authored
      This adds the git headers, so we can easily rebuild a buildroot-for-wrs
      tree to add more patches.
      
      This is how I do it now (where "wrs-build" and "wr-switch-sw" are
      at the same directory level.
      
         cd wrs-build
      
          mkdir tmp; cd tmp
         tar xf ../downloads/buildroot-2016.02.tar.bz2
         cd buildroot-2016.02/
      
         git init; git add .; git commit -m "buildroot-2016.02 as untarred"
         git am ../../../wr-switch-sw/patches/buildroot/00*
         mv .git ../../build/buildroot-2016.02/
      
         cd ../../build/buildroot-2016.02
         <work-here>
      Signed-off-by: Alessandro Rubini's avatarAlessandro Rubini <rubini@gnudd.com>
      ae852163
    • Alessandro Rubini's avatar
      Fix monit problem with commit 9bc9dd16 · 8a971908
      Alessandro Rubini authored
      There is a monit-related problem in commit 9bc9dd16.
      
      The commit renames /etc/init.d/lldpd.sh into /etc/init.d/lldpd.bash
      whle adding a single stanza. Try "git diff e61eb08 9ebc5e2" to
      see the difference.
      
      But monit still uses the old name. Instead of changing monit
      (a two-liner, but adds noise because of .bash), this renames back
      the file to .sh and removes the needless bashism in the new stanza.
      
      Please note that calling stuff ".bash" makes no sense (suffixes
      make no sense most of the time!). The only thing rcS does is checking
      if the name is "*.sh", to just read it in the current shell instead
      of executing. So anything not ".sh" is executed, we don't need to
      special case .bash, .py or whatever.
      Signed-off-by: Alessandro Rubini's avatarAlessandro Rubini <rubini@gnudd.com>
      8a971908
  6. 14 Sep, 2020 1 commit
  7. 28 Aug, 2020 1 commit
  8. 13 Aug, 2020 1 commit