mirror of
https://github.com/home-assistant/operating-system.git
synced 2025-12-20 02:18:37 +00:00
* Add hassos configuration for intel-nuc: * Cloned from ova config * Use default amd64 kernel config * Add support for Intel IGB type nics * Add rng-tools for better random * Build with iwlwifi module & firmware (only newer modules with iwlmvm firmware) * Include firmware for 915, which should improve power efficiency. Build display and audio as a module to make it all work. * Add intel_nuc to build script. * Change directory structure as proposed by @pvizeli * * Fix paths * Remove unused patch directory * Unduplicate barebox config.
16 lines
489 B
Bash
Executable File
16 lines
489 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
mkdir -p /build/release
|
|
|
|
all_platforms=(ova rpi rpi0_w rpi2 rpi3 rpi3_64 tinker odroid_c2 intel_nuc)
|
|
for platform in "${all_platforms[@]}"; do
|
|
make -C /build/buildroot BR2_EXTERNAL=/build/buildroot-external \
|
|
"${platform}_defconfig"
|
|
make -C /build/buildroot BR2_EXTERNAL=/build/buildroot-external
|
|
cp -f /build/buildroot/output/images/hassos_* /build/release/
|
|
|
|
make -C /build/buildroot BR2_EXTERNAL=/build/buildroot-external \
|
|
clean
|
|
done
|