1. 12 Oct, 2020 1 commit
  2. 11 Oct, 2020 3 commits
  3. 09 Oct, 2020 34 commits
  4. 08 Oct, 2020 1 commit
  5. 07 Oct, 2020 1 commit
    • 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