11 lines
99 B
Bash
11 lines
99 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
set -x
|
||
|
|
||
|
#Build stage
|
||
|
|
||
|
cd buildroot-2020.02.10/
|
||
|
ionice nice make -j`nproc`
|
||
|
cd -
|
||
|
|