1#!/bin/bash 2# 3# Copyright (c) 2020, The OpenThread Authors. 4# All rights reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions are met: 8# 1. Redistributions of source code must retain the above copyright 9# notice, this list of conditions and the following disclaimer. 10# 2. Redistributions in binary form must reproduce the above copyright 11# notice, this list of conditions and the following disclaimer in the 12# documentation and/or other materials provided with the distribution. 13# 3. Neither the name of the copyright holder nor the 14# names of its contributors may be used to endorse or promote products 15# derived from this software without specific prior written permission. 16# 17# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 18# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 21# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 22# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 23# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 24# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 25# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 26# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 27# POSSIBILITY OF SUCH DAMAGE. 28# 29 30# 31# Build openthread-br inside docker. 32# 33# The binaries will be put into volume named openwrt-bin. 34# 35 36set -euxo pipefail 37 38PACKAGE_NAME=openthread-br 39readonly PACKAGE_NAME 40 41CONTAINER_NAME=openwrt-sdk 42readonly CONTAINER_NAME 43 44do_prepare() 45{ 46 docker create --name "${CONTAINER_NAME}" --rm -v openwrt-bin:/home/build/openwrt/bin -it openwrt/sdk:22.03.3 47 docker cp . "${CONTAINER_NAME}":/home/build/ot-br-posix 48 echo 'src-link openthread /home/build/ot-br-posix/etc/openwrt' >feeds.conf 49 50 docker start "${CONTAINER_NAME}" 51 docker exec "${CONTAINER_NAME}" scripts/feeds update base 52 docker exec "${CONTAINER_NAME}" scripts/feeds update packages 53 docker exec "${CONTAINER_NAME}" scripts/feeds install libjson-c libubox libubus libavahi-client 54 55 docker cp feeds.conf "${CONTAINER_NAME}":/home/build/openwrt/feeds.conf 56 docker exec "${CONTAINER_NAME}" sudo chown -R build:build /home/build/ot-br-posix /home/build/openwrt/feeds.conf /home/build/openwrt/bin 57 docker exec "${CONTAINER_NAME}" scripts/feeds update openthread 58 docker exec "${CONTAINER_NAME}" make defconfig 59 docker exec "${CONTAINER_NAME}" scripts/feeds install openthread-br 60} 61 62do_build() 63{ 64 docker exec "${CONTAINER_NAME}" make V=sc package/openthread-br/compile 65 docker exec "${CONTAINER_NAME}" find . -name "${PACKAGE_NAME}*.ipk" | grep "${PACKAGE_NAME}" 66} 67 68do_clean() 69{ 70 local exit_code=$? 71 rm feeds.conf || true 72 docker stop "${CONTAINER_NAME}" || true 73 exit $exit_code 74} 75 76main() 77{ 78 if [[ $# == 0 ]]; then 79 trap do_clean EXIT 80 do_prepare 81 do_build 82 else 83 case "$1" in 84 prepare) 85 do_prepare 86 ;; 87 build) 88 do_build 89 ;; 90 clean) 91 do_clean 92 ;; 93 esac 94 fi 95} 96 97main "$@" 98