From 6e18f1c283c2a9ba9fddd31ae97f40337cc374ab Mon Sep 17 00:00:00 2001 From: John Klug Date: Fri, 2 Jun 2023 15:54:34 -0500 Subject: Correct documentation issues in setup.sh --- setup.sh | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/setup.sh b/setup.sh index c0b6230..e271e4f 100755 --- a/setup.sh +++ b/setup.sh @@ -94,18 +94,21 @@ fi echo "" echo "Setup Done." echo "" -echo "oe-init-build-env will set the current directory to build" -echo "One must be within the build tree to run bitbake." +echo "oe-init-build-env will configure the environment." +echo "Due to recent security changes in git, you must configure" +echo "the OEROOT directory as a safe directory." echo "" echo "To build mlinux-base-image:" echo " source oe-init-build-env" -echo " machine=mtcdt bitbake mlinux-base-image" +echo " git config --global --add safe.directory $OEROOT" +echo " MACHINE=mtcdt bitbake mlinux-base-image" echo " or (requires Redpine sources)" -echo " machine=mtcdt bitbake mlinux-commisioning-image" +echo " MACHINE=mtcdt bitbake mlinux-commissioning-image" echo "" echo "To build mlinux-mtcap-image:" echo " source oe-init-build-env" +echo " git config --global --add safe.directory $OEROOT" echo " MACHINE=mtcap bitbake mlinux-mtcap-image" echo " or" -echo " MACHINE=mtcap bitbake mlinux-mtcap-commisioning-image" +echo " MACHINE=mtcap bitbake mlinux-mtcap-commissioning-image" -- cgit v1.2.3