123456789101112131415161718192021 |
- #!/bin/bash
- GFAWRKDIR=`pwd`
- cd ..
- rm -rf buildroot
- git clone https://gogs.reru.org/PUBLIC_REPOS/buildroot.git ./buildroot
- cd buildroot
- #git checkout 2021.08
- #
- for i in ../GfA/patches/*.patch
- do
- echo "==Apply patch : <$i> =="
- patch -p1 < $i
- done
- chmod a+x *.sh
- cp ../GfA/configs/* ./configs
- git add .
- git commit -m "GfA wrk changes and setup"
- make BR2_EXTERNAL=../GfA SOPINEA64_L50_Qt5.15_WRK_defconfig
- cd $GFAWRKDIR
- #------
|