summaryrefslogtreecommitdiff
path: root/libre
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-06-30 12:16:58 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-06-30 12:16:58 -0300
commit960078142fa2c0df29bbb002a0662ebe58d83795 (patch)
tree40cd3a4132f8e9958bc9a5dac4cdcb7fcfad3656 /libre
parentbb260b0e2c018762a4f5644c6073edd3c7efb98b (diff)
downloadabslibre-960078142fa2c0df29bbb002a0662ebe58d83795.tar.gz
abslibre-960078142fa2c0df29bbb002a0662ebe58d83795.tar.bz2
abslibre-960078142fa2c0df29bbb002a0662ebe58d83795.zip
vhba-module-libre-20140629-1: updating version
Diffstat (limited to 'libre')
-rw-r--r--libre/vhba-module-libre/0001-VHBA-module-define-scmd_dbg-and-scmd_warn-macros-onl.patch54
-rw-r--r--libre/vhba-module-libre/PKGBUILD22
2 files changed, 6 insertions, 70 deletions
diff --git a/libre/vhba-module-libre/0001-VHBA-module-define-scmd_dbg-and-scmd_warn-macros-onl.patch b/libre/vhba-module-libre/0001-VHBA-module-define-scmd_dbg-and-scmd_warn-macros-onl.patch
deleted file mode 100644
index 8f4603ebc..000000000
--- a/libre/vhba-module-libre/0001-VHBA-module-define-scmd_dbg-and-scmd_warn-macros-onl.patch
+++ /dev/null
@@ -1,54 +0,0 @@
-From 6545ad1e266f4eb2428e93ba0fdb43d8b87d5fcd Mon Sep 17 00:00:00 2001
-From: Rok Mandeljc <rok.mandeljc@gmail.com>
-Date: Sat, 19 Apr 2014 12:06:23 +0200
-Subject: [PATCH] VHBA module: define scmd_dbg() and scmd_warn() macros only if
- they are not defined already; fix for compilation on kernel 3.15 and newer
- (bug #76)
-
----
- vhba-module/vhba.c | 10 +++++++---
- 1 file changed, 7 insertions(+), 3 deletions(-)
-
-diff --git a/vhba-module/vhba.c b/vhba-module/vhba.c
-index ae9b554..eb1c5e6 100644
---- a/vhba-module/vhba.c
-+++ b/vhba-module/vhba.c
-@@ -54,12 +54,16 @@ MODULE_LICENSE("GPL");
- #define DPRINTK(fmt, args...)
- #endif
-
-+/* scmd_dbg was introduced in 3.15 */
-+#ifndef scmd_dbg
- #define scmd_dbg(scmd, fmt, a...) \
- dev_dbg(&(scmd)->device->sdev_gendev, fmt, ##a)
-+#endif
-
-+#ifndef scmd_warn
- #define scmd_warn(scmd, fmt, a...) \
- dev_warn(&(scmd)->device->sdev_gendev, fmt, ##a)
--
-+#endif
-
- #define VHBA_MAX_SECTORS_PER_IO 256
- #define VHBA_MAX_ID 32
-@@ -276,7 +280,7 @@ static void vhba_scan_devices (struct work_struct *work)
- }
- change = vhost->chgtype[id];
- exists = vhost->devices[id] != NULL;
--
-+
- vhost->chgtype[id] = 0;
- clear_bit(id, vhost->chgmap);
-
-@@ -289,7 +293,7 @@ static void vhba_scan_devices (struct work_struct *work)
- dev_dbg(&vhost->shost->shost_gendev, "trying to add target 0:%d:0\n", id);
- vhba_scan_devices_add(vhost, id);
- } else {
-- /* quick sequence of add/remove or remove/add; we determine
-+ /* quick sequence of add/remove or remove/add; we determine
- which one it was by checking if device structure exists */
- if (exists) {
- /* remove followed by add: remove and (re)add */
---
-2.0.0
-
diff --git a/libre/vhba-module-libre/PKGBUILD b/libre/vhba-module-libre/PKGBUILD
index c32ba0309..8d55022b5 100644
--- a/libre/vhba-module-libre/PKGBUILD
+++ b/libre/vhba-module-libre/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 113281 2014-06-17 08:06:25Z tpowa $
+# $Id: PKGBUILD 113764 2014-06-29 21:23:52Z heftig $
# Maintainer (Arch): Ray Rashif <schiv@archlinux.org>
# Contributor (Arch): Mateusz Herych <heniekk@gmail.com>
# Contributor (Arch): Charles Lindsay <charles@chaoslizard.org>
@@ -6,9 +6,9 @@
_pkgname=vhba-module
pkgname=vhba-module-libre
-pkgver=20130607
+pkgver=20140629
_extramodules=extramodules-3.15-LIBRE
-pkgrel=29
+pkgrel=1
pkgdesc="Kernel module that emulates SCSI devices (built for the linux-libre kernel package)"
arch=('i686' 'x86_64' 'mips64el')
url="http://cdemu.sourceforge.net/"
@@ -21,19 +21,9 @@ replaces=('vhba-module')
conflicts=('vhba-module')
provides=("vhba-module=$pkgver")
source=("http://downloads.sourceforge.net/cdemu/$_pkgname-$pkgver.tar.bz2"
- '60-vhba.rules'
- '0001-VHBA-module-define-scmd_dbg-and-scmd_warn-macros-onl.patch')
-md5sums=('660df41d08b1fd86baad1f16a0264438'
- '4dc37dc348b5a2c83585829bde790dcc'
- '8c929ef662de89f348d277983cbb3952')
-
-prepare() {
- cd $_pkgname-$pkgver
-
- # Fix build with Linux-libre 3.15
- # http://sourceforge.net/p/cdemu/bugs/76/
- patch -Np2 -i ../0001-VHBA-module-define-scmd_dbg-and-scmd_warn-macros-onl.patch
-}
+ '60-vhba.rules')
+md5sums=('6b307a80df9c163768cc7ecb3ccebb71'
+ '4dc37dc348b5a2c83585829bde790dcc')
build() {
cd $_pkgname-$pkgver