/bin/su needs to be /bin/sh replace the "u" with an "h"
BAD: root@hostname# chroot /mnt/buildroot /bin/su -l
GOOD: root@hostname# chroot /mnt/buildroot /bin/sh -l
<code>
<blockcode>
<foo>
[foo]
More information about formatting options
FIX: chroot
/bin/su needs to be /bin/sh replace the "u" with an "h"
BAD:
root@hostname# chroot /mnt/buildroot /bin/su -l
GOOD:
root@hostname# chroot /mnt/buildroot /bin/sh -l