diff options
author | Stéphane Veyret <stephane@neptura.org> | 2023-07-02 14:21:21 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-07-10 11:36:34 +0100 |
commit | 23c6c87f551cbff7c56297734e308e0f2deb05c1 (patch) | |
tree | f7c845ad934d9ab8dd4e334df618c40caca4ec3f /scripts/oe-setup-builddir | |
parent | 863477938dffee130c94850a0d61e8d47f0d53ec (diff) | |
download | poky-23c6c87f551cbff7c56297734e308e0f2deb05c1.tar.gz |
scripts/oe-setup-builddir: copy conf-notes.txt to build dir
Since commit 569d4cd325, if one is using a custom template directory
containing a conf-notes.txt, this file is only displayed when creating
a new environment. When entering an already existing environment, only
the default poky conf-notes.txt is displayed.
This patch copies the conf-notes.txt to display to the build directory,
so that the good file is shown, even when templateconf.cfg is not used.
(From OE-Core rev: 845e8292f218d740ee653fa68bc3110aec1af3c5)
Signed-off-by: Stéphane Veyret <sveyret@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/oe-setup-builddir')
-rwxr-xr-x | scripts/oe-setup-builddir | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/scripts/oe-setup-builddir b/scripts/oe-setup-builddir index 89ae30f609..678aeac4be 100755 --- a/scripts/oe-setup-builddir +++ b/scripts/oe-setup-builddir | |||
@@ -98,9 +98,17 @@ EOM | |||
98 | SHOWYPDOC=yes | 98 | SHOWYPDOC=yes |
99 | fi | 99 | fi |
100 | 100 | ||
101 | if [ -z "$OECORENOTESCONF" ]; then | ||
102 | OECORENOTESCONF="$OEROOT/meta/conf/templates/default/conf-notes.txt" | ||
103 | fi | ||
104 | if [ ! -r "$BUILDDIR/conf/conf-notes.txt" ]; then | ||
105 | [ ! -r "$OECORENOTESCONF" ] || cp "$OECORENOTESCONF" "$BUILDDIR/conf/conf-notes.txt" | ||
106 | fi | ||
107 | |||
101 | # Prevent disturbing a new GIT clone in same console | 108 | # Prevent disturbing a new GIT clone in same console |
102 | unset OECORELOCALCONF | 109 | unset OECORELOCALCONF |
103 | unset OECORELAYERCONF | 110 | unset OECORELAYERCONF |
111 | unset OECORENOTESCONF | ||
104 | 112 | ||
105 | # Ending the first-time run message. Show the YP Documentation banner. | 113 | # Ending the first-time run message. Show the YP Documentation banner. |
106 | if [ -n "$SHOWYPDOC" ]; then | 114 | if [ -n "$SHOWYPDOC" ]; then |
@@ -116,11 +124,7 @@ EOM | |||
116 | # unset SHOWYPDOC | 124 | # unset SHOWYPDOC |
117 | fi | 125 | fi |
118 | 126 | ||
119 | if [ -z "$OECORENOTESCONF" ]; then | 127 | [ ! -r "$BUILDDIR/conf/conf-notes.txt" ] || cat "$BUILDDIR/conf/conf-notes.txt" |
120 | OECORENOTESCONF="$OEROOT/meta/conf/templates/default/conf-notes.txt" | ||
121 | fi | ||
122 | [ ! -r "$OECORENOTESCONF" ] || cat "$OECORENOTESCONF" | ||
123 | unset OECORENOTESCONF | ||
124 | 128 | ||
125 | if [ ! -f "$BUILDDIR/conf/templateconf.cfg" ]; then | 129 | if [ ! -f "$BUILDDIR/conf/templateconf.cfg" ]; then |
126 | echo "$ORG_TEMPLATECONF" >"$BUILDDIR/conf/templateconf.cfg" | 130 | echo "$ORG_TEMPLATECONF" >"$BUILDDIR/conf/templateconf.cfg" |