[Buildroot] [PATCH] ncurses: make host-ncurses use host terminfo

Peter Korsgaard peter at korsgaard.com
Wed Aug 8 14:10:41 UTC 2018


>>>>> "Peter" == Peter Korsgaard <peter at korsgaard.com> writes:

Hi,

 >> # HG changeset patch
 >> # User Hollis Blanchard <hollis_blanchard at mentor.com>
 >> # Date 1531239381 25200
 >> #      Tue Jul 10 09:16:21 2018 -0700
 >> # Node ID 5f7fe697b92ac0145674a6c96aad0f787b4bae32
 >> # Parent  d71314cdccf1993ccdb05cddb16a5491f0bf723e
 >> ncurses: make host-ncurses use host terminfo

 >> Host GDB suffers a serious problem: pressing backspace (or ^W ^U or any other
 >> "delete" key) results in a plain space being printed instead, making the
 >> command prompt almost completely unusable.

 >> That's because it's using host-ncurses, which embeds a path for the terminfo
 >> database into the library itself. That path ends up being something like
 >> /home/hollisb/buildroot.git/output/host/share/terminfo, which obviously doesn't
 >> generally exist other hosts. ('relocate-sdk.sh' cannot and does not edit
 >> binaries like libncurses.so.6, so doesn't resolve this problem.)

 >> /usr/share/terminfo is a far better path to use, since it almost certainly
 >> exists on the host. Theoretically, it could be from a different ncurses version
 >> with incompatible terminfo database format, but this doesn't seem to be a
 >> problem in practice. (Future patches could address the theoretical problem if
 >> it actually appears in real life.)

 >> This change allows buildroot's host gdb, which uses ncurses 6.x, to work on
 >> RHEL5, RHEL6, and RHEL7, which all provide terminfo from ncurses 5.x.

 >> Signed-off-by: Hollis Blanchard <hollis_blanchard at mentor.com>

 > Committed to 2018.02.x and 2018.05.x, thanks.

Hmm, this triggers an interesting issue with tic :/

** Building terminfo database, please wait...
Running sh ./shlib tic to install /usr/share/terminfo ...

        You may see messages regarding extended capabilities, e.g., AX.
        These are extended terminal capabilities which are compiled
        using
                tic -x
        If you have ncurses 4.2 applications, you should read the INSTALL
        document, and install the terminfo without the -x option.

"terminfo.tmp", line 21272, terminal 'v3220': /home/peko/.terminfo: permission denied (errno 30)

What happens here is that tic doesn't have write access to
/usr/share/terminfo (as we are not root), so instead it writes the db to
~/.terminfo.

We in general don't want buildroot to touch any files outside the
buildroot output directory (and $TMPDIR), but it normally isn't
enforced/checked by the autobuilders. For this specific setup with
building inside a container $HOME is mounted readonly, so it really
fails.

The question is how to fix it. The logical solution would be to set
TERMINFO to get it to put the database somewhere else, but that doesn't
work because run_tic.sh overwrites it:

# don't use user's TERMINFO variable
TERMINFO=${DESTDIR}$ticdir ; export TERMINFO

The only fix I can think of is:

HOST_NCURSES_MAKE_ENV += HOME=$(HOST_DIR)

But that isn't very nice. Any other ideas?

-- 
Bye, Peter Korsgaard


More information about the buildroot mailing list