we want a easy way to make the nano take / untake the boot feature of jp4.5
how to flash and unflash the QSPI-NOR without flash a system?
we want a easy way to make the nano take / untake the boot feature of jp4.5
how to flash and unflash the QSPI-NOR without flash a system?
There is a board config under your Linux_for_Tegra that has only the QSPI inside its file name. Use that for your flash.sh and it will only flash the QSPI.
is it in the floder of the jetson system?
and can we erase it with that script when we do not need this feature (ex. to boot a jetpack4.4 image) ?
is it in the floder of the jetson system?
It is on the L4T driver package on your host.
and can we erase it with that script when we do not need this feature (ex. to boot a jetpack4.4 image) ?
I donāt know what do you want to erase here. If you erase the content in QSPI, you nano cannot boot anymore.
i means we do not want the feature some time
( Boot firmware for all Jetson Nano developer kits updated to relocate boot firmware to integrated QSPI-NOR. Developer kits will use microSD Card solely for OS/app storage after this change
https://developer.nvidia.com/jetpack-sdk-45-archive)
because it can make the jetpack4.4\4.3 image cards useless.
It cannot be disabled. Also, it is not suggested to mix up different jetpack version together.
thx.
but how to make our board back to the older firmware?
I already told in previous comment.
is the cmd correct below, if we only want flash the QSPI-NOR?
./flash.sh -k EBT <target_board> internal
.# flash.sh: Flash the target board.
.# flash.sh performs the best in LDK release environment.
.#
.# Usage: Place the board in recovery mode and run:
.#
.# flash.sh [options] <target_board> <root_device>
.#
.# for more detail enter āflash.sh -hā
.#
.# Examples:
.# ./flash.sh <target_board> internal - boot <target_board> from on-board device (eMMC/SDCARD)
.# ./flash.sh <target_board> external - boot <target_board> from external device
.# ./flash.sh <target_board> mmcblk0p1 - boot <target_board> from eMMC
.# ./flash.sh <target_board> mmcblk1p1 - boot <target_board> from SDCARD
.# ./flash.sh <target_board> sda1 - boot <target_board> from USB device
.# ./flash.sh <target_board> nvme0n1 - boot <target_board> from NVME storage device
.# ./flash.sh -N :/nfsroot <target_board> eth0 - boot <target_board> from NFS
.# ./flash.sh -k LNX <target_board> mmcblk1p1 - update <target_board> kernel
.# ./flash.sh -k EBT <target_board> mmcblk1p1 - update <target_board> bootloader
.#
There is a board config that has qspi inside it file name. Use it as your target_board and no other ā-rā ā-kā parameters are needed.
How about you read all the file name of *.conf files there and tell me which one has spi in its name?
And I already told you to read the quick start guide in another post.
i read that, but maybe it is easy to get some misunderstanding, especially non-native English speaker .
is it this?
p3449-0000+p3448-0000-qspi.conf
do we not need to modify it?
Yes, that is. No need to modify it. Put your board to recovery mode and try to flash.
If you donāt read the document, then we cannot help you either.
No, the parameters are wrong. You should use p3449-0000+p3448-0000-qspi and no EBT.
do you mean the file p3542-0000+p3448-0003-qspi.conf?
how to use it?
is it describe in the doc ?https://docs.nvidia.com/jetson/l4t/index.html#page/Tegra%20Linux%20Driver%20Package%20Development%20Guide/introduction.html#
like this?
$ sudo ./flash.sh <config> mmcblk0p1
Where is the basename of the flash configuration file:
ā¢jetson-nano-qspi-sd for a SKU 0000 device
ā¢jetson-nano-emmc for a SKU 0002 device
flash log (4.1 KB)
Those *.conf files under your Linux_for_Tegra represent the board config you are going to use in the flash.sh ā¦
For example,
sudo ./flash.sh jetson-nano-devkit mmcblk0p1 means using jetson-nano-devkit.conf this file as board configā¦
Thus, user can define their own config file and use that to flash the boardā¦
For example, if I write a file 1234.conf, then I can use below command to flashā¦
sudo ./flash.sh 1234 mmclbk0p1.
The rest of work is to know which file is for your need⦠p3449-0000+p3448-0000-qspi.conf is for jetson nano sdcard module to update the QSPI only.
That p3542-0000+p3448-0003-qspi.conf is for jetson nano 2gb but not 4gb case.
flash log (13.4 KB)
thx very much
i think i flash the QSPI success
but if we donāt specific which board,
does it that mean we only can connect one board to the host pc ? flash one board every time?
There is a support for massflash tool. But since you are a beginner, I donāt suggest you to try that now.
You may get stuck again and take lots of time.
So I would suggest you to just flash them one by one.