wok-6.x rev 24489
updated dmidecode (3.2 -> 3.3)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Feb 18 17:31:24 2022 +0100 (2022-02-18) |
parents | 5a3c96f5e65a |
children | 293b75a2e1b2 |
files | dmidecode/description.txt dmidecode/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dmidecode/description.txt Fri Feb 18 17:31:24 2022 +0100 1.3 @@ -0,0 +1,17 @@ 1.4 +Dmidecode reports information about your system's hardware as described 1.5 +in your system BIOS according to the SMBIOS/DMI standard. 1.6 +This information typically includes system manufacturer, model name, 1.7 +serial number, BIOS version, asset tag as well as a lot of other details 1.8 +of varying level of interest and reliability depending on the manufacturer. 1.9 +This will often include usage status for the CPU sockets, expansion slots 1.10 +(e.g. AGP, PCI, ISA) and memory module slots, and the list of I/O ports 1.11 +(e.g. serial, parallel, USB). 1.12 + 1.13 +DMI data can be used to enable or disable specific portions of kernel code 1.14 +depending on the specific hardware. Thus, one use of dmidecode is for kernel 1.15 +developers to detect system "signatures" and add them to the kernel source 1.16 +code when needed. 1.17 + 1.18 +Beware that DMI data have proven to be too unreliable to be blindly trusted. 1.19 +Dmidecode does not scan your hardware, it only reports what the BIOS told 1.20 +it to.
2.1 --- a/dmidecode/receipt Fri Feb 18 17:22:01 2022 +0100 2.2 +++ b/dmidecode/receipt Fri Feb 18 17:31:24 2022 +0100 2.3 @@ -1,15 +1,15 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="dmidecode" 2.7 -VERSION="3.2" 2.8 +VERSION="3.3" 2.9 CATEGORY="system-tools" 2.10 SHORT_DESC="SMBIOS/DMI reports." 2.11 MAINTAINER="erjo@slitaz.org" 2.12 LICENSE="GPL2" 2.13 -WEB_SITE="http://www.nongnu.org/dmidecode/" 2.14 +WEB_SITE="https://www.nongnu.org/dmidecode/" 2.15 2.16 TARBALL="$PACKAGE-$VERSION.tar.xz" 2.17 -WGET_URL="http://download.savannah.gnu.org/releases/$PACKAGE/$TARBALL" 2.18 +WGET_URL="https://download.savannah.gnu.org/releases/$PACKAGE/$TARBALL" 2.19 2.20 DEPENDS="" 2.21 2.22 @@ -25,13 +25,13 @@ 2.23 { 2.24 sed -i 's|uname -m|echo i486|' Makefile 2.25 2.26 - make -j 1 && 2.27 - make DESTDIR=$DESTDIR install 2.28 + make && 2.29 + make install DESTDIR=$DESTDIR 2.30 } 2.31 2.32 # Rules to gen a SliTaz package suitable for Tazpkg. 2.33 genpkg_rules() 2.34 { 2.35 mkdir -p $fs/usr/sbin 2.36 - cp -a $install/usr/local/sbin/* $fs/usr/sbin 2.37 + cp -a $install/usr/local/sbin/* $fs/usr/sbin 2.38 }