X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=templates%2Fbase%2F01_setup_EULAfunc.sh;h=5ea29416ecd68e3e21e9b840d8454b950e987107;hb=ebbd87128044f1e24c57aea0ecb1bb53af94359e;hp=7b1ca870d767661deb1f3bef6ee899a4dbce94c9;hpb=24c89f22961bab9a995ab9c18881a3109a1c8109;p=AGL%2Fmeta-agl.git diff --git a/templates/base/01_setup_EULAfunc.sh b/templates/base/01_setup_EULAfunc.sh index 7b1ca870d..5ea29416e 100644 --- a/templates/base/01_setup_EULAfunc.sh +++ b/templates/base/01_setup_EULAfunc.sh @@ -8,7 +8,13 @@ find_and_ack_eula() { # If the env variable EULA_$MACHINE is set it is used by default, # without prompting the user. # FIXME: there is a potential issue if the same $MACHINE is set in more than one layer.. but we should assert that earlier - EULA=$(find $1 -print | grep "conf/eula/$MACHINE" | grep -v scripts | grep -v openembedded-core || true) + # $1 is layer directory + # $2 is location of EULA file relative to layer directory + if test x"" == x"$2"; then + EULA=$(find $1 -print | grep "conf/eula/$MACHINE" | grep -v scripts | grep -v openembedded-core || true) + else + EULA=$1/$2 + fi if [ -n "$EULA" ]; then # remove '-' since we are constructing a bash variable name here EULA_MACHINE="EULA_$(echo $MACHINE | sed 's/-//g')" @@ -24,8 +30,7 @@ The BSP for $MACHINE depends on packages and firmware which are covered by an End User License Agreement (EULA). To have the right to use these binaries in your images, you need to read and accept the following... -The firmware package can contains several types -of firmware (depending on BSP): +The firmware package can contains several types of firmware (depending on BSP): * bootloaders: the first stage bootloaders are proprietary for this board, they are included in this firmware package. @@ -40,7 +45,7 @@ EOF echo REPLY= while [ -z "$REPLY" ]; do - echo -n "Do you read the EULA ? (y/n) " + echo -n "Do you want to read the EULA ? (y/n) " read REPLY case "$REPLY" in y|Y)