Forum Discussion
AlexFV3
New Contributor
2 years agoHi on step G ( when choosing Ubuntu ),
on this line: sudo rm -rf lib/modules/*
The contents of lib/modules are removed, but is no "modules" directory, why do you attempt to delete the contents of directory "modules"
Then on this line: sudo cp -r $LINUX_BIN/a53/modules/* lib/modules/
There's a directory called "modules" in a53, how did you build the contents of directory "a53", it is unclear as to where does the directory "modules" come from in directory a53.
Thanks.
mkdir rootfs-yocto && cd rootfs-yocto # Not needed if not building with Yocto sudo tar xf $LINUX_BIN/a53/core-image-minimal-agilex.tar.gz sudo rm -rf lib/modules/* sudo cp -r $LINUX_BIN/a53/modules/* lib/modules/ cd .. mkdir rootfs-ubuntu && cd rootfs-ubuntu sudo tar xf $LINUX_BIN/a53/ubuntu-base-20.04.5-base-arm64.tar.gz sudo rm -rf lib/modules/* sudo cp -r $LINUX_BIN/a53/modules/* lib/modules/ cd .. ln -s rootfs-ubuntu rootfs