I am trying to create a rootfs that I can use for the Beaglebone Black.
I have been following the instructions here: https://krinkinmu.github.io/2020/07/05/beaglebone-software-update.html for "Root file system".
I have tried following the instructions which are (missing out the step to change the install directory for simplicity):
git clone git://git.busybox.net/busybox.git
cd busybox/
export ARCH=arm
export CROSS_COMPILE=arm-linux-gnueabi-
make defconfig
make -j 8
make install
The issue is that the output folder ./_install
only contains:
~/bbb/rfs_busybox$ ls -l _install/
total 12
drwxr-xr-x 2 user user 4096 Apr 1 18:28 bin
lrwxrwxrwx 1 user user 11 Apr 1 18:28 linuxrc -> bin/busybox
drwxr-xr-x 2 user user 4096 Apr 1 18:28 sbin
drwxr-xr-x 4 user user 4096 Apr 1 18:28 usr
There is no /etc/
folder or all the other folder that I would normally expect.
The branch I am using is origin/1_32_stable
but I first tried the master
branch - no luck so far.
So I don't understand what I am doing wrong here... the method is quite simple, so I am confused...