mirror of
https://github.com/home-assistant/operating-system.git
synced 2025-04-22 08:07:15 +00:00

* Create OTA updater * Create .gitignore * Update build-all.sh * Update hdd-image.sh * Update ota.sh * Update ota.sh * Update ota.sh * Update ota.sh * Update post-image.sh * Create name.sh * Update name.sh * Update post-build.sh * Update name.sh * Update post-image.sh * Update ota.sh * Update hdd-image.sh * Update post-image.sh * Update name.sh * Update ota.sh * Update post-image.sh * Update hdd-image.sh * Update hdd-image.sh * Update hdd-image.sh * Update post-image.sh * Update post-image.sh * Update hdd-image.sh * Update hdd-image.sh * Update post-image.sh * Update post-image.sh * Update post-image.sh * Update info * Update info * Update info * Update info * Update info * Update info * Rename buildroot-external/board/raspberrypi/uboot-boot64.sh to buildroot-external/board/raspberrypi/rpi3-64/uboot-boot.sh * Update rpi3_64_defconfig * Update hdd-image.sh * Update ota.sh * Update post-image.sh * Update post-image.sh * Fix building Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch> * Fix building v2 Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>
16 lines
455 B
Bash
Executable File
16 lines
455 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
mkdir -p /build/RL
|
|
|
|
all_platforms=(ova rpi rpi0_w rpi2 rpi3 rpi3_64)
|
|
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
|