1. 程式人生 > >yocto-sumo源碼解析(三)oe-setup-builddir

yocto-sumo源碼解析(三)oe-setup-builddir

r環境 direct director error local 源碼 bash 創建 變量

該腳本的主要功能就是創建構建目錄並準備一些配置文件,比如conf/local.conf,conf/bblayer.conf

1. 檢測BUILDDIR環境變量是否設置好(在本系列分享第二節已經知道:):

if [ -z "$BUILDDIR" ]; then
    echo >&2 "Error: The build directory (BUILDDIR) must be set!"
    exit 1
fi

yocto-sumo源碼解析(三)oe-setup-builddir