1234567891011121314151617181920212223 |
- #!/bin/bash
- GFAWRKDIR=`pwd`
- cd ..
- rm -rf buildroot
- git clone https://gogs.reru.org/PUBLIC_REPOS/buildroot.git ./buildroot
- cd buildroot
- ##git checkout fa3267bd460095eb9e1478b27d9cb8fa80f96163
- git checkout 2021.08
- ##git checkout 0bec4c8a4a90cde57ccd46dcad4b9a860c71ffde
- #
- 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_defconfig
- cd $GFAWRKDIR
- #------
|