clear command not found - Yocto core-image-base

Viewed 325

I'm building core-image-base on i.MX 8MM EVK from NXP. This build is based on Yocto Zeus branch and when I'm entering clear command it's not available.

root@imx8mmevk:~# clear
-sh: clear: command not found

Can someone help?

Thanks in advance.

1 Answers

If busybox is not enabled in your distro, you could receive these similar kind of error. To resolve, add the following lines in your local.conf:

IMAGE_INSTALL_append = " busybox"
DISTRO_FEATURES_append = " busybox"

Thank you community, for letting me figuring this out!

Related