123456789101112131415161718192021 |
- #!/bin/bash
- PSGWRKDIR=`pwd`
- cd ..
- rm -rf buildroot
- git clone git://git.buildroot.net/buildroot
- cd buildroot
- #git checkout 63a20d5dfebe83e2b2bd683dc78ebdf787dff100 -b psgwrk
- git checkout c4d26992560875930866a627cc936da2f938401b -b psgwrk
- #==== Patches
- for i in ../PSG/patches/*.patch
- do
- echo "==Apply patch : <$i> =="
- patch -p1 < $i
- done
- #----
- chmod a+x *.sh
- cp ../PSG/configs/* ./configs
- git add .
- git commit -m "PSG wrk changes and setup"
- make BR2_EXTERNAL=../PSG iot2000_defconfig
- cd $PSGWRKDIR
|