Hello,
jetapck ver. : R32 (release), REVISION: 7.2
jetson module : Xavier NX ddr 16GB
I expect that dmesg say like below.
dmesg | head -5
[ 0.000000] Booting Linux on physical CPU 0x0
[ 0.000000] Linux version 4.9.253-tegra ( my information ) (gcc version 7.3.1 20180425 [linaro-7.3-2018.05 revision d29120a424ecfbc167ef90065c0eeb7f91977701] (Linaro GCC 7.3-2018.05) ) #1 SMP PREEMPT Sun Apr 17 02:37:44 PDT 2022
[ 0.000000] Boot CPU: AArch64 Processor [4e0f0040]
[ 0.000000] OF: fdt:memory scan node memory, reg size 48,
[ 0.000000] OF: fdt: - 80000000 , 2c000000
but, like this
dmesg | head -5
[ 0.000000] Booting Linux on physical CPU 0x0
[ 0.000000] Linux version 4.9.253-tegra (buildbrain@mobile-u64-5374-d5000) (gcc version 7.3.1 20180425 [linaro-7.3-2018.05 revision d29120a424ecfbc167ef90065c0eeb7f91977701] (Linaro GCC 7.3-2018.05) ) #1 SMP PREEMPT Sun Apr 17 02:37:44 PDT 2022
[ 0.000000] Boot CPU: AArch64 Processor [4e0f0040]
[ 0.000000] OF: fdt:memory scan node memory, reg size 48,
[ 0.000000] OF: fdt: - 80000000 , 2c000000
extlinux.conf :
1 TIMEOUT 30
2 DEFAULT primary
3
4 MENU TITLE L4T boot options
5
6 LABEL primary
7 MENU LABEL primary kernel
8 LINUX /boot/Image
9 INITRD /boot/initrd
10 FDT /boot/tegra194-p3668-all-p3509-0000.dtb
11 INITRD /boot/initrd
12 INITRD /boot/initrd
13 APPEND ${cbootargs} quiet root=/dev/mmcblk0p1 rw rootwait rootfstype=ext4 console=ttyTCU0,115200n8 console=tty0 fbcon=map:0 net.ifn ames=0
14
15 # When testing a custom kernel, it is recommended that you create a backup of
16 # the original kernel and add a new entry to this file so that the device can
17 # fallback to the original kernel. To do this:
18 #
19 # 1, Make a backup of the original kernel
20 # sudo cp /boot/Image /boot/Image.backup
21 #
22 # 2, Copy your custom kernel into /boot/Image
23 #
24 # 3, Uncomment below menu setting lines for the original kernel
25 #
26 # 4, Reboot
27
28 # LABEL backup
29 # MENU LABEL backup kernel
30 # LINUX /boot/Image.backup
31 # INITRD /boot/initrd
32 # APPEND ${cbootargs}
Could anyone tell me how to resolve this issue?
Additionally, After flashing jetson in fresh, then if I do apt update and at upgrade, What is changed? Can I see upgraded item’s list?
Can I rollback previous state(before doing apt upgrade)?
Thank you.