Index: trunk/pstamp/scripts/pstamp_finish.pl
===================================================================
--- trunk/pstamp/scripts/pstamp_finish.pl	(revision 36781)
+++ trunk/pstamp/scripts/pstamp_finish.pl	(revision 36784)
@@ -211,6 +211,11 @@
                         chomp $line;
                         my ($img_name, $reported_size, $reported_sum, $filetype) = split '\|', $line;
-                        # ... instead let dsreg compute the paramters by leaving them blank
-                        print $rlf "$img_name|||$filetype|\n";
+                        my $use_supplied_size = 1;
+                        if ($use_supplied_size) {
+                            print $rlf "$img_name|$reported_size|$reported_sum|$filetype|\n";
+                        } else {
+                            # ... instead let dsreg compute the paramters by leaving them blank
+                            print $rlf "$img_name|||$filetype|\n";
+                        }
 
                         # add line to the table definition file
Index: trunk/pstamp/scripts/pstampparse.pl
===================================================================
--- trunk/pstamp/scripts/pstampparse.pl	(revision 36781)
+++ trunk/pstamp/scripts/pstampparse.pl	(revision 36784)
@@ -182,5 +182,5 @@
     	$label = 'NCU';
 	$label_changed = 1;
-    } elsif (($lcname =~ /mpe_/) or ($lcname =~ /sd_/)) {
+    } elsif (($lcname =~ /mpe_/) or ($lcname =~ /sd_/) or ($lcname =~ /^jk/)) {
     	$label = 'MPE';
 	$label_changed = 1;
