Some checks failed
dustin/kioskpi/pipeline/head There was a failure building this commit
16 lines
364 B
Bash
16 lines
364 B
Bash
#!/bin/sh
|
|
|
|
sed -i \
|
|
-e '$a'"$(
|
|
grep BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION= buildroot/configs/raspberrypi3_defconfig
|
|
)" \
|
|
-e /BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION/d \
|
|
kioskpi_defconfig
|
|
|
|
make \
|
|
-C buildroot \
|
|
O="${PWD}"/_build \
|
|
BR2_EXTERNAL="${PWD}/aimee-os" \
|
|
defconfig \
|
|
BR2_DEFCONFIG="${PWD}"/kioskpi_defconfig
|