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 38readonly PACKAGE_NAME=openthread-br 39readonly CONTAINER_NAME=openwrt-sdk 40 41do_prepare() 42{ 43 docker create --name "${CONTAINER_NAME}" --rm -v openwrt-bin:/home/build/openwrt/bin -it openwrtorg/sdk 44 docker cp . "${CONTAINER_NAME}":/home/build/ot-br-posix 45 echo 'src-link openthread /home/build/ot-br-posix/etc/openwrt' >feeds.conf 46 47 docker start "${CONTAINER_NAME}" 48 docker exec "${CONTAINER_NAME}" scripts/feeds update base 49 docker exec "${CONTAINER_NAME}" scripts/feeds install libjson-c libubox libubus 50 51 docker cp feeds.conf "${CONTAINER_NAME}":/home/build/openwrt/feeds.conf 52 docker exec "${CONTAINER_NAME}" sudo chown -R build:build /home/build/ot-br-posix /home/build/openwrt/feeds.conf /home/build/openwrt/bin 53 docker exec "${CONTAINER_NAME}" scripts/feeds update openthread 54 docker exec "${CONTAINER_NAME}" make defconfig 55 docker exec "${CONTAINER_NAME}" scripts/feeds install openthread-br 56} 57 58do_build() 59{ 60 docker exec "${CONTAINER_NAME}" make V=sc package/openthread-br/compile 61 docker exec "${CONTAINER_NAME}" find . -name "${PACKAGE_NAME}*.ipk" | grep "${PACKAGE_NAME}" 62} 63 64do_clean() 65{ 66 local exit_code=$? 67 rm feeds.conf || true 68 docker stop "${CONTAINER_NAME}" || true 69 exit $exit_code 70} 71 72main() 73{ 74 if [[ $# == 0 ]]; then 75 trap do_clean EXIT 76 do_prepare 77 do_build 78 else 79 case "$1" in 80 prepare) 81 do_prepare 82 ;; 83 build) 84 do_build 85 ;; 86 clean) 87 do_clean 88 ;; 89 esac 90 fi 91} 92 93main "$@" 94