-
Notifications
You must be signed in to change notification settings - Fork 0
/
l4t-flash-with-set-x.log
9657 lines (9624 loc) · 614 KB
/
l4t-flash-with-set-x.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
+ INFODIVIDER='###############################################################################'
+ netmasktbl=("255.255.255.252" "255.255.255.248" "255.255.255.240" "255.255.255.224" "255.255.255.192" "255.255.255.128" "255.255.255.0" "255.255.254.0" "255.255.252.0" "255.255.248.0" "255.255.240.0" "255.255.224.0" "255.255.192.0" "255.255.128.0" "255.255.0.0" "255.254.0.0" "255.252.0.0" "255.248.0.0" "255.240.0.0" "255.224.0.0" "255.192.0.0" "255.128.0.0" "255.0.0.0")
+ '[' 2 -lt 2 ']'
+ nargs=2
+ target_rootdev=mmcblk0p1
+ nargs=1
+ ext_target_board=jetson-agx-xavier-industrial
+ _nvbrd_trk=0
+ '[' '!' -r jetson-agx-xavier-industrial.conf ']'
+++ dirname ./flash.sh
++ cd .
++ pwd
+ LDK_DIR=/bld-l4t/stevie/Linux_for_Tegra
++ readlink -f /bld-l4t/stevie/Linux_for_Tegra
+ LDK_DIR=/bld-l4t/stevie/Linux_for_Tegra
++ readlink -e jetson-agx-xavier-industrial.conf
+ ext_target_board_canonical=/bld-l4t/stevie/Linux_for_Tegra/p2822-0000+p2888-0008.conf
++ basename /bld-l4t/stevie/Linux_for_Tegra/p2822-0000+p2888-0008.conf .conf
+ ext_target_board_canonical=p2822-0000+p2888-0008
+ disk_enc_enable=0
+ rootfs_ab=0
+ source jetson-agx-xavier-industrial.conf
++ source /bld-l4t/stevie/Linux_for_Tegra/p2972-0000.conf.common
+++ OVERLAY_DTB_FILE=L4TConfiguration.dtbo
+++ ODMDATA=0x9190000
+++ CHIPID=0x19
+++ EMMC_CFG=flash_t194_sdmmc.xml
+++ BOOTPARTSIZE=8388608
+++ EMMCSIZE=31276924928
+++ ITS_FILE=
+++ BPFDTB_FILE=tegra194-a01-bpmp-p2888-a01.dtb
+++ DTB_FILE=tegra194-p2888-0001-p2822-0000.dtb
+++ TBCDTB_FILE=tegra194-p2888-0001-p2822-0000.dtb
+++ ROOTFSSIZE=28GiB
+++ CMDLINE_ADD='mminit_loglevel=4 console=ttyTCU0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0 rootfstype=ext4 sdhci_tegra.en_boot_part_access=1'
+++ target_board=t186ref
+++ ROOT_DEV='mmcblk0p12 ------------ internal eMMC.
sda1 ----------------- external USB devices. (USB memory stick, HDD)
eth0 ----------------- nfsroot via RJ45 Ethernet port.
eth1 ----------------- nfsroot via USB Ethernet interface.'
+++ TEGRABOOT=bootloader/nvtboot_t194.bin
+++ WB0BOOT=bootloader/warmboot_t194_dev.bin
+++ FLASHER=bootloader/nvtboot_recovery_cpu_t194.bin
+++ BOOTLOADER=bootloader/nvtboot_cpu_t194.bin
+++ INITRD=bootloader/l4t_initrd.img
+++ TBCFILE=bootloader/nvdisp-init.bin
+++ UEFIFILE=bootloader/uefi_jetson.bin
+++ BPFFILE=bootloader/bpmp-2_t194.bin
+++ TOSFILE=bootloader/tos_t194.img
+++ EKSFILE=bootloader/eks.img
+++ MTSPREBOOT=bootloader/preboot_c10_cr.bin
+++ MTS_MCE=bootloader/mce_c10_cr.bin
+++ MTSPROPER=bootloader/mts_c10_cr.bin
+++ MB1FILE=bootloader/mb1_t194_dev.bin
+++ SOSFILE=bootloader/mb1_t194_dev.bin
+++ MB2BLFILE=bootloader/nvtboot_recovery_t194.bin
+++ IST_UCODE=bootloader/ist_ucode_dev.bin
+++ SPEFILE=bootloader/spe_t194.bin
+++ CAMERAFW=bootloader/camera-rtcpu-t194-rce.img
+++ MB2APPLET=nvtboot_applet_t194.bin
+++ FBFILE=fuse_bypass_t194.xml
+++ CBOOTOPTION_FILE=bootloader/cbo.dtb
+++ UEFI_OS_LAUNCHER=1
+++ BCT=--sdram_config
+++ BINSARGS='--bin "'
+++ EMMC_BCT1=tegra194-memcfg-sw-override.cfg
+++ EMMC_BCT=tegra194-mb1-bct-memcfg-p2888.cfg
+++ MISC_CONFIG=tegra194-mb1-bct-misc-flash.cfg
+++ MISC_COLD_BOOT_CONFIG=tegra194-mb1-bct-misc-l4t.cfg
+++ BOOTROM_CONFIG=tegra194-mb1-bct-reset-p2888-0000-p2822-0000.cfg
+++ DEV_PARAMS=tegra194-br-bct-sdmmc.cfg
+++ DEV_PARAMS_B=tegra194-br-bct_b-sdmmc.cfg
+++ SCR_COLD_BOOT_CONFIG=tegra194-mb1-bct-scr-cbb-mini.cfg
+++ SCR_CONFIG=tegra194-mb1-bct-scr-cbb-mini.cfg
+++ PINMUX_CONFIG=tegra19x-mb1-pinmux-p2888-0000-a00-p2822-0000-a00.cfg
+++ PMIC_CONFIG=tegra194-mb1-bct-pmic-p2888-0001-a01-p2822-0000.cfg
+++ PMC_CONFIG=tegra19x-mb1-padvoltage-p2888-0000-a00-p2822-0000-a00.cfg
+++ PROD_CONFIG=tegra19x-mb1-prod-p2888-0000-p2822-0000.cfg
+++ BR_CMD_CONFIG=tegra194-mb1-bct-reset-p2888-0000-p2822-0000.cfg
+++ DEVICE_CONFIG=tegra19x-mb1-bct-device-sdmmc.cfg
+++ UPHY_CONFIG=tegra194-mb1-uphy-lane-p2888-0000-p2822-0000.cfg
+++ MINRATCHET_CONFIG=tegra194-mb1-bct-ratchet-p2888-0000-p2822-0000.cfg
+++ GPIOINT_CONFIG=tegra194-mb1-bct-gpioint-p2888-0000-p2822-0000.cfg
+++ SOFT_FUSES=tegra194-mb1-soft-fuses-l4t.cfg
+++ NVKEY_FILE=t194_rsa_dev.key
+++ NVENCRYPTKEY_FILE=t194_sbk_dev.key
+++ DEFAULT_FAB=A01
+++ VERFILENAME=emmc_bootblob_ver.txt
+++ rootfs_ab=0
+++ disk_enc_enable=0
+++ OVERLAY_DTB_ROOTFSABINFO_FILE=L4TRootfsInfo.dtbo
+++ [[ '' == 1 ]]
+++ [[ '' == '' ]]
+++ [[ '' == 1 ]]
+++ [[ '' == 1 ]]
+++ OVERLAY_DTB_FILE=L4TConfiguration.dtbo,L4TRootfsInfo.dtbo
+++ BPFDTB_SKU5_FILE=tegra194-a02-bpmp-p2888-0005-a04.dtb
+++ COMP_BPMP_FW_DTB=1
++ EMMC_CFG=flash_l4t_t194_spi_emmc_jaxi.xml
++ BPFDTB_FILE=tegra194-a02-bpmp-p2888-0008-b01-jaxi.dtb
++ DTB_FILE=tegra194-p2888-0008-p2822-0000.dtb
++ TBCDTB_FILE=tegra194-p2888-0008-p2822-0000.dtb
++ DRAMECCFILE=bootloader/dram-ecc-t194.bin
++ BADPAGEFILE=bootloader/badpage.bin
++ BADPAGENAME=bad-page
++ SCEFILE=bootloader/sce_t194.bin
++ OVERLAY_DTB_FILE=L4TConfiguration.dtbo,L4TRootfsInfo.dtbo,tegra194-p2822-camera-dual-imx274-overlay.dtbo,tegra194-p2822-camera-e3331-overlay.dtbo,tegra194-p2822-camera-e3333-overlay.dtbo,tegra194-p2822-camera-imx185-overlay.dtbo,tegra194-p2822-camera-imx390-overlay.dtbo,tegra194-p2888-0008-p2822-0000-overlay.dtbo
++ DEV_PARAMS=tegra194-br-bct-qspi-l4t.cfg
++ DEV_PARAMS_B=tegra194-br-bct_b-qspi-l4t.cfg
++ PMIC_CONFIG=tegra194-mb1-bct-pmic-p2888-0008-b01-p2822-0000.cfg
++ DEVICE_CONFIG=tegra19x-mb1-bct-device-qspi-jaxi.cfg
++ PINMUX_CONFIG=tegra19x-mb1-pinmux-p2888-0008-b01-p2822-0000-jaxi.cfg
++ EMMC_BCT=tegra194-mb1-bct-memcfg-4x-derated-ecc-p2888.cfg
++ MISC_CONFIG=tegra194-mb1-bct-misc-flash-jaxi.cfg
++ MISC_COLD_BOOT_CONFIG=tegra194-mb1-bct-misc-l4t-jaxi.cfg
++ DEFAULT_FAB=A00
++ VERFILENAME=qspi_bootblob_ver.txt
++ OTA_BOOT_DEVICE=/dev/mtdblock0
++ OTA_GPT_DEVICE=/dev/mtdblock0
++ RAMCODE=1
++ [[ '' == 1 ]]
++ [[ '' == '' ]]
++ [[ '' == 1 ]]
++ [[ '' == 1 ]]
+ '[' '' '!=' '' ']'
+ BL_DIR=/bld-l4t/stevie/Linux_for_Tegra/bootloader
+ TARGET_DIR=/bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref
+ KERNEL_DIR=/bld-l4t/stevie/Linux_for_Tegra/kernel
+ export PATH=/bld-l4t/stevie/Linux_for_Tegra/kernel:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/bld-l4t/stevie/Linux_for_Tegra/bootloader
+ PATH=/bld-l4t/stevie/Linux_for_Tegra/kernel:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/bld-l4t/stevie/Linux_for_Tegra/bootloader
+ DTB_DIR=/bld-l4t/stevie/Linux_for_Tegra/kernel/dtb
+ '[' '--bin "' = '' -a '' '!=' '' ']'
+ '[' '--bin "' '!=' '' ']'
+ '[' 0x19 '!=' 0x23 ']'
+ SKIPUID=--skipuid
+ echo '###############################################################################'
###############################################################################
+ echo '# L4T BSP Information:'
# L4T BSP Information:
+ '[' -f /bld-l4t/stevie/Linux_for_Tegra/nv_tegra/bsp_version ']'
+ source /bld-l4t/stevie/Linux_for_Tegra/nv_tegra/bsp_version
++ BSP_BRANCH=35
++ BSP_MAJOR=1
++ BSP_MINOR=0
++ BSP_VERSION=35.1.0
+ echo '# R35 , REVISION: 1.0'
# R35 , REVISION: 1.0
+ echo '###############################################################################'
###############################################################################
+ rootdev_type=external
+ [[ mmcblk0p1 == \i\n\t\e\r\n\a\l ]]
+ [[ mmcblk0p1 == mmcblk0p* ]]
+ rootdev_type=internal
+ INITRD=
+ '[' 0 -eq 1 ']'
+ [[ internal == \e\x\t\e\r\n\a\l ]]
+ '[' 0 -eq 1 ']'
+ rootfsuuid=
+ rootfsuuid_enc=
+ rootfsuuid_ext=
+ rootfsuuid_ext_enc=
+ rootfsuuid_b=
+ rootfsuuid_b_enc=
+ rootfsuuid_b_ext=
+ rootfsuuid_b_ext_enc=
+ cmdline_b=
+ rootfsuuidfile=/bld-l4t/stevie/Linux_for_Tegra/bootloader/l4t-rootfs-uuid.txt
+ read_part_name=
+ rcm_boot=0
+ no_root_check=0
+ no_flash=0
+ rapid_boot=0
+ external_device=0
+ sparseupdate=0
+ no_systemimg=0
+ bup_blob=0
+ to_sign=0
+ support_multi_spec=0
+ clean_up=0
+ _ODMDATA=
+ boot_chain_flash=ALL
+ boot_chain_select=A
+ opstr+=c:d:f:h:i:k:m:n:o:rt:u:v:w:x:B:C:F:G:I:K:L:M:N:R:S:Z:-:
+ getopts c:d:f:h:i:k:m:n:o:rt:u:v:w:x:B:C:F:G:I:K:L:M:N:R:S:Z:-: OPTION
+ '[' 0 '!=' 1 ']'
+ '[' root '!=' root ']'
+ [[ '' == 1 ]]
+ '[' ALL '!=' A ']'
+ '[' ALL '!=' B ']'
+ '[' ALL '!=' ALL ']'
+ '[' 0x19 = 0x19 ']'
+ '[' ALL = B ']'
+ '[' A '!=' A ']'
+ '[' ALL '!=' ALL ']'
+ keyfile=
+ '[' '' '!=' '' ']'
+ sbk_keyfile=
+ '[' '' '!=' '' ']'
+ user_keyfile=
+ zero_keyfile=.zero_.key
+ '[' '' '!=' '' ']'
+ '[' '' '!=' '' ']'
+ enc_rfs_keyfile=
+ '[' '' '!=' '' ']'
+ ECID=
+ fuselevel=
+ hwchipid=
+ hwchiprev=
+ '[' '' = '' ']'
+ '[' 0x19 = 0x19 ']'
+ hwchiprev=2
+ bootauth=
+ '[' '' = '' ']'
+ get_fuse_level fuselevel hwchipid bootauth
+ local rcmcmd
+ local inst_args=
+ local idval_1=
+ local idval_2=
+ local flval=
+ local baval=None
+ local flvar=fuselevel
+ local hivar=hwchipid
+ local bavar=bootauth
+ '[' -f /bld-l4t/stevie/Linux_for_Tegra/bootloader/tegrarcm_v2 ']'
+ rcmcmd=tegrarcm_v2
+ '[' 0x19 = 0x23 ']'
+ '[' -n '' ']'
+ pushd /bld-l4t/stevie/Linux_for_Tegra/bootloader
++ ./tegrarcm_v2 --uid
++ grep BR_CID
++ cut '-d ' -f2
+ ECID=0x880219116405608224000000170180c0
+ popd
+ '[' 0x880219116405608224000000170180c0 '!=' '' ']'
+ idval_1=0x80
+ eval 'hwchipid="0x80"'
++ hwchipid=0x80
+ idval_2=0x19
+ flval=8
+ baval=
+ '[' 0x19 = 0x23 ']'
+ '[' 0x80 = 0x21 ']'
+ '[' 0x80 = 0x12 ']'
+ '[' 0x80 = 0x00 ']'
+ '[' 0x80 = 0x80 ']'
+ '[' 0x19 = 0x19 ']'
+ case ${flval} in
+ flval=fuselevel_production
+ baval=NS
+ SKIPUID=--skipuid
+ hwchipid=0x19
+ hwchiprev=2
+ eval 'fuselevel="fuselevel_production"'
++ fuselevel=fuselevel_production
+ eval 'bootauth="NS"'
++ bootauth=NS
+ '[' fuselevel_production = fuselevel_unknown ']'
+ '[' fuselevel_production = '' ']'
+ declare -F -f process_fuse_level
+ '[' 0 -eq 0 ']'
+ process_fuse_level fuselevel_production
+ local fuselevel=fuselevel_production
+ local srctoken=_dev
+ local trgtoken=_prod
+ '[' fuselevel_production = fuselevel_unknown ']'
+ '[' fuselevel_production = fuselevel_nofuse ']'
+ sub_var_token MTSPREBOOT preboot_c10_cr.bin preboot_c10_prod_cr.bin
+ local var=MTSPREBOOT
+ local from=preboot_c10_cr.bin
+ local to=preboot_c10_prod_cr.bin
+ '[' MTSPREBOOT '!=' '' -a bootloader/preboot_c10_cr.bin '!=' '' ']'
+ [[ bootloader/preboot_c10_cr.bin =~ preboot_c10_cr\.bin ]]
++ echo bootloader/preboot_c10_cr.bin
++ sed -e s/preboot_c10_cr.bin/preboot_c10_prod_cr.bin/
+ local val=bootloader/preboot_c10_prod_cr.bin
+ eval MTSPREBOOT=bootloader/preboot_c10_prod_cr.bin
++ MTSPREBOOT=bootloader/preboot_c10_prod_cr.bin
+ sub_var_token MTS_MCE mce_c10_cr.bin mce_c10_prod_cr.bin
+ local var=MTS_MCE
+ local from=mce_c10_cr.bin
+ local to=mce_c10_prod_cr.bin
+ '[' MTS_MCE '!=' '' -a bootloader/mce_c10_cr.bin '!=' '' ']'
+ [[ bootloader/mce_c10_cr.bin =~ mce_c10_cr\.bin ]]
++ echo bootloader/mce_c10_cr.bin
++ sed -e s/mce_c10_cr.bin/mce_c10_prod_cr.bin/
+ local val=bootloader/mce_c10_prod_cr.bin
+ eval MTS_MCE=bootloader/mce_c10_prod_cr.bin
++ MTS_MCE=bootloader/mce_c10_prod_cr.bin
+ sub_var_token MTSPROPER mts_c10_cr.bin mts_c10_prod_cr.bin
+ local var=MTSPROPER
+ local from=mts_c10_cr.bin
+ local to=mts_c10_prod_cr.bin
+ '[' MTSPROPER '!=' '' -a bootloader/mts_c10_cr.bin '!=' '' ']'
+ [[ bootloader/mts_c10_cr.bin =~ mts_c10_cr\.bin ]]
++ echo bootloader/mts_c10_cr.bin
++ sed -e s/mts_c10_cr.bin/mts_c10_prod_cr.bin/
+ local val=bootloader/mts_c10_prod_cr.bin
+ eval MTSPROPER=bootloader/mts_c10_prod_cr.bin
++ MTSPROPER=bootloader/mts_c10_prod_cr.bin
+ sub_var_token IST_UCODE ist_ucode_dev.bin ist_ucode_prod.bin
+ local var=IST_UCODE
+ local from=ist_ucode_dev.bin
+ local to=ist_ucode_prod.bin
+ '[' IST_UCODE '!=' '' -a bootloader/ist_ucode_dev.bin '!=' '' ']'
+ [[ bootloader/ist_ucode_dev.bin =~ ist_ucode_dev\.bin ]]
++ echo bootloader/ist_ucode_dev.bin
++ sed -e s/ist_ucode_dev.bin/ist_ucode_prod.bin/
+ local val=bootloader/ist_ucode_prod.bin
+ eval IST_UCODE=bootloader/ist_ucode_prod.bin
++ IST_UCODE=bootloader/ist_ucode_prod.bin
+ sub_var_token MB1FILE _dev _prod
+ local var=MB1FILE
+ local from=_dev
+ local to=_prod
+ '[' MB1FILE '!=' '' -a bootloader/mb1_t194_dev.bin '!=' '' ']'
+ [[ bootloader/mb1_t194_dev.bin =~ _dev ]]
++ sed -e s/_dev/_prod/
++ echo bootloader/mb1_t194_dev.bin
+ local val=bootloader/mb1_t194_prod.bin
+ eval MB1FILE=bootloader/mb1_t194_prod.bin
++ MB1FILE=bootloader/mb1_t194_prod.bin
+ sub_var_token SOSFILE _dev _prod
+ local var=SOSFILE
+ local from=_dev
+ local to=_prod
+ '[' SOSFILE '!=' '' -a bootloader/mb1_t194_dev.bin '!=' '' ']'
+ [[ bootloader/mb1_t194_dev.bin =~ _dev ]]
++ echo bootloader/mb1_t194_dev.bin
++ sed -e s/_dev/_prod/
+ local val=bootloader/mb1_t194_prod.bin
+ eval SOSFILE=bootloader/mb1_t194_prod.bin
++ SOSFILE=bootloader/mb1_t194_prod.bin
+ sub_var_token WB0BOOT _dev _prod
+ local var=WB0BOOT
+ local from=_dev
+ local to=_prod
+ '[' WB0BOOT '!=' '' -a bootloader/warmboot_t194_dev.bin '!=' '' ']'
+ [[ bootloader/warmboot_t194_dev.bin =~ _dev ]]
++ echo bootloader/warmboot_t194_dev.bin
++ sed -e s/_dev/_prod/
+ local val=bootloader/warmboot_t194_prod.bin
+ eval WB0BOOT=bootloader/warmboot_t194_prod.bin
++ WB0BOOT=bootloader/warmboot_t194_prod.bin
+ '[' '' '!=' '' ']'
+ '[' '' '!=' '' ']'
+ '[' 0 -eq 0 ']'
+ chk_soc_sanity
+ local mach_dir=
+ local socname=Unknown
+ local opmode=Unknown
+ local disk_enc=
+ '[' 0x19 = '' ']'
+ case ${hwchipid} in
+ socname='Tegra 194'
+ mach_dir=t186ref
+ case ${fuselevel} in
+ opmode=production
+ '[' 0 -eq 1 ']'
+ disk_enc=disabled
+ echo '# Target Board Information:'
# Target Board Information:
+ echo -n '# Name: jetson-agx-xavier-industrial, Board Family: t186ref, '
# Name: jetson-agx-xavier-industrial, Board Family: t186ref, + echo 'SoC: Tegra 194, '
SoC: Tegra 194,
+ echo '# OpMode: production, Boot Authentication: NS, '
# OpMode: production, Boot Authentication: NS,
+ echo '# Disk encryption: disabled ,'
# Disk encryption: disabled ,
+ echo '###############################################################################'
###############################################################################
+ '[' 0x19 '!=' '' -a 0x19 '!=' 0x19 ']'
+ '[' t186ref '!=' t186ref ']'
+ case ${bootauth} in
+ '[' '' '!=' '' ']'
+ '[' '' '!=' '' ']'
+ mkfilesoft emc_fuse_dev_params /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/ ''
+ local var=emc_fuse_dev_params
+ local varname=emc_fuse_dev_paramsname
+ eval 'emc_fuse_dev_params="/bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/"'
++ emc_fuse_dev_params=/bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/
+ '[' /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/ = '' -o '!' -f /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/ ']'
+ '[' '' '!=' '' -a -f '' ']'
+ '[' /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/ '!=' '' ']'
+ '[' '!' -f /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/ ']'
+ eval 'emc_fuse_dev_params=""'
++ emc_fuse_dev_params=
+ eval 'emc_fuse_dev_paramsname=""'
++ emc_fuse_dev_paramsname=
+ return 1
+ mkfilesoft emcfuse '' /bld-l4t/stevie/Linux_for_Tegra/bootloader/
+ local var=emcfuse
+ local varname=emcfusename
+ eval 'emcfuse=""'
++ emcfuse=
+ '[' '' = '' -o '!' -f '' ']'
+ '[' /bld-l4t/stevie/Linux_for_Tegra/bootloader/ '!=' '' -a -f /bld-l4t/stevie/Linux_for_Tegra/bootloader/ ']'
+ '[' '' '!=' '' ']'
+ return 0
+ mkfilesoft device_config /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra19x-mb1-bct-device-qspi-jaxi.cfg ''
+ local var=device_config
+ local varname=device_configname
+ eval 'device_config="/bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra19x-mb1-bct-device-qspi-jaxi.cfg"'
++ device_config=/bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra19x-mb1-bct-device-qspi-jaxi.cfg
+ '[' /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra19x-mb1-bct-device-qspi-jaxi.cfg = '' -o '!' -f /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra19x-mb1-bct-device-qspi-jaxi.cfg ']'
+ '[' /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra19x-mb1-bct-device-qspi-jaxi.cfg '!=' '' ']'
+ '[' '!' -f /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra19x-mb1-bct-device-qspi-jaxi.cfg ']'
++ readlink -f /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra19x-mb1-bct-device-qspi-jaxi.cfg
+ eval 'device_config="/bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra19x-mb1-bct-device-qspi-jaxi.cfg"'
++ device_config=/bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra19x-mb1-bct-device-qspi-jaxi.cfg
++ basename /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra19x-mb1-bct-device-qspi-jaxi.cfg
+ eval 'device_configname="tegra19x-mb1-bct-device-qspi-jaxi.cfg"'
++ device_configname=tegra19x-mb1-bct-device-qspi-jaxi.cfg
+ return 0
+ mkfilesoft misc_config /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-bct-misc-flash-jaxi.cfg ''
+ local var=misc_config
+ local varname=misc_configname
+ eval 'misc_config="/bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-bct-misc-flash-jaxi.cfg"'
++ misc_config=/bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-bct-misc-flash-jaxi.cfg
+ '[' /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-bct-misc-flash-jaxi.cfg = '' -o '!' -f /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-bct-misc-flash-jaxi.cfg ']'
+ '[' /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-bct-misc-flash-jaxi.cfg '!=' '' ']'
+ '[' '!' -f /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-bct-misc-flash-jaxi.cfg ']'
++ readlink -f /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-bct-misc-flash-jaxi.cfg
+ eval 'misc_config="/bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-bct-misc-flash-jaxi.cfg"'
++ misc_config=/bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-bct-misc-flash-jaxi.cfg
++ basename /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-bct-misc-flash-jaxi.cfg
+ eval 'misc_configname="tegra194-mb1-bct-misc-flash-jaxi.cfg"'
++ misc_configname=tegra194-mb1-bct-misc-flash-jaxi.cfg
+ return 0
+ '[' 0x19 = 0x23 ']'
+ mkfilesoft mb2applet '' ''
+ local var=mb2applet
+ local varname=mb2appletname
+ eval 'mb2applet=""'
++ mb2applet=
+ '[' '' = '' -o '!' -f '' ']'
+ '[' '' '!=' '' -a -f '' ']'
+ '[' '' '!=' '' ']'
+ return 0
+ declare -F -f process_board_version
+ board_FAB=
+ board_id=
+ board_sku=
+ board_revision=
+ '[' '' == '' ']'
+ '[' 0x19 '!=' '' ']'
+ get_board_version board_id board_FAB board_sku board_revision emcfuse_bin
+ local args=
+ local __board_id=board_id
+ local __board_FAB=board_FAB
+ local __board_sku=board_sku
+ local __board_revision=board_revision
+ local __emcfuse_bin=emcfuse_bin
+ local 'command=dump eeprom boardinfo cvm.bin'
+ local boardid
+ local boardFAB
+ local boardsku
+ local boardrevision
+ '[' -n '' ']'
+ '[' '' '!=' '' ']'
+ args+='--chip 0x19 '
+ args+='--applet "/bld-l4t/stevie/Linux_for_Tegra/bootloader/mb1_t194_prod.bin" '
+ args+='--skipuid '
+ SKIPUID=
+ '[' 0x19 = 0x19 ']'
+ mkfilesoft soft_fuses /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-soft-fuses-l4t.cfg
+ local var=soft_fuses
+ local varname=soft_fusesname
+ eval 'soft_fuses="/bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-soft-fuses-l4t.cfg"'
++ soft_fuses=/bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-soft-fuses-l4t.cfg
+ '[' /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-soft-fuses-l4t.cfg = '' -o '!' -f /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-soft-fuses-l4t.cfg ']'
+ '[' /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-soft-fuses-l4t.cfg '!=' '' ']'
+ '[' '!' -f /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-soft-fuses-l4t.cfg ']'
++ readlink -f /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-soft-fuses-l4t.cfg
+ eval 'soft_fuses="/bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-soft-fuses-l4t.cfg"'
++ soft_fuses=/bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-soft-fuses-l4t.cfg
++ basename /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-soft-fuses-l4t.cfg
+ eval 'soft_fusesname="tegra194-mb1-soft-fuses-l4t.cfg"'
++ soft_fusesname=tegra194-mb1-soft-fuses-l4t.cfg
+ return 0
+ cp2local soft_fuses /bld-l4t/stevie/Linux_for_Tegra/bootloader/tegra194-mb1-soft-fuses-l4t.cfg
+ local src=soft_fuses
+ '[' /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-soft-fuses-l4t.cfg = '' ']'
+ '[' '!' -f /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-soft-fuses-l4t.cfg ']'
+ '[' /bld-l4t/stevie/Linux_for_Tegra/bootloader/tegra194-mb1-soft-fuses-l4t.cfg = '' ']'
+ '[' -f /bld-l4t/stevie/Linux_for_Tegra/bootloader/tegra194-mb1-soft-fuses-l4t.cfg -a /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-soft-fuses-l4t.cfg = /bld-l4t/stevie/Linux_for_Tegra/bootloader/tegra194-mb1-soft-fuses-l4t.cfg ']'
+ echo -n 'copying soft_fuses(/bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-soft-fuses-l4t.cfg)... '
copying soft_fuses(/bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-soft-fuses-l4t.cfg)... + cp -f /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-soft-fuses-l4t.cfg /bld-l4t/stevie/Linux_for_Tegra/bootloader/tegra194-mb1-soft-fuses-l4t.cfg
+ chkerr
+ '[' 0 -ne 0 ']'
+ '[' '' = '' ']'
+ echo done.
done.
+ return 0
+ args+='--soft_fuses tegra194-mb1-soft-fuses-l4t.cfg '
+ args+='--bins "mb2_applet nvtboot_applet_t194.bin" '
+ command+=';reboot recovery'
+ args+='--cmd "dump eeprom boardinfo cvm.bin;reboot recovery" '
+ local 'cmd=./tegraflash.py --chip 0x19 --applet "/bld-l4t/stevie/Linux_for_Tegra/bootloader/mb1_t194_prod.bin" --skipuid --soft_fuses tegra194-mb1-soft-fuses-l4t.cfg --bins "mb2_applet nvtboot_applet_t194.bin" --cmd "dump eeprom boardinfo cvm.bin;reboot recovery" '
+ pushd /bld-l4t/stevie/Linux_for_Tegra/bootloader
+ '[' '' '!=' '' ']'
+ '[' '' '!=' '' ']'
+ '[' -f rcm_state ']'
+ echo './tegraflash.py --chip 0x19 --applet "/bld-l4t/stevie/Linux_for_Tegra/bootloader/mb1_t194_prod.bin" --skipuid --soft_fuses tegra194-mb1-soft-fuses-l4t.cfg --bins "mb2_applet nvtboot_applet_t194.bin" --cmd "dump eeprom boardinfo cvm.bin;reboot recovery" '
./tegraflash.py --chip 0x19 --applet "/bld-l4t/stevie/Linux_for_Tegra/bootloader/mb1_t194_prod.bin" --skipuid --soft_fuses tegra194-mb1-soft-fuses-l4t.cfg --bins "mb2_applet nvtboot_applet_t194.bin" --cmd "dump eeprom boardinfo cvm.bin;reboot recovery"
+ eval './tegraflash.py --chip 0x19 --applet "/bld-l4t/stevie/Linux_for_Tegra/bootloader/mb1_t194_prod.bin" --skipuid --soft_fuses tegra194-mb1-soft-fuses-l4t.cfg --bins "mb2_applet nvtboot_applet_t194.bin" --cmd "dump eeprom boardinfo cvm.bin;reboot recovery" '
++ ./tegraflash.py --chip 0x19 --applet /bld-l4t/stevie/Linux_for_Tegra/bootloader/mb1_t194_prod.bin --skipuid --soft_fuses tegra194-mb1-soft-fuses-l4t.cfg --bins 'mb2_applet nvtboot_applet_t194.bin' --cmd 'dump eeprom boardinfo cvm.bin;reboot recovery'
Welcome to Tegra Flash
version 1.0.0
Type ? or help for help and q or quit to exit
Use ! to execute system commands
[ 0.0324 ] Generating RCM messages
[ 0.0351 ] tegrahost_v2 --chip 0x19 0 --magicid MB1B --appendsigheader /bld-l4t/stevie/Linux_for_Tegra/bootloader/mb1_t194_prod.bin zerosbk
[ 0.0357 ] Header already present for /bld-l4t/stevie/Linux_for_Tegra/bootloader/mb1_t194_prod.bin
[ 0.0713 ] tegrasign_v3.py --key None --getmode mode.txt
[ 0.0714 ] Assuming zero filled SBK key
[ 0.0732 ] tegrasign_v3.py --file /bld-l4t/stevie/Linux_for_Tegra/bootloader/mb1_t194_prod_sigheader.bin --key None --length 1136 --offset 2960 --pubkeyhash pub_key.key
[ 0.0733 ] Assuming zero filled SBK key
[ 0.0780 ] Warning: pub_key.key is not found
[ 0.0805 ] tegrahost_v2 --chip 0x19 0 --updatesigheader /bld-l4t/stevie/Linux_for_Tegra/bootloader/mb1_t194_prod_sigheader.bin /bld-l4t/stevie/Linux_for_Tegra/bootloader/mb1_t194_prod_sigheader.hash zerosbk
[ 0.0913 ] tegrabct_v2 --chip 0x19 0 --sfuse tegra194-mb1-soft-fuses-l4t.cfg.pdf sfuse.bin
[ 0.0959 ] tegrarcm_v2 --listrcm rcm_list.xml --chip 0x19 0 --sfuses sfuse.bin --download rcm /bld-l4t/stevie/Linux_for_Tegra/bootloader/mb1_t194_prod_sigheader.bin 0 0
[ 0.0974 ] RCM 0 is saved as rcm_0.rcm
[ 0.1011 ] RCM 1 is saved as rcm_1.rcm
[ 0.1013 ] RCM 2 is saved as rcm_2.rcm
[ 0.1013 ] List of rcm files are saved in rcm_list.xml
[ 0.1013 ]
[ 0.1013 ] Signing RCM messages
[ 0.1035 ] tegrasign_v3.py --key None --list rcm_list.xml --getmontgomeryvalues montgomery.bin --pubkeyhash pub_key.key
[ 0.1037 ] Assuming zero filled SBK key
[ 0.1072 ] Warning: pub_key.key is not found
[ 0.1067 ] Copying signature to RCM mesages
[ 0.1085 ] tegrarcm_v2 --chip 0x19 0 --updatesig rcm_list_signed.xml
[ 0.1096 ] Boot Rom communication
[ 0.1113 ] tegrarcm_v2 --chip 0x19 0 --rcm rcm_list_signed.xml --skipuid
[ 0.1119 ] RCM version 0X190001
[ 0.1394 ] Boot Rom communication completed
[ 2.1687 ] tegrarcm_v2 --isapplet
[ 2.1707 ] Applet version 01.00.0000
[ 2.2491 ] tegrarcm_v2 --ismb2
[ 2.3486 ] tegrahost_v2 --chip 0x19 --align nvtboot_applet_t194_aligned.bin
[ 2.3509 ] tegrahost_v2 --chip 0x19 0 --magicid PLDT --appendsigheader nvtboot_applet_t194_aligned.bin zerosbk
[ 2.3515 ] adding BCH for nvtboot_applet_t194_aligned.bin
[ 2.3563 ] tegrasign_v3.py --key None --list nvtboot_applet_t194_aligned_sigheader.bin_list.xml --pubkeyhash pub_key.key
[ 2.3564 ] Assuming zero filled SBK key
[ 2.3576 ] Warning: pub_key.key is not found
[ 2.3590 ] tegrahost_v2 --chip 0x19 0 --updatesigheader nvtboot_applet_t194_aligned_sigheader.bin.encrypt nvtboot_applet_t194_aligned_sigheader.bin.hash zerosbk
[ 2.3625 ] tegrarcm_v2 --download mb2 nvtboot_applet_t194_sigheader.bin.encrypt
[ 2.3630 ] Applet version 01.00.0000
[ 2.4389 ] Sending mb2
[ 2.4390 ] [................................................] 100%
[ 2.4636 ] tegrarcm_v2 --boot recovery
[ 2.4654 ] Applet version 01.00.0000
[ 3.5482 ] tegrarcm_v2 --isapplet
[ 3.6332 ] tegrarcm_v2 --ismb2
[ 3.6338 ] MB2 Applet version 01.00.0000
[ 3.7319 ] tegrarcm_v2 --ismb2
[ 3.7326 ] MB2 Applet version 01.00.0000
[ 3.8249 ] Retrieving board information
[ 3.8268 ] tegrarcm_v2 --oem platformdetails chip chip_info.bin
[ 3.8273 ] MB2 Applet version 01.00.0000
[ 3.9217 ] Saved platform info in chip_info.bin
[ 3.9261 ] Chip minor revision: 2
[ 3.9261 ] Bootrom revision: 0xf
[ 3.9262 ] Ram code: 0x1
[ 3.9262 ] Chip sku: 0x99
[ 3.9262 ] Chip Sample: non es
[ 3.9271 ] Retrieving EEPROM data
[ 3.9272 ] tegrarcm_v2 --oem platformdetails eeprom cvm /bld-l4t/stevie/Linux_for_Tegra/bootloader/cvm.bin
[ 3.9280 ] MB2 Applet version 01.00.0000
[ 4.0132 ] Saved platform info in /bld-l4t/stevie/Linux_for_Tegra/bootloader/cvm.bin
[ 4.0546 ] Rebooting to recovery mode
[ 4.0576 ] tegrarcm_v2 --ismb2
[ 4.0582 ] MB2 Applet version 01.00.0000
[ 4.1380 ] Rebooting to recovery mode
[ 4.1402 ] tegrarcm_v2 --reboot recovery
[ 4.1407 ] MB2 Applet version 01.00.0000
+ chkerr 'Reading board information failed.'
+ '[' 0 -ne 0 ']'
+ '[' 'Reading board information failed.' = '' ']'
+ '[' '' = '' ']'
++ ./chkbdinfo -i cvm.bin
+ boardid='2888 '
++ ./chkbdinfo -f cvm.bin
+ boardFAB='600 '
++ ./chkbdinfo -k cvm.bin
+ boardsku='0008 '
++ ./chkbdinfo -r cvm.bin
+ boardrevision='E.0 '
+ chkerr 'Parsing board information failed.'
+ '[' 0 -ne 0 ']'
+ '[' 'Parsing board information failed.' = '' ']'
+ popd
+ eval 'board_id=2888 '
++ board_id=2888
+ eval 'board_FAB=600 '
++ board_FAB=600
+ eval 'board_sku=0008 '
++ board_sku=0008
+ eval 'board_revision=E.0 '
++ board_revision=E.0
+ '[' 0x19 = 0x23 ']'
+ _nvbrd_trk=1
+ BOARDID=2888
+ BOARDSKU=0008
+ FAB=600
+ BOARDREV=E.0
+ process_board_version 2888 600 0008 E.0 2
+ local board_id=2888
+ local board_FAB=600
+ local board_sku=0008
+ local board_revision=E.0
+ local chiprev=2
+ local bdv=600
+ local bid=2888
+ local fromfab=-a01
+ local frombpfab=-a01.dtb
+ local tofab=-a01
+ local pmicfab=-a01
+ local bpfdtbfab=-a01.dtb
+ local tbcdtbfab=-a01
+ local kerndtbfab=-a01
+ local fromchip=a01-bpmp
+ local tochip=
+ '[' 2 = 0 ']'
+ echo 'Board ID(2888) FAB(600) sku(0008) revision(E.0)'
Board ID(2888) FAB(600) sku(0008) revision(E.0)
+ [[ 600 =~ ^[A-Z0-9][0-9][0-9]$ ]]
+ '[' 2888 = 2888 ']'
+ '[' 600 '<' 200 ']'
+ '[' 600 '<' 300 ']'
+ '[' 600 '<' 500 ']'
+ sub_var_token BPFDTB_FILE -a01.dtb -a01.dtb
+ local var=BPFDTB_FILE
+ local from=-a01.dtb
+ local to=-a01.dtb
+ '[' BPFDTB_FILE '!=' '' -a tegra194-a02-bpmp-p2888-0008-b01-jaxi.dtb '!=' '' ']'
+ [[ tegra194-a02-bpmp-p2888-0008-b01-jaxi.dtb =~ -a01\.dtb ]]
+ sub_var_token PINMUX_CONFIG -a01 -a01
+ local var=PINMUX_CONFIG
+ local from=-a01
+ local to=-a01
+ '[' PINMUX_CONFIG '!=' '' -a tegra19x-mb1-pinmux-p2888-0008-b01-p2822-0000-jaxi.cfg '!=' '' ']'
+ [[ tegra19x-mb1-pinmux-p2888-0008-b01-p2822-0000-jaxi.cfg =~ -a01 ]]
+ sub_var_token PMIC_CONFIG -a01 -a01
+ local var=PMIC_CONFIG
+ local from=-a01
+ local to=-a01
+ '[' PMIC_CONFIG '!=' '' -a tegra194-mb1-bct-pmic-p2888-0008-b01-p2822-0000.cfg '!=' '' ']'
+ [[ tegra194-mb1-bct-pmic-p2888-0008-b01-p2822-0000.cfg =~ -a01 ]]
+ sub_var_token PMC_CONFIG -a01 -a01
+ local var=PMC_CONFIG
+ local from=-a01
+ local to=-a01
+ '[' PMC_CONFIG '!=' '' -a tegra19x-mb1-padvoltage-p2888-0000-a00-p2822-0000-a00.cfg '!=' '' ']'
+ [[ tegra19x-mb1-padvoltage-p2888-0000-a00-p2822-0000-a00.cfg =~ -a01 ]]
+ sub_var_token PROD_CONFIG -a01 -a01
+ local var=PROD_CONFIG
+ local from=-a01
+ local to=-a01
+ '[' PROD_CONFIG '!=' '' -a tegra19x-mb1-prod-p2888-0000-p2822-0000.cfg '!=' '' ']'
+ [[ tegra19x-mb1-prod-p2888-0000-p2822-0000.cfg =~ -a01 ]]
+ sub_var_token BOOTROM_CONFIG -a01 -a01
+ local var=BOOTROM_CONFIG
+ local from=-a01
+ local to=-a01
+ '[' BOOTROM_CONFIG '!=' '' -a tegra194-mb1-bct-reset-p2888-0000-p2822-0000.cfg '!=' '' ']'
+ [[ tegra194-mb1-bct-reset-p2888-0000-p2822-0000.cfg =~ -a01 ]]
+ sub_var_token TBCDTB_FILE -a01 -a01
+ local var=TBCDTB_FILE
+ local from=-a01
+ local to=-a01
+ '[' TBCDTB_FILE '!=' '' -a tegra194-p2888-0008-p2822-0000.dtb '!=' '' ']'
+ [[ tegra194-p2888-0008-p2822-0000.dtb =~ -a01 ]]
+ sub_var_token DTB_FILE -a01 -a01
+ local var=DTB_FILE
+ local from=-a01
+ local to=-a01
+ '[' DTB_FILE '!=' '' -a tegra194-p2888-0008-p2822-0000.dtb '!=' '' ']'
+ [[ tegra194-p2888-0008-p2822-0000.dtb =~ -a01 ]]
+ '[' 2 '!=' 0 ']'
+ tochip=a02-bpmp
+ sub_var_token BPFDTB_FILE a01-bpmp a02-bpmp
+ local var=BPFDTB_FILE
+ local from=a01-bpmp
+ local to=a02-bpmp
+ '[' BPFDTB_FILE '!=' '' -a tegra194-a02-bpmp-p2888-0008-b01-jaxi.dtb '!=' '' ']'
+ [[ tegra194-a02-bpmp-p2888-0008-b01-jaxi.dtb =~ a01-bpmp ]]
+ '[' 2888 = 2888 ']'
+ '[' 0008 = 0005 ']'
+ declare -F -f process_chip_sku_version
+ emcfuse_value=
+ declare -F -f update_flash_args
+ '[' fuselevel_production == fuselevel_nofuse ']'
+ fuselevel_s=1
+ spec=2888-600-0008-E.0-1-2-jetson-agx-xavier-industrial-
+ MAX_SPEC_LEN=128
+ (( 51 > 128 ))
+ '[' 1 -ne 0 ']'
+ timeout 10s cat /dev/fd/63
++ boardinfo_trk
++ local boardinforom
++ local boardpartnu
++ [[ -e /bld-l4t/stevie/Linux_for_Tegra/nv_internal_trk.sh ]]
+ ROOTFS_TYPE=ext4
+ DEVSECTSIZE=512
+ BOOTPARTLIMIT=10485760
+ ACR_TYPE=acr-debug
+ fillpat=0
+ no_rootfs=0
+ no_recovery_img=0
+ boardid=2888
+ '[' '' = '' ']'
+ tegraid=0x19
+ '[' -z '' ']'
+ DFLT_KERNEL=/bld-l4t/stevie/Linux_for_Tegra/kernel/Image
+ '[' -z '' ']'
+ DFLT_KERNEL_FS=/bld-l4t/stevie/Linux_for_Tegra/kernel/Image
+ '[' -z '' ']'
+ DFLT_KERNEL_IMAGE=/bld-l4t/stevie/Linux_for_Tegra/kernel/Image
+ '[' -n '' ']'
+ setval odmdata ODMDATA
+ local var=odmdata
+ local val=ODMDATA
+ '[' 0x9190000 = '' ']'
+ eval 'odmdata="0x9190000"'
++ odmdata=0x9190000
+ setval rootfs_type ROOTFS_TYPE
+ local var=rootfs_type
+ local val=ROOTFS_TYPE
+ '[' ext4 = '' ']'
+ eval 'rootfs_type="ext4"'
++ rootfs_type=ext4
+ setval devsectsize DEVSECTSIZE
+ local var=devsectsize
+ local val=DEVSECTSIZE
+ '[' 512 = '' ']'
+ eval 'devsectsize="512"'
++ devsectsize=512
+ getsize rootfssize ROOTFSSIZE
+ local var=rootfssize
+ local val=ROOTFSSIZE
+ [[ 28GiB != *[!0-9]* ]]
+ [[ 28GiB == *KiB ]]
+ [[ 28GiB == *MiB ]]
+ [[ 28GiB == *GiB ]]
+ [[ 28GiB != *[!0-9]*GiB ]]
+ eval rootfssize=30064771072
++ rootfssize=30064771072
+ getsize recrootfssize RECROOTFSSIZE
+ local var=recrootfssize
+ local val=RECROOTFSSIZE
+ [[ '' != *[!0-9]* ]]
+ eval recrootfssize=
++ recrootfssize=
+ mkfilepath flashapp '' /bld-l4t/stevie/Linux_for_Tegra/bootloader/tegraflash.py
+ local var=flashapp
+ local varname=flashappname
+ eval 'flashapp=""'
++ flashapp=
+ setdflt flashapp /bld-l4t/stevie/Linux_for_Tegra/bootloader/tegraflash.py
+ local var=flashapp
+ '[' '' = '' ']'
+ eval 'flashapp="/bld-l4t/stevie/Linux_for_Tegra/bootloader/tegraflash.py"'
++ flashapp=/bld-l4t/stevie/Linux_for_Tegra/bootloader/tegraflash.py
+ '[' /bld-l4t/stevie/Linux_for_Tegra/bootloader/tegraflash.py '!=' '' ']'
++ readlink -f /bld-l4t/stevie/Linux_for_Tegra/bootloader/tegraflash.py
+ eval 'flashapp="/bld-l4t/stevie/Linux_for_Tegra/bootloader/tegraflash.py"'
++ flashapp=/bld-l4t/stevie/Linux_for_Tegra/bootloader/tegraflash.py
+ '[' '!' -f /bld-l4t/stevie/Linux_for_Tegra/bootloader/tegraflash.py ']'
++ basename /bld-l4t/stevie/Linux_for_Tegra/bootloader/tegraflash.py
+ eval 'flashappname="tegraflash.py"'
++ flashappname=tegraflash.py
+ mkfilepath flasher bootloader/nvtboot_recovery_cpu_t194.bin ''
+ local var=flasher
+ local varname=flashername
+ eval 'flasher="bootloader/nvtboot_recovery_cpu_t194.bin"'
++ flasher=bootloader/nvtboot_recovery_cpu_t194.bin
+ setdflt flasher ''
+ local var=flasher
+ '[' bootloader/nvtboot_recovery_cpu_t194.bin = '' ']'
+ '[' bootloader/nvtboot_recovery_cpu_t194.bin '!=' '' ']'
++ readlink -f bootloader/nvtboot_recovery_cpu_t194.bin
+ eval 'flasher="/bld-l4t/stevie/Linux_for_Tegra/bootloader/nvtboot_recovery_cpu_t194.bin"'
++ flasher=/bld-l4t/stevie/Linux_for_Tegra/bootloader/nvtboot_recovery_cpu_t194.bin
+ '[' '!' -f /bld-l4t/stevie/Linux_for_Tegra/bootloader/nvtboot_recovery_cpu_t194.bin ']'
++ basename /bld-l4t/stevie/Linux_for_Tegra/bootloader/nvtboot_recovery_cpu_t194.bin
+ eval 'flashername="nvtboot_recovery_cpu_t194.bin"'
++ flashername=nvtboot_recovery_cpu_t194.bin
+ mkfilepath bootloader bootloader/nvtboot_cpu_t194.bin /bld-l4t/stevie/Linux_for_Tegra/bootloader/cboot.bin
+ local var=bootloader
+ local varname=bootloadername
+ eval 'bootloader="bootloader/nvtboot_cpu_t194.bin"'
++ bootloader=bootloader/nvtboot_cpu_t194.bin
+ setdflt bootloader /bld-l4t/stevie/Linux_for_Tegra/bootloader/cboot.bin
+ local var=bootloader
+ '[' bootloader/nvtboot_cpu_t194.bin = '' ']'
+ '[' bootloader/nvtboot_cpu_t194.bin '!=' '' ']'
++ readlink -f bootloader/nvtboot_cpu_t194.bin
+ eval 'bootloader="/bld-l4t/stevie/Linux_for_Tegra/bootloader/nvtboot_cpu_t194.bin"'
++ bootloader=/bld-l4t/stevie/Linux_for_Tegra/bootloader/nvtboot_cpu_t194.bin
+ '[' '!' -f /bld-l4t/stevie/Linux_for_Tegra/bootloader/nvtboot_cpu_t194.bin ']'
++ basename /bld-l4t/stevie/Linux_for_Tegra/bootloader/nvtboot_cpu_t194.bin
+ eval 'bootloadername="nvtboot_cpu_t194.bin"'
++ bootloadername=nvtboot_cpu_t194.bin
+ mkdirpath rootfs_dir '' /bld-l4t/stevie/Linux_for_Tegra/rootfs
+ local var=rootfs_dir
+ eval rootfs_dir=
++ rootfs_dir=
+ setdflt rootfs_dir /bld-l4t/stevie/Linux_for_Tegra/rootfs
+ local var=rootfs_dir
+ '[' '' = '' ']'
+ eval 'rootfs_dir="/bld-l4t/stevie/Linux_for_Tegra/rootfs"'
++ rootfs_dir=/bld-l4t/stevie/Linux_for_Tegra/rootfs
+ '[' /bld-l4t/stevie/Linux_for_Tegra/rootfs '!=' '' ']'
++ readlink -f /bld-l4t/stevie/Linux_for_Tegra/rootfs
+ eval 'rootfs_dir="/bld-l4t/stevie/Linux_for_Tegra/rootfs"'
++ rootfs_dir=/bld-l4t/stevie/Linux_for_Tegra/rootfs
+ '[' '!' -d /bld-l4t/stevie/Linux_for_Tegra/rootfs ']'
+ mkfilepath kernel_image '' /bld-l4t/stevie/Linux_for_Tegra/kernel/Image
+ local var=kernel_image
+ local varname=kernel_imagename
+ eval 'kernel_image=""'
++ kernel_image=
+ setdflt kernel_image /bld-l4t/stevie/Linux_for_Tegra/kernel/Image
+ local var=kernel_image
+ '[' '' = '' ']'
+ eval 'kernel_image="/bld-l4t/stevie/Linux_for_Tegra/kernel/Image"'
++ kernel_image=/bld-l4t/stevie/Linux_for_Tegra/kernel/Image
+ '[' /bld-l4t/stevie/Linux_for_Tegra/kernel/Image '!=' '' ']'
++ readlink -f /bld-l4t/stevie/Linux_for_Tegra/kernel/Image
+ eval 'kernel_image="/bld-l4t/stevie/Linux_for_Tegra/kernel/Image"'
++ kernel_image=/bld-l4t/stevie/Linux_for_Tegra/kernel/Image
+ '[' '!' -f /bld-l4t/stevie/Linux_for_Tegra/kernel/Image ']'
++ basename /bld-l4t/stevie/Linux_for_Tegra/kernel/Image
+ eval 'kernel_imagename="Image"'
++ kernel_imagename=Image
+ mkfilepath kernel_fs '' /bld-l4t/stevie/Linux_for_Tegra/kernel/Image
+ local var=kernel_fs
+ local varname=kernel_fsname
+ eval 'kernel_fs=""'
++ kernel_fs=
+ setdflt kernel_fs /bld-l4t/stevie/Linux_for_Tegra/kernel/Image
+ local var=kernel_fs
+ '[' '' = '' ']'
+ eval 'kernel_fs="/bld-l4t/stevie/Linux_for_Tegra/kernel/Image"'
++ kernel_fs=/bld-l4t/stevie/Linux_for_Tegra/kernel/Image
+ '[' /bld-l4t/stevie/Linux_for_Tegra/kernel/Image '!=' '' ']'
++ readlink -f /bld-l4t/stevie/Linux_for_Tegra/kernel/Image
+ eval 'kernel_fs="/bld-l4t/stevie/Linux_for_Tegra/kernel/Image"'
++ kernel_fs=/bld-l4t/stevie/Linux_for_Tegra/kernel/Image
+ '[' '!' -f /bld-l4t/stevie/Linux_for_Tegra/kernel/Image ']'
++ basename /bld-l4t/stevie/Linux_for_Tegra/kernel/Image
+ eval 'kernel_fsname="Image"'
++ kernel_fsname=Image
+ mkfilepath bctfile '' /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-bct-memcfg-4x-derated-ecc-p2888.cfg
+ local var=bctfile
+ local varname=bctfilename
+ eval 'bctfile=""'
++ bctfile=
+ setdflt bctfile /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-bct-memcfg-4x-derated-ecc-p2888.cfg
+ local var=bctfile
+ '[' '' = '' ']'
+ eval 'bctfile="/bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-bct-memcfg-4x-derated-ecc-p2888.cfg"'
++ bctfile=/bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-bct-memcfg-4x-derated-ecc-p2888.cfg
+ '[' /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-bct-memcfg-4x-derated-ecc-p2888.cfg '!=' '' ']'
++ readlink -f /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-bct-memcfg-4x-derated-ecc-p2888.cfg
+ eval 'bctfile="/bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-bct-memcfg-4x-derated-ecc-p2888.cfg"'
++ bctfile=/bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-bct-memcfg-4x-derated-ecc-p2888.cfg
+ '[' '!' -f /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-bct-memcfg-4x-derated-ecc-p2888.cfg ']'
++ basename /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-mb1-bct-memcfg-4x-derated-ecc-p2888.cfg
+ eval 'bctfilename="tegra194-mb1-bct-memcfg-4x-derated-ecc-p2888.cfg"'
++ bctfilename=tegra194-mb1-bct-memcfg-4x-derated-ecc-p2888.cfg
+ '[' 0x19 = 0x19 ']'
+ mkfilepath bctfile1 '' /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-memcfg-sw-override.cfg
+ local var=bctfile1
+ local varname=bctfile1name
+ eval 'bctfile1=""'
++ bctfile1=
+ setdflt bctfile1 /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-memcfg-sw-override.cfg
+ local var=bctfile1
+ '[' '' = '' ']'
+ eval 'bctfile1="/bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-memcfg-sw-override.cfg"'
++ bctfile1=/bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-memcfg-sw-override.cfg
+ '[' /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-memcfg-sw-override.cfg '!=' '' ']'
++ readlink -f /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-memcfg-sw-override.cfg
+ eval 'bctfile1="/bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-memcfg-sw-override.cfg"'
++ bctfile1=/bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-memcfg-sw-override.cfg
+ '[' '!' -f /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-memcfg-sw-override.cfg ']'
++ basename /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/BCT/tegra194-memcfg-sw-override.cfg
+ eval 'bctfile1name="tegra194-memcfg-sw-override.cfg"'
++ bctfile1name=tegra194-memcfg-sw-override.cfg
+ mkfilepath cfgfile '' /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/cfg/flash_l4t_t194_spi_emmc_jaxi.xml
+ local var=cfgfile
+ local varname=cfgfilename
+ eval 'cfgfile=""'
++ cfgfile=
+ setdflt cfgfile /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/cfg/flash_l4t_t194_spi_emmc_jaxi.xml
+ local var=cfgfile
+ '[' '' = '' ']'
+ eval 'cfgfile="/bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/cfg/flash_l4t_t194_spi_emmc_jaxi.xml"'
++ cfgfile=/bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/cfg/flash_l4t_t194_spi_emmc_jaxi.xml
+ '[' /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/cfg/flash_l4t_t194_spi_emmc_jaxi.xml '!=' '' ']'
++ readlink -f /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/cfg/flash_l4t_t194_spi_emmc_jaxi.xml
+ eval 'cfgfile="/bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/cfg/flash_l4t_t194_spi_emmc_jaxi.xml"'
++ cfgfile=/bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/cfg/flash_l4t_t194_spi_emmc_jaxi.xml
+ '[' '!' -f /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/cfg/flash_l4t_t194_spi_emmc_jaxi.xml ']'
++ basename /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/cfg/flash_l4t_t194_spi_emmc_jaxi.xml
+ eval 'cfgfilename="flash_l4t_t194_spi_emmc_jaxi.xml"'
++ cfgfilename=flash_l4t_t194_spi_emmc_jaxi.xml
+ '[' '' = 1 ']'
+ mkfilepath dtbfile '' /bld-l4t/stevie/Linux_for_Tegra/kernel/dtb/tegra194-p2888-0008-p2822-0000.dtb
+ local var=dtbfile
+ local varname=dtbfilename
+ eval 'dtbfile=""'
++ dtbfile=
+ setdflt dtbfile /bld-l4t/stevie/Linux_for_Tegra/kernel/dtb/tegra194-p2888-0008-p2822-0000.dtb
+ local var=dtbfile
+ '[' '' = '' ']'
+ eval 'dtbfile="/bld-l4t/stevie/Linux_for_Tegra/kernel/dtb/tegra194-p2888-0008-p2822-0000.dtb"'
++ dtbfile=/bld-l4t/stevie/Linux_for_Tegra/kernel/dtb/tegra194-p2888-0008-p2822-0000.dtb
+ '[' /bld-l4t/stevie/Linux_for_Tegra/kernel/dtb/tegra194-p2888-0008-p2822-0000.dtb '!=' '' ']'
++ readlink -f /bld-l4t/stevie/Linux_for_Tegra/kernel/dtb/tegra194-p2888-0008-p2822-0000.dtb
+ eval 'dtbfile="/bld-l4t/stevie/Linux_for_Tegra/kernel/dtb/tegra194-p2888-0008-p2822-0000.dtb"'
++ dtbfile=/bld-l4t/stevie/Linux_for_Tegra/kernel/dtb/tegra194-p2888-0008-p2822-0000.dtb
+ '[' '!' -f /bld-l4t/stevie/Linux_for_Tegra/kernel/dtb/tegra194-p2888-0008-p2822-0000.dtb ']'
++ basename /bld-l4t/stevie/Linux_for_Tegra/kernel/dtb/tegra194-p2888-0008-p2822-0000.dtb
+ eval 'dtbfilename="tegra194-p2888-0008-p2822-0000.dtb"'
++ dtbfilename=tegra194-p2888-0008-p2822-0000.dtb
+ mkfilesoft kernelinitrd '' /bld-l4t/stevie/Linux_for_Tegra/bootloader/l4t_initrd.img
+ local var=kernelinitrd
+ local varname=kernelinitrdname
+ eval 'kernelinitrd=""'
++ kernelinitrd=
+ '[' '' = '' -o '!' -f '' ']'
+ '[' /bld-l4t/stevie/Linux_for_Tegra/bootloader/l4t_initrd.img '!=' '' -a -f /bld-l4t/stevie/Linux_for_Tegra/bootloader/l4t_initrd.img ']'
+ eval 'kernelinitrd="/bld-l4t/stevie/Linux_for_Tegra/bootloader/l4t_initrd.img"'
++ kernelinitrd=/bld-l4t/stevie/Linux_for_Tegra/bootloader/l4t_initrd.img
+ '[' /bld-l4t/stevie/Linux_for_Tegra/bootloader/l4t_initrd.img '!=' '' ']'
+ '[' '!' -f /bld-l4t/stevie/Linux_for_Tegra/bootloader/l4t_initrd.img ']'
++ readlink -f /bld-l4t/stevie/Linux_for_Tegra/bootloader/l4t_initrd.img
+ eval 'kernelinitrd="/bld-l4t/stevie/Linux_for_Tegra/bootloader/l4t_initrd.img"'
++ kernelinitrd=/bld-l4t/stevie/Linux_for_Tegra/bootloader/l4t_initrd.img
++ basename /bld-l4t/stevie/Linux_for_Tegra/bootloader/l4t_initrd.img
+ eval 'kernelinitrdname="l4t_initrd.img"'
++ kernelinitrdname=l4t_initrd.img
+ return 0
+ mkfilesoft tegraboot bootloader/nvtboot_t194.bin /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/nvtboot.bin
+ local var=tegraboot
+ local varname=tegrabootname
+ eval 'tegraboot="bootloader/nvtboot_t194.bin"'
++ tegraboot=bootloader/nvtboot_t194.bin
+ '[' bootloader/nvtboot_t194.bin = '' -o '!' -f bootloader/nvtboot_t194.bin ']'
+ '[' bootloader/nvtboot_t194.bin '!=' '' ']'
+ '[' '!' -f bootloader/nvtboot_t194.bin ']'
++ readlink -f bootloader/nvtboot_t194.bin
+ eval 'tegraboot="/bld-l4t/stevie/Linux_for_Tegra/bootloader/nvtboot_t194.bin"'
++ tegraboot=/bld-l4t/stevie/Linux_for_Tegra/bootloader/nvtboot_t194.bin
++ basename /bld-l4t/stevie/Linux_for_Tegra/bootloader/nvtboot_t194.bin
+ eval 'tegrabootname="nvtboot_t194.bin"'
++ tegrabootname=nvtboot_t194.bin
+ return 0
+ mkfilesoft wb0boot bootloader/warmboot_t194_prod.bin /bld-l4t/stevie/Linux_for_Tegra/bootloader/t186ref/nvtbootwb0.bin
+ local var=wb0boot
+ local varname=wb0bootname
+ eval 'wb0boot="bootloader/warmboot_t194_prod.bin"'
++ wb0boot=bootloader/warmboot_t194_prod.bin
+ '[' bootloader/warmboot_t194_prod.bin = '' -o '!' -f bootloader/warmboot_t194_prod.bin ']'
+ '[' bootloader/warmboot_t194_prod.bin '!=' '' ']'
+ '[' '!' -f bootloader/warmboot_t194_prod.bin ']'
++ readlink -f bootloader/warmboot_t194_prod.bin
+ eval 'wb0boot="/bld-l4t/stevie/Linux_for_Tegra/bootloader/warmboot_t194_prod.bin"'
++ wb0boot=/bld-l4t/stevie/Linux_for_Tegra/bootloader/warmboot_t194_prod.bin
++ basename /bld-l4t/stevie/Linux_for_Tegra/bootloader/warmboot_t194_prod.bin
+ eval 'wb0bootname="warmboot_t194_prod.bin"'
++ wb0bootname=warmboot_t194_prod.bin
+ return 0
+ mkfilesoft mb2_rf '' ''
+ local var=mb2_rf
+ local varname=mb2_rfname
+ eval 'mb2_rf=""'
++ mb2_rf=
+ '[' '' = '' -o '!' -f '' ']'
+ '[' '' '!=' '' -a -f '' ']'
+ '[' '' '!=' '' ']'
+ return 0
+ mkfilesoft psc_rf '' ''
+ local var=psc_rf
+ local varname=psc_rfname
+ eval 'psc_rf=""'
++ psc_rf=
+ '[' '' = '' -o '!' -f '' ']'
+ '[' '' '!=' '' -a -f '' ']'
+ '[' '' '!=' '' ']'
+ return 0
+ mkfilesoft cpu_bootloader bootloader/nvtboot_cpu_t194.bin ''
+ local var=cpu_bootloader
+ local varname=cpu_bootloadername
+ eval 'cpu_bootloader="bootloader/nvtboot_cpu_t194.bin"'
++ cpu_bootloader=bootloader/nvtboot_cpu_t194.bin