123456789101112131415161718192021 |
- #!/bin/bash
- GFAWRKDIR=`pwd`
- cd ..
- rm -rf buildroot
- git clone https://gogs.reru.org/PUBLIC_REPOS/buildroot.git ./buildroot
- cd buildroot
- ##git checkout 160f0a033ba4edf2f7efe5fed82426acd3b34b70 -b gfawrk
- git checkout -b gfawrk
- 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 Display001_4.4.104_rt21_Qt5.12_defconfig
- cd $GFAWRKDIR
- #------
|