From 22a9eadc0b2afbd2aca1e054faa2cca90e7760c2 Mon Sep 17 00:00:00 2001 From: Christian Geddes Date: Tue, 16 Jan 2018 10:49:16 -0600 Subject: Enable ATTR_PERM section in pnor for all CEC levels Previously we were only generating the ATTR_PERM section for P8 as we were hitting a size limitation for the table of contents of PNOR. New code has been added to the ffs tool to allow larger table of contents for PNOR so this is no longer an issue. This commit simply tells the script to generate a ATTR_PERM section for P9 now that this limitation no longer exists --- create_pnor_image.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'create_pnor_image.pl') diff --git a/create_pnor_image.pl b/create_pnor_image.pl index 17c4ee1..bf3bb7d 100755 --- a/create_pnor_image.pl +++ b/create_pnor_image.pl @@ -140,6 +140,7 @@ $build_pnor_command .= " --binFile_DJVPD $scratch_dir/djvpd_fill.bin.ecc"; $build_pnor_command .= " --binFile_CVPD $scratch_dir/cvpd.bin.ecc"; $build_pnor_command .= " --binFile_ATTR_TMP $scratch_dir/attr_tmp.bin.ecc"; $build_pnor_command .= " --binFile_OCC $occ_binary_filename.ecc"; +$build_pnor_command .= " --binFile_ATTR_PERM $scratch_dir/attr_perm.bin.ecc"; $build_pnor_command .= " --binFile_FIRDATA $scratch_dir/firdata.bin.ecc"; $build_pnor_command .= " --binFile_CAPP $scratch_dir/cappucode.bin.ecc"; $build_pnor_command .= " --binFile_SECBOOT $scratch_dir/secboot.bin.ecc"; @@ -154,7 +155,6 @@ if ($release eq "p9"){ if ($release eq "p8"){ $build_pnor_command .= " --binFile_SBEC $scratch_dir/$sbec_binary_filename"; $build_pnor_command .= " --binFile_WINK $scratch_dir/$wink_binary_filename"; - $build_pnor_command .= " --binFile_ATTR_PERM $scratch_dir/attr_perm.bin.ecc"; } else { $build_pnor_command .= " --binFile_SBKT $scratch_dir/SBKT.bin"; $build_pnor_command .= " --binFile_HCODE $scratch_dir/$wink_binary_filename"; -- cgit v1.2.1