You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
switch to tty because most probably your terminal may break after we remove ncurses
force remove ncurses
$ KISS_FORCE=1 kiss r ncurses
build and install netbsd-curses
$ kiss build netbsd-curses
check which packages depends on ncurses and rebuild them(kiss-revdepends comes with kiss-utils package. its in my repo)
$ kiss b $(kiss revdepends ncurses | sed -e 's#/.*##g'| tr '\n''')
switching to toybox
build and install gnugrep(for grep), mawk(for awk), oksh(for /bin/sh), rinit(for init system, you can use any init system you want), rsv(for service management), mdevd(for device management) and toybox(for coreutils)
$ kiss b gnugrep mawk oksh rinit rsv mdevd toybox
switch to toybox utils
$ kiss a | grep ^toybox | kiss a -
switch to gnugrep mawk and oksh
$ kiss a | grep ^gnugrep | kiss a -
$ kiss a | grep ^mawk | kiss a -
$ kiss a | grep ^oksh | kiss a -
$ kiss a | grep ^rinit | kiss a -