# HG changeset patch # User Hans-G?nter Theisgen # Date 1648618157 -3600 # Node ID 6b8d990facac7defe722b5575360bc99a61fc89a # Parent 3c68bcd9c4a44440e14680066d69a7e0e04de48c updated lsscsi (0.31 -> 0.32) diff -r 3c68bcd9c4a4 -r 6b8d990facac lsscsi/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lsscsi/description.txt Wed Mar 30 06:29:17 2022 +0100 @@ -0,0 +1,25 @@ +The lsscsi command lists information about SCSI devices in Linux. +Using SCSI terminology, lsscsi lists SCSI logical units +(or SCSI targets when the '--transport' option is given). +The default action is to produce one line of output for each SCSI device +currently attached to the system. +In version 0.30 of this utility, support was added to list NVMe namespaces +(under SCSI devices(LUs)) and NVMe controllers (under SCSI hosts). + +When the '--hosts' option is given the lsscsi command lists information +about SCSI hosts attached to the system. +A host can be actual hardware (sometimes referred to as Host Bus Adapters +(HBAs)) or virtual. +An example of a virtual host is USB mass storage that bridges between USB +and the SCSI subsystem. In SCSI parlance, a host is referred to as an +SCSI initiator. + +The lsscsi command scans the sysfs pseudo file system that was introduced +in the 2.6 Linux kernel series. +Since most users have permissions to read sysfs (usually mounted at /sys ) +then meta information can be found on some or all SCSI devices without a +user needing elevated permissions to access special files (e.g. /dev/sda ). +The lsscsi command can also show the relationship between a device's +primary node name, its SCSI generic (sg) node name and its kernel name. + +The lsscsi command works in the 2.6, 3, 4 and 5 Linux kernel series. diff -r 3c68bcd9c4a4 -r 6b8d990facac lsscsi/receipt --- a/lsscsi/receipt Wed Mar 30 06:22:51 2022 +0100 +++ b/lsscsi/receipt Wed Mar 30 06:29:17 2022 +0100 @@ -1,15 +1,15 @@ # SliTaz package receipt. PACKAGE="lsscsi" -VERSION="0.31" +VERSION="0.32" CATEGORY="system-tools" SHORT_DESC="Lists information about SCSI devices." MAINTAINER="erjo@slitaz.org" LICENSE="GPL2" -WEB_SITE="http://sg.danny.cz/scsi/lsscsi.html" +WEB_SITE="https://sg.danny.cz/scsi/lsscsi.html" TARBALL="$PACKAGE-$VERSION.tgz" -WGET_URL="http://sg.danny.cz/scsi/$TARBALL" +WGET_URL="https://sg.danny.cz/scsi/$TARBALL" # What is the latest version available today? current_version() @@ -31,6 +31,5 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/bin $fs/usr + cook_copy_folders bin }