- Added new scst perl module 0.9.00. Note, this

version does not yet work with scstadmin. Please
  use older scst-0.8.xx. This new module is a complete
  rewite to support sysfs.



git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@1599 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
Mark Buechler
2010-04-08 19:30:22 +00:00
parent 9449c43bc8
commit 80527e905e
5 changed files with 2117 additions and 1 deletions
+4 -1
View File
@@ -7,7 +7,10 @@ The perl module SCST::SCST is very generic and tries to handle error checking as
The init script was written for debian but should work on most distributions.
scst-0.7.4 This is the SCST Perl module required by scstadmin and scst_db.
scst-0.8.22 This is the SCST Perl module required by scstadmin and scst_db.
scst-0.9.00 This is the SCST Perl module to be used with SCST compiled
for sysfs. Note, the current version of scstadmin will NOT yet
work with this module.
scstadmin Script which can accept operations on a command line or from
a configuration file. See scst.conf. For command help,
+4
View File
@@ -0,0 +1,4 @@
lib/SCST/SCST.pm
Makefile.PL
MANIFEST This list of files
README
+13
View File
@@ -0,0 +1,13 @@
#!/usr/bin/perl -w
#
# Makefile for the SCST-SCST perl module
#
use ExtUtils::MakeMaker;
WriteMakefile(
'NAME' => 'SCST-SCST',
'VERSION_FROM' => 'lib/SCST/SCST.pm',
'AUTHOR' => 'Mark R. Buechler <Mark.Buechler@gmail.com>',
'PREREQ_PM' => {},
);
+19
View File
@@ -0,0 +1,19 @@
SCST-SCST is a perl module for querying and configuring SCST.
AVAILABILITY
Currently SCST-SCST ships with SCST itself available from
http://scst.sourceforge.net.
INSTALLATION
Install SCST-SCST as you would any other perl module:
perl Makefile.PL
make
make install
NOTE: This version (0.9.00+) requires SCST to be
compiled with sysfs support!
File diff suppressed because it is too large Load Diff