Make-bb-kernel.sh 427 B

123456789101112131415161718192021
  1. #!/bin/bash
  2. GFAWRKDIR=`pwd`
  3. cd ..
  4. rm -rf buildroot
  5. git clone https://gogs.reru.org/PUBLIC_REPOS/buildroot.git ./buildroot
  6. cd buildroot
  7. #git checkout 2021.08
  8. #
  9. for i in ../GfA/patches/*.patch
  10. do
  11. echo "==Apply patch : <$i> =="
  12. patch -p1 < $i
  13. done
  14. chmod a+x *.sh
  15. cp ../GfA/configs/* ./configs
  16. git add .
  17. git commit -m "GfA wrk changes and setup"
  18. make BR2_EXTERNAL=../GfA SOPINEA64_L50_Qt5.15_WRK_defconfig
  19. cd $GFAWRKDIR
  20. #------