Whamcloud - gitweb
LU-8915 lnet: migrate LNet selftest session handling to Netlink
[fs/lustre-release.git] / lustre-dkms.spec.in
1 %bcond_without servers
2 %bcond_without zfs
3 %bcond_with ldiskfs
4
5 # LUTF Turn off brp-python-precompile script as we don't want the python files
6 # to be compiled on installation
7 %global __os_install_post %(echo '%{__os_install_post}' | sed -e 's!/usr/lib[^[:space:]]*/brp-python-bytecompile[[:space:]].*$!!g')
8
9 # Set the package name prefix
10 %if %{with servers}
11     %if %{with zfs}
12         %if %{with ldiskfs}
13             %define module @PACKAGE@-all
14         %else
15             %define module @PACKAGE@-zfs
16         %endif
17     %else
18         %if %{without ldiskfs}
19             %define module @PACKAGE@-BADSTATE
20         %else
21             %define module @PACKAGE@-ldiskfs
22         %endif
23     %endif
24     %define lustre_name @PACKAGE@
25
26 %else
27     %define module @PACKAGE@-client
28     %define lustre_name @PACKAGE@-client
29 %endif
30
31 %if "%{_vendor}" == "redhat" || "%{_vendor}" == "fedora"
32         %global kmod_name kmod-%{lustre_name}
33         %define mkconf_options %{nil}
34 #for Suse / Ubuntu
35 %else
36         %global kmod_name %{lustre_name}-kmp
37         %define mkconf_options -k updates
38 %endif
39
40 %define buildid 1
41 %define mkconf  lustre/scripts/dkms.mkconf
42
43 # There should be a better (non-arch dependent) way to require ext4
44 # sources
45 %define ext4_source_rpm kernel-debuginfo-common-x86_64
46
47 Name:           %{module}-dkms
48
49 Version:        @VERSION@
50 Release:        %{buildid}%{?dist}
51 Summary:        Kernel module(s) (dkms)
52
53 Group:          System Environment/Kernel
54 License:        GPLv2+
55 URL:            http://lustre.opensfs.org/
56 Source0:        @PACKAGE@-%{version}.tar.gz
57 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
58 BuildArch:      noarch
59
60 # DKMS >= 2.2.0.3-28.git.7c3e7c5 to fully support inter-modules deps
61 # (ie, "BUILD_DEPENDS[#]=<pkg>"), and have latest DKMS fixes integrated
62 # for bugs that prevented our module to build/install.
63 Requires:       dkms >= 2.2.0.3-28.git.7c3e7c5
64 # for lnetctl
65 Requires:       libyaml-devel
66 Requires:       zlib-devel
67 # for netlink support
68 Requires:       libnl3-devel
69 %if %{with servers}
70 # If client package is installed when installing server, remove it since
71 # the server package also includes the client.  This can be removed if/when
72 # the packages are split into independent client/server/common packages.
73 Obsoletes:      @PACKAGE@-client < %{version}
74 %if %{with zfs}
75 Requires:       zfs-dkms >= 0.6.5
76 Conflicts:      @PACKAGE@-ldiskfs-dkms
77 Conflicts:      @PACKAGE@-client-dkms
78 # lustre-zfs-dkms replicates the functionality old lustre-dkms package
79 Provides:       @PACKAGE@-dkms
80 Obsoletes:      @PACKAGE@-dkms
81 %endif
82 %if %{with ldiskfs}
83 Requires:       patch
84 Requires:       %{ext4_source_rpm}
85 Conflicts:      @PACKAGE@-zfs-dkms
86 Conflicts:      @PACKAGE@-client-dkms
87 %if "%{module}" != "@PACKAGE@-all"
88 Conflicts:      @PACKAGE@-dkms
89 %endif
90 %endif
91 %if "%{module}" != "@PACKAGE@-all"
92 Conflicts:      @PACKAGE@-all-dkms
93 %endif
94 %endif
95 Requires:       gcc, make, perl
96 Requires:       kernel-devel
97 Provides:       %{kmod_name} = %{version}
98 Provides:       @PACKAGE@-modules = %{version}
99 %if %{with servers}
100 %if %{with zfs}
101 Provides:       @PACKAGE@-osd-zfs = %{version}
102 Provides:       kmod-@PACKAGE@-osd-zfs = %{version}
103 Provides:       @PACKAGE@-osd-zfs-mount = %{version}
104 %endif
105 %if %{with ldiskfs}
106 Provides:       @PACKAGE@-osd-ldiskfs = %{version}
107 Provides:       kmod-@PACKAGE@-osd-ldiskfs = %{version}
108 Provides:       @PACKAGE@-osd-ldiskfs-mount = %{version}
109 %endif
110 Provides:       @PACKAGE@-osd
111 %else
112 Provides:       @PACKAGE@-client
113 %endif
114
115 %description
116 This package contains the dkms Lustre kernel modules.
117 %if %{with ldiskfs}
118
119 The required %{ext4_source_rpm} package is available from
120 the repository with other debuginfo rpms.
121 %endif
122
123 %prep
124 %setup -q -n @PACKAGE@-%{version}
125
126 %build
127 %{mkconf} -n %{module} -v %{version} -f dkms.conf %{mkconf_options}
128
129 %install
130 if [ "$RPM_BUILD_ROOT" != "/" ]; then
131     rm -rf $RPM_BUILD_ROOT
132 fi
133 mkdir -p $RPM_BUILD_ROOT/usr/src/
134 cp -rfp ${RPM_BUILD_DIR}/@PACKAGE@-%{version} $RPM_BUILD_ROOT/usr/src/
135 mv $RPM_BUILD_ROOT/usr/src/@PACKAGE@-%{version} $RPM_BUILD_ROOT/usr/src/%{module}-%{version}
136
137 %clean
138 if [ "$RPM_BUILD_ROOT" != "/" ]; then
139     rm -rf $RPM_BUILD_ROOT
140 fi
141
142 %files
143 %defattr(-,root,root)
144 /usr/src/%{module}-%{version}
145
146 %post
147 for POSTINST in /usr/lib/dkms/common.postinst; do
148     if [ -f $POSTINST ]; then
149         $POSTINST %{module} %{version}
150         exit $?
151     fi
152     echo "WARNING: $POSTINST does not exist."
153 done
154 echo -e "ERROR: DKMS version is too old and %{module} was not"
155 echo -e "built with legacy DKMS support."
156 echo -e "You must either rebuild %{module} with legacy postinst"
157 echo -e "support or upgrade DKMS to a more current version."
158 exit 1
159
160 %preun
161 dkms remove -m %{module} -v %{version} --all --rpm_safe_upgrade
162 exit 0
163
164 %changelog
165 * Wed May 16 2018 Joe Grund <joe.grund@intel.com>
166 - Add patch requirement
167 * Mon Aug  1 2016 Nathaniel Clark <nathaniel.l.clark@intel.com>
168 - Add option to build either ldiskfs or zfs flavour of server version
169 * Sat Jan 23 2016 Bruno Faccini <bruno.faccini@intel.com>
170  - detect and handle cases where [spl,zfs]-dkms packages are not built
171  - also handle on-target configure issues
172 * Wed Oct  7 2015 Bruno Faccini <bruno.faccini@intel.com>
173  - adapted for Lustre Client DKMS creation
174  - allow for on-target reconfig to prevent static deps requires
175 * Mon Apr  8 2013 Brian Behlendorf <behlendorf1@llnl.gov> - 2.3.63-1
176 - First DKMS packages.