Hi all,
which parts of the ncurses lib are required for coreboot v3?
I did a default install of the current ncurses lib 5.6. A "make menuconfig" on the latest svn coreboot complains about missing COLS, wmove, acs_map etc.
These functions are named within /usr/include/curses.h and ncurses.h
The README names libncurses5-dev. I did not find this anywhwere. I reran a "configure --with-develop" in ncurses-5.6, but did not obtain any improvement.
Thanks, Martin
On Wed, Feb 27, 2008 at 07:12:53PM +0100, Martin Trautmann wrote:
which parts of the ncurses lib are required for coreboot v3?
Development parts.
I did a default install of the current ncurses lib 5.6. A "make menuconfig" on the latest svn coreboot complains about missing COLS, wmove, acs_map etc.
Probably missing the development parts.
These functions are named within /usr/include/curses.h and ncurses.h
The README names libncurses5-dev. I did not find this anywhwere. I reran a "configure --with-develop" in ncurses-5.6, but did not obtain any improvement.
Were /usr/include/curses.h and ncurses.h installed by make install from your build?
Your distribution should already include a ncurses development package, try to install that.
Another data point would be running make menuconfig in a Linux source directory. If that works and v3 doesn't, we need to fix it.
//Peter
Peter Stuge wrote:
The README names libncurses5-dev. I did not find this anywhwere. I reran a "configure --with-develop" in ncurses-5.6, but did not obtain any improvement.
Were /usr/include/curses.h and ncurses.h installed by make install from your build?
yes
Your distribution should already include a ncurses development package, try to install that.
Thanks, there was one indeed (ubuntu).
I guess somewhere there's some docu how this could be built on ones own, but I'm happy now,
Martin