13 lines
215 B
Bash
Executable File
13 lines
215 B
Bash
Executable File
#!/bin/bash
|
|
# Setup and run a build
|
|
|
|
: ${1?"Usage: $0 GIT BRANCH/COMMIT/TAG"}
|
|
|
|
cd ~/WipeOS-Meta
|
|
git checkout $1
|
|
source poky/oe-init-build-env
|
|
bitbake -c clean core-image-wipr-server
|
|
bitbake core-image-wipr-server
|
|
|
|
|