Hello.
I try to build the kernel image for 35.6.2 (kernel_src.tbz2 from public source)
I am using AGX Orin.
I do the default workflow:
make ARCH=arm64 O=~/JetsonOrin/kernel_build tegra_defconfig
make ARCH=arm64 O=~/JetsonOrin/kernel_build menuconfig
export LOCALVERSION=-tegra make ARCH=arm64 O=$HOME/JetsonOrin/kernel_build -j8
make ARCH=arm64 O=~/JetsonOrin/kernel_build -j$(nproc) dtbs
make ARCH=arm64 O=~/JetsonOrin/kernel_build -j$(nproc) modules
make ARCH=arm64 O=~/JetsonOrin/kernel_build modules_install
Then I replace the Image , modules and dtbs just copying it at host machine to Jetson related dirs.
After all I flash:
sudo ./tools/l4t_create_default_user.sh -u agx -p 1111 --accept-license
sudo ./flash.sh jetson-agx-orin-devkit internal
I see that system loads normal in UART console.
Although the screen is black.
In command line I try: lsmod | grep nvidia
The output is empty.
Also I try:
cat /var/log/Xorg.0.log | grep -E "EE|WW"
This says that interactive mode start was failed.
What is wrong I am doing?
Thanks.