From 3c55047bcfd0793dd295824778a58bb76f77ad01 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 11 Mar 2017 21:11:43 +0000 Subject: drop dkms support --- libvasile | 20 -------------------- vasile | 3 --- 2 files changed, 23 deletions(-) diff --git a/libvasile b/libvasile index 34d99a3..329aabe 100755 --- a/libvasile +++ b/libvasile @@ -38,7 +38,6 @@ export local chrootsrcmode="vasile --srcmode" export local isouser="root" export local isomainarch="x86_64" export local isobinmode="vasile --binmode" -export local isodkms="vasile --dkms" export local isokernelname="kernel-genkernel-"$isomainarch"-"$kernelver"" export local isoramfsname="initramfs-genkernel-"$isomainarch"-"$kernelver"" export local isoramfscmd="dracut -N -a dmsquash-live -a pollcdrom --force" @@ -116,16 +115,6 @@ chrootchecksum () { done } -dkmsmod () { - checkroot - # build and install any 3rd party kernel modules using DKMS - if [[ -x $(which dkms) ]] ; then - for i in $(dkms status | cut -d " " -f1,2 | sed -e 's/,//g' | sed -e 's/ /\//g' | sed -e 's/://g') ; do - dkms install $i - done - fi -} - # build functions chrootprepare () { @@ -258,11 +247,6 @@ isoservices () { done } -isomodules () { - # build and install any 3rd party kernel modules using DKMS (virtualbox-guest in our case) - chroot "$isorsynctarget" su - "$isouser" -c "$isodkms" -} - isochroot () { # land into a chroot env into iso image core and make adjustments, if needed einfo "DROPPING YOU TO A ROOT SHELL INTO ISO ENVIRONMENT" @@ -310,10 +294,6 @@ prepareiso () { isousertree isochroot isostop - # build and install any 3rd party kernel modules using DKMS (virtualbox-guest in our case) - isostart - isomodules - isostop # enable live iso image system services isostart isoservices diff --git a/vasile b/vasile index d64b617..62dc685 100755 --- a/vasile +++ b/vasile @@ -34,9 +34,6 @@ case $1 in --srcmode) srcmode ;; - --dkms) - dkmsmod - ;; --help) showhelp ;; -- cgit v1.2.3