<div dir="ltr"><div><div>Didn't hear back on this, and realized I didn't quite format the previous email correctly.</div><div><br></div><div><br></div><div>Ran into a problem SSHing into an Openwrt router from a Fedora machine. Fedora sets terminfo to xterm-256color, but ncurses installed in openwrt doesn't include that file in the firmware. This causes a few unintended problems, namely nano fails to launch. </div>
<div>Attached patch adds xterm-256color to the files installed by ncurses.</div>
<div><br></div><div>Signed-off-by: Jonathan Bennett <<a href="mailto:jbscience87@gmail.com" target="_blank">jbscience87@gmail.com</a>></div></div><div><br></div><div><div>diff --git a/package/libs/ncurses/Makefile b/package/libs/ncurses/Makefile</div>

<div>index 62ffdfb..26b7bf5 100644</div><div>--- a/package/libs/ncurses/Makefile</div><div>+++ b/package/libs/ncurses/Makefile</div><div>@@ -101,7 +101,7 @@ ifneq ($(HOST_OS),FreeBSD)</div><div> <span style="white-space:pre-wrap">                   </span>mv $$$$dir $$$$(echo -ne "\x$$$$dir"); \</div>

<div> <span style="white-space:pre-wrap">                </span>done \</div><div> <span style="white-space:pre-wrap"> </span>)</div><div>-<span style="white-space:pre-wrap">       </span>for file in a/ansi d/dumb l/linux r/rxvt r/rxvt-unicode s/screen v/vt100 v/vt102 x/xterm x/xterm-color; do \</div>

<div>+<span style="white-space:pre-wrap"> </span>for file in a/ansi d/dumb l/linux r/rxvt r/rxvt-unicode s/screen v/vt100 v/vt102 x/xterm x/xterm-color x/xterm-256color; do \</div><div> <span style="white-space:pre-wrap">          </span>$(INSTALL_DIR) $(1)/usr/share/terminfo/`dirname $$$$file`; \</div>

<div> <span style="white-space:pre-wrap">                </span>$(CP) $(PKG_INSTALL_DIR)/usr/share/terminfo/$$$$file \</div><div> <span style="white-space:pre-wrap">                 </span>$(1)/usr/share/terminfo/$$$$file; \</div></div><div>
<br></div></div>