11 lines
278 B
Bash
Executable file
11 lines
278 B
Bash
Executable file
#!/bin/bash
|
|
|
|
[[ -z $RECIPE ]] && RECIPE="default"
|
|
[[ -z $KERNEL ]] && KERNEL="5.11"
|
|
[[ -z $OUTPUT ]] && OUTPUT="/output"
|
|
[[ -z $REPO ]] && REPO="/output"
|
|
|
|
if ! ./make_image.sh -r $RECIPE -k $KERNEL -o $OUTPUT --repository $REPO
|
|
then
|
|
printf "Error when create userland\n"
|
|
fi
|