Compare commits
No commits in common. "master" and "pristine-tar" have entirely different histories.
master
...
pristine-t
@ -1,13 +0,0 @@
|
|||||||
|
|
||||||
|
|
||||||
Phase11 GCA Release Version 20.00.00.00
|
|
||||||
|
|
||||||
Release Date : 18-SEP-14
|
|
||||||
|
|
||||||
This is a Userworld Tool (SAS2IRCU) for RAID configuration on LSI SAS2 Controllers that is designed to run from a host.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Binary file not shown.
@ -1,83 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
# the directory of the script
|
|
||||||
DIR=`cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd`
|
|
||||||
echo "Working directory $DIR"
|
|
||||||
|
|
||||||
# the temp directory used, within $DIR
|
|
||||||
WORK_DIR=`mktemp -d -p "$DIR"`
|
|
||||||
echo "Creating temp working directory $WORK_DIR"
|
|
||||||
|
|
||||||
# deletes the temp directory
|
|
||||||
function cleanup {
|
|
||||||
rm -rf "$WORK_DIR"
|
|
||||||
echo "Deleted temp working directory $WORK_DIR"
|
|
||||||
}
|
|
||||||
|
|
||||||
# register the cleanup function to be called on the EXIT signal
|
|
||||||
trap cleanup EXIT
|
|
||||||
|
|
||||||
# Download Files specified in files.diz
|
|
||||||
while IFS=! read type app version outputfile url md5
|
|
||||||
do
|
|
||||||
echo "Downloading $app Version: $version"
|
|
||||||
#use -O for output file. define $outputfile yourself
|
|
||||||
wget -c --no-check-certificate --tries=1 -O $DIR/../$outputfile --timeout=5 "$url"
|
|
||||||
# use $(..) instead of backticks.
|
|
||||||
calculated_md5=$(md5sum "$DIR/../$outputfile" | cut -f 1 -d " ")
|
|
||||||
# compare md5
|
|
||||||
case "$calculated_md5" in
|
|
||||||
"$md5" )
|
|
||||||
echo "$DIR/../$outputfile md5 ok"
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
echo "$DIR/../$outputfile md5 NOT ok"
|
|
||||||
exit 1
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
done < "$DIR/files.diz"
|
|
||||||
|
|
||||||
# Extract to specified dir and set some variables
|
|
||||||
while IFS=! read type app version outputfile url md5
|
|
||||||
do
|
|
||||||
mkdir -p $WORK_DIR/${type}
|
|
||||||
pushd $WORK_DIR/${type}
|
|
||||||
unzip $DIR/../$outputfile
|
|
||||||
popd
|
|
||||||
mkdir -p $WORK_DIR/${app}-${version}/${type}
|
|
||||||
dos2unix $WORK_DIR/${type}/SAS2IRCU_P20/*.txt
|
|
||||||
mv $WORK_DIR/${type}/*/*.txt $WORK_DIR/${app}-${version}
|
|
||||||
mv $WORK_DIR/${type}/*/*.pdf $WORK_DIR/${app}-${version}
|
|
||||||
pushd $WORK_DIR/${app}-${version}/${type}
|
|
||||||
case "${type}" in
|
|
||||||
"amd64" )
|
|
||||||
;;
|
|
||||||
"i386" )
|
|
||||||
mv $WORK_DIR/${type}/*/sas2ircu_linux_x86_rel/sas2ircu $WORK_DIR/${app}-${version}/${type}
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
echo "Wrong arch"
|
|
||||||
exit 1
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
echo "${app}_${version}.orig.tar.gz" > $WORK_DIR/filename.txt
|
|
||||||
echo "${app}-${version}" > $WORK_DIR/dirname.txt
|
|
||||||
echo "${version}" > $WORK_DIR/version.txt
|
|
||||||
popd
|
|
||||||
done < "$DIR/files.diz"
|
|
||||||
|
|
||||||
FILENAME=`cat $WORK_DIR/filename.txt`
|
|
||||||
DIRNAME=`cat $WORK_DIR/dirname.txt`
|
|
||||||
echo "Creating $DIR/../$FILENAME "
|
|
||||||
|
|
||||||
pushd $WORK_DIR
|
|
||||||
tar -czf $DIR/../$FILENAME $DIRNAME
|
|
||||||
popd
|
|
||||||
|
|
||||||
#exit 1
|
|
||||||
|
|
||||||
VER=`cat $WORK_DIR/version.txt`
|
|
||||||
echo "Importing $DIR/../$FILENAME as $VER into git"
|
|
||||||
cleanup
|
|
||||||
gbp import-orig --pristine-tar -u $VER $DIR/../$FILENAME
|
|
||||||
|
|
||||||
exit 0
|
|
23
debian/changelog
vendored
23
debian/changelog
vendored
@ -1,23 +0,0 @@
|
|||||||
sas2ircu (20.00.00.00.1) UNRELEASED; urgency=medium
|
|
||||||
|
|
||||||
* Bump
|
|
||||||
|
|
||||||
-- Mario Fetka <mario.fetka@gmail.com> Sat, 11 Nov 2017 18:57:02 +0100
|
|
||||||
|
|
||||||
sas2ircu (16.00.00.00-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* New upstream release.
|
|
||||||
|
|
||||||
-- Adam Cécile (Le_Vert) <gandalf@le-vert.net> Thu, 25 Jul 2013 00:22:04 +0200
|
|
||||||
|
|
||||||
sas2ircu (13.00.00.00-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* New upstream release (Closes: #205).
|
|
||||||
|
|
||||||
-- Adam Cécile (Le_Vert) <gandalf@le-vert.net> Tue, 17 Jul 2012 21:27:50 +0200
|
|
||||||
|
|
||||||
sas2ircu (5.00.00.00-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* Initial release.
|
|
||||||
|
|
||||||
-- Adam Cécile (Le_Vert) <gandalf@le-vert.net> Wed, 08 Dec 2010 15:41:51 +0100
|
|
1
debian/compat
vendored
1
debian/compat
vendored
@ -1 +0,0 @@
|
|||||||
7
|
|
13
debian/control
vendored
13
debian/control
vendored
@ -1,13 +0,0 @@
|
|||||||
Source: sas2ircu
|
|
||||||
Section: admin
|
|
||||||
Priority: optional
|
|
||||||
Maintainer: Adam Cécile (Le_Vert) <gandalf@le-vert.net>
|
|
||||||
Build-Depends: debhelper (>= 5)
|
|
||||||
Standards-Version: 3.9.4
|
|
||||||
|
|
||||||
Package: sas2ircu
|
|
||||||
Architecture: i386 amd64
|
|
||||||
Depends: ${shlibs:Depends}, ${misc:Depends}
|
|
||||||
Description: LSI Logic Fusion MPT SAS2 command line management tool
|
|
||||||
Tool to read and setup LSI Logic Fusion MTP SAS2 HW RAID HBAs (mpt2sas
|
|
||||||
driver).
|
|
26
debian/copyright
vendored
26
debian/copyright
vendored
@ -1,26 +0,0 @@
|
|||||||
This package was debianized by Adam Cécile (Le_Vert) <gandalf@le-vert.net> on
|
|
||||||
Wed, 08 Dec 2010 15:41:51 +0100.
|
|
||||||
|
|
||||||
It was downloaded from:
|
|
||||||
http://www.lsi.com/support/Pages/download-search.aspx
|
|
||||||
(enter "sas2ircu" in the search box)
|
|
||||||
|
|
||||||
Upstream Author:
|
|
||||||
|
|
||||||
LSI Corporation
|
|
||||||
|
|
||||||
Copyright:
|
|
||||||
|
|
||||||
Copyright (C) 2009-2012 LSI Corporation
|
|
||||||
|
|
||||||
License:
|
|
||||||
|
|
||||||
LSI Corporation, All Rights Reserved.
|
|
||||||
|
|
||||||
The Debian packaging is Copyright (C) 2010-2013 Adam Cécile (Le_Vert)
|
|
||||||
<gandalf@le-vert.net> and is licensed under the GPL,
|
|
||||||
see `/usr/share/common-licenses/GPL'.
|
|
||||||
|
|
||||||
Sources have been repacked (windows, solaris... binaries removed,
|
|
||||||
PDF userguide added) from:
|
|
||||||
fd59a542e22eb3ed0ea7210d5ce8f22e SAS2IRCU_P16.zip
|
|
1
debian/dirs
vendored
1
debian/dirs
vendored
@ -1 +0,0 @@
|
|||||||
usr/sbin
|
|
2
debian/docs
vendored
2
debian/docs
vendored
@ -1,2 +0,0 @@
|
|||||||
*.pdf
|
|
||||||
*.txt
|
|
44
debian/rules
vendored
44
debian/rules
vendored
@ -1,44 +0,0 @@
|
|||||||
#!/usr/bin/make -f
|
|
||||||
|
|
||||||
# Uncomment this to turn on verbose mode.
|
|
||||||
#export DH_VERBOSE=1
|
|
||||||
|
|
||||||
DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)
|
|
||||||
|
|
||||||
build:
|
|
||||||
build-arch:
|
|
||||||
build-indep:
|
|
||||||
|
|
||||||
clean:
|
|
||||||
dh_testdir
|
|
||||||
dh_testroot
|
|
||||||
dh_clean
|
|
||||||
|
|
||||||
install:
|
|
||||||
dh_testdir
|
|
||||||
dh_testroot
|
|
||||||
dh_clean -k
|
|
||||||
dh_installdirs
|
|
||||||
ifeq ($(DEB_BUILD_ARCH),amd64)
|
|
||||||
install $(CURDIR)/i386/sas2ircu $(CURDIR)/debian/sas2ircu/usr/sbin/sas2ircu
|
|
||||||
endif
|
|
||||||
ifeq ($(DEB_BUILD_ARCH),i386)
|
|
||||||
install $(CURDIR)/i386/sas2ircu $(CURDIR)/debian/sas2ircu/usr/sbin/sas2ircu
|
|
||||||
endif
|
|
||||||
|
|
||||||
binary-indep:
|
|
||||||
binary-arch: build install
|
|
||||||
dh_testdir
|
|
||||||
dh_testroot
|
|
||||||
dh_installchangelogs
|
|
||||||
dh_installdocs
|
|
||||||
dh_compress
|
|
||||||
dh_fixperms
|
|
||||||
dh_installdeb
|
|
||||||
dh_shlibdeps
|
|
||||||
dh_gencontrol
|
|
||||||
dh_md5sums
|
|
||||||
dh_builddeb
|
|
||||||
|
|
||||||
binary: binary-arch
|
|
||||||
.PHONY: build clean binary-indep binary-arch binary install
|
|
@ -1 +0,0 @@
|
|||||||
i386!sas2ircu!20.00.00.00.1!SAS2IRCU_P20.zip!https://docs.broadcom.com/docs-and-downloads/host-bus-adapters/host-bus-adapters-common-files/sas_sata_6g_p20/SAS2IRCU_P20.zip!57e7ffd2b3221c5d7b471b23ec429b8b
|
|
BIN
i386/sas2ircu
BIN
i386/sas2ircu
Binary file not shown.
BIN
sas2ircu_20.00.00.00.0.orig.tar.gz.delta
Normal file
BIN
sas2ircu_20.00.00.00.0.orig.tar.gz.delta
Normal file
Binary file not shown.
1
sas2ircu_20.00.00.00.0.orig.tar.gz.id
Normal file
1
sas2ircu_20.00.00.00.0.orig.tar.gz.id
Normal file
@ -0,0 +1 @@
|
|||||||
|
72480d98bc68150731f77cdd37b9aaa37e1f3ac1
|
BIN
sas2ircu_20.00.00.00.1.orig.tar.gz.delta
Normal file
BIN
sas2ircu_20.00.00.00.1.orig.tar.gz.delta
Normal file
Binary file not shown.
1
sas2ircu_20.00.00.00.1.orig.tar.gz.id
Normal file
1
sas2ircu_20.00.00.00.1.orig.tar.gz.id
Normal file
@ -0,0 +1 @@
|
|||||||
|
9f61be5d4ad59425a0ed4f3f87c2c807a9af5cf7
|
Loading…
Reference in New Issue
Block a user