|
From: <jud...@us...> - 2006-07-28 22:51:57
|
Revision: 329 Author: judith_osdl Date: 2006-07-28 15:51:49 -0700 (Fri, 28 Jul 2006) ViewCVS: http://svn.sourceforge.net/stp/?rev=329&view=rev Log Message: ----------- Fix the initrd and other hash settings. Modified Paths: -------------- trunk/Test-Sut/lib/Test/Sut/Kernel.pm Modified: trunk/Test-Sut/lib/Test/Sut/Kernel.pm =================================================================== --- trunk/Test-Sut/lib/Test/Sut/Kernel.pm 2006-07-28 20:39:03 UTC (rev 328) +++ trunk/Test-Sut/lib/Test/Sut/Kernel.pm 2006-07-28 22:51:49 UTC (rev 329) @@ -150,13 +150,13 @@ 'boot-once' => 1 ); if ( $myroot ){ - $bootloader_hash->{'root'} = $myroot; + $bootloader_hash{'root'} = $myroot; } if ( $myargs ){ - $bootloader_hash->{'args'} .= $myargs; + $bootloader_hash{'args'} .= $myargs; } if ( -f '/boot/initrd-STP.img' ){ - $bootloader_hash->{'initrd'} = '/boot/initrd-STP.img'; + $bootloader_hash{'initrd'} = '/boot/initrd-STP.img'; } # force the kernel to be added just in case we need to overwrite an old one This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |