summaryrefslogtreecommitdiffstats
path: root/platforms
diff options
context:
space:
mode:
authorRoland Hieber <rhi@pengutronix.de>2019-08-29 13:03:19 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2019-08-29 20:55:47 +0200
commit6d29c8a158b270c8a280d74a7067f66b4830caf1 (patch)
treecbda7e8dd32dcc3867684d741d7fa6e2bdced169 /platforms
parent15fd37dd2ced3921b0817d6a877bc02dcc48847b (diff)
downloadptxdist-6d29c8a158b270c8a280d74a7067f66b4830caf1.tar.gz
ptxdist-6d29c8a158b270c8a280d74a7067f66b4830caf1.tar.xz
platform: make clear that libc version is not only used for checking
With the old wording it reads like the version can be left empty. However, if the libc should be installed to the target (e.g. by selecting anything in the GLIBC or UCLIBC section), this version must be set, or the respective targetinstall stage will error: --------------------------- target: glibc.targetinstall --------------------------- ptxdist: error: ptxd_make_xpkg_init: please define <PKG>_VERSION Signed-off-by: Roland Hieber <rhi@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'platforms')
-rw-r--r--platforms/toolchain.in14
1 files changed, 8 insertions, 6 deletions
diff --git a/platforms/toolchain.in b/platforms/toolchain.in
index 2cf2009ec..c219fe29d 100644
--- a/platforms/toolchain.in
+++ b/platforms/toolchain.in
@@ -46,23 +46,25 @@ endchoice
if LIBC_GLIBC
config GLIBC_VERSION
string
- prompt "check for specific glibc version"
+ prompt "glibc version"
default "2.23"
help
Specify the glibc version this BSP shall be built with. This information
- is used to guess the toolchain path if you use "ptxdist toolchain"
- without an argument.
+ is used to guess the toolchain path if you use "ptxdist toolchain"
+ without an argument, and to install the glibc into the target file
+ system.
endif
if LIBC_UCLIBC
config UCLIBC_VERSION
string
- prompt "check for specific uClibc version"
+ prompt "uClibc version"
default "0.9.33.2"
help
Specify the uClibc version this BSP shall be built with. This information
- is used to guess the toolchain path if you use "ptxdist toolchain"
- without an argument.
+ is used to guess the toolchain path if you use "ptxdist toolchain"
+ without an argument. and to install the uClibc into the target file
+ system.
endif
config GNU_TARGET