diff --git a/debian/changelog b/debian/changelog index d9b21f4..4f01efa 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,8 +3,10 @@ multistrap (2.1.13) unstable; urgency=low * [INTL:da] Danish translation of multistrap (Closes: #614306) * [INTL:pt] Updated European Portuguese translation for manpage/documentation" (Closes: #614381) + * Fix device-table.pl to use correct minor device number in + iterative mode (Closes: #615819) - -- Neil Williams Mon, 21 Feb 2011 15:33:52 +0000 + -- Neil Williams Mon, 28 Feb 2011 08:31:39 +0000 multistrap (2.1.12) unstable; urgency=low diff --git a/device-table.pl b/device-table.pl index 703957c..af57790 100755 --- a/device-table.pl +++ b/device-table.pl @@ -108,7 +108,7 @@ foreach $line (@list) { push @seq, "chown $cmd[3]:$cmd[4] .$cmd[0]"; } else { for ($i = 0; $i < $cmd[9]; $i += $cmd[8]) { - push @seq, "mknod .$cmd[0]$i $cmd[1] $cmd[5] $i"; + push @seq, "mknod .$cmd[0]$i $cmd[1] $cmd[5] $cmd[6]"; push @seq, "chmod $cmd[2] .$cmd[0]$i"; push @seq, "chown $cmd[3]:$cmd[4] .$cmd[0]$i"; }