summaryrefslogtreecommitdiffstats
path: root/src/usr/targeting
diff options
context:
space:
mode:
Diffstat (limited to 'src/usr/targeting')
-rwxr-xr-xsrc/usr/targeting/common/xmltohb/xmltohb.pl7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/usr/targeting/common/xmltohb/xmltohb.pl b/src/usr/targeting/common/xmltohb/xmltohb.pl
index 0a64c5b08..c0216658b 100755
--- a/src/usr/targeting/common/xmltohb/xmltohb.pl
+++ b/src/usr/targeting/common/xmltohb/xmltohb.pl
@@ -5419,6 +5419,9 @@ sub generateTargetingImage {
my ($heapZeroInitData,$alignment) = packAttribute(
$attributes,
$attributeDef,$attrhash{$attributeId}->{default});
+
+ my $hex = unpack ("H*",$heapZeroInitData);
+ push @attrDataforSM, [$attrValue, $huidValue, $hex, $section];
# Align the data as necessary
my $pads = ($alignment - ($heapZeroInitOffset
@@ -5439,7 +5442,9 @@ sub generateTargetingImage {
my ($heapPnorInitData,$alignment) = packAttribute(
$attributes,
$attributeDef,$attrhash{$attributeId}->{default});
-
+
+ my $hex = unpack ("H*",$heapPnorInitData);
+ push @attrDataforSM, [$attrValue, $huidValue, $hex, $section];
# Align the data as necessary
my $pads = ($alignment - ($heapPnorInitOffset
% $alignment)) % $alignment;
OpenPOWER on IntegriCloud