|
#!/bin/sh
|
|
{
|
|
cat airplaypi_defconfig.in
|
|
grep BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION buildroot/configs/raspberrypi3_defconfig
|
|
} > airplaypi_defconfig
|
|
make \
|
|
-C buildroot \
|
|
O="${PWD}"/_build \
|
|
BR2_EXTERNAL="${PWD}/aimee-os" \
|
|
defconfig \
|
|
BR2_DEFCONFIG="${PWD}"/airplaypi_defconfig
|