17 lines
315 B
Bash
Executable File
17 lines
315 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
set -o nounset
|
|
# set -o xtrace
|
|
|
|
git clone git://git.buildroot.net/buildroot /buildroot
|
|
|
|
rsync -a /workspace/config/board/ /buildroot/board/
|
|
rsync -a /workspace/config/configs/ /buildroot/configs/
|
|
|
|
cd /buildroot
|
|
git checkout -b csel 2021.11.1
|
|
|
|
make csel_defconfig
|