summaryrefslogtreecommitdiffstats
path: root/create_pnor_image.pl
diff options
context:
space:
mode:
authorChristian Geddes <crgeddes@us.ibm.com>2018-01-16 10:49:16 -0600
committerChristian Geddes <crgeddes@us.ibm.com>2018-01-16 10:49:16 -0600
commit22a9eadc0b2afbd2aca1e054faa2cca90e7760c2 (patch)
tree1896ebfde9440749b97fd49877f9945d136d1e29 /create_pnor_image.pl
parentb7aad501e62c36f2e7341f4e1101969bad2e8f21 (diff)
downloadpnor-22a9eadc0b2afbd2aca1e054faa2cca90e7760c2.tar.gz
pnor-22a9eadc0b2afbd2aca1e054faa2cca90e7760c2.zip
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
Diffstat (limited to 'create_pnor_image.pl')
-rwxr-xr-xcreate_pnor_image.pl2
1 files changed, 1 insertions, 1 deletions
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";
OpenPOWER on IntegriCloud