mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
9318551e5f
[v2] Wrong version sent to list. forgot to refresh fails do to new kernel headers. | ../drbd/9.0.8-1-r0/drbd-9.0.8-1/drbd/drbd_receiver.c:1479:7: error: 'struct bio' has no member named 'bi_bdev'; did you mean 'bi_iter'? | bio->bi_bdev = device->ldev->backing_bdev; | ^~~~~~~ | bi_iter | .../drbd/9.0.8-1-r0/drbd-9.0.8-1/drbd/drbd_receiver.c:1484:17: error: assignment from incompatible pointer type [-Werror=incompatible-pointer-types] | bio->bi_end_io = drbd_peer_request_endio; Signed-off-by: Armin Kuster <akuster808@gmail.com>
25 lines
969 B
BlitzBasic
25 lines
969 B
BlitzBasic
SUMMARY = "Distributed block device driver for Linux"
|
|
DESCRIPTION = "DRBD is a block device which is designed to build high \
|
|
availability clusters. This is done by mirroring a whole \
|
|
block device via (a dedicated) network. You could see \
|
|
it as a network raid-1."
|
|
HOMEPAGE = "http://oss.linbit.com/drbd/"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=5574c6965ae5f583e55880e397fbb018"
|
|
DEPENDS = "virtual/kernel"
|
|
|
|
SRC_URI = "http://www.linbit.com/downloads/drbd/9.0/drbd-${PV}.tar.gz \
|
|
file://check_existence_of_modules_before_installing.patch"
|
|
|
|
SRC_URI[md5sum] = "c1dd58043f46e9926b579aa65d4ea980"
|
|
SRC_URI[sha256sum] = "87f72d46db9bad926415b3ab9f5f1397de8c581d2e2ec1addbdd5ce2604e6123"
|
|
inherit module
|
|
|
|
EXTRA_OEMAKE += "KDIR='${STAGING_KERNEL_DIR}'"
|
|
|
|
do_install () {
|
|
oe_runmake install DESTDIR="${D}"
|
|
}
|
|
|
|
PNBLACKLIST[drbd] = "implicit declaration of function 'setup_timer'; 4.15 head file issue?"
|