2 %{!?version: %define version @VERSION@}
3 %{!?kversion: %define kversion @LINUXRELEASE@}
4 %{!?release: %define release @RELEASE@}
5 %{!?lustre_name: %define lustre_name lustre}
7 %define is_client %(bash -c "if [[ %{lustre_name} = *-client ]]; then echo -n '1'; else echo -n '0'; fi")
8 # for those uses that don't want the -smp/-bigsmp on the end of %kversion
9 %define krequires %(bash -c "echo %{kversion} | sed -e 's/-smp$//' -e 's/-bigsmp$//' -e 's/-ppc64$//' -e 's/-default$//'")
11 Summary: Lustre File System
16 Group: Utilities/System
17 Source: lustre-%{version}.tar.gz
18 URL: http://www.sun.com/software/products/lustre/index.xml
19 BuildRoot: %{_tmppath}/lustre-%{version}-root
20 Obsoletes: lustre-lite, lustre-lite-utils, lustre-ldap nfs-utils-lustre
21 Provides: lustre-lite = %{version}, lustre-lite-utils = %{version}
22 Requires: %{name}-modules = %{version}
23 # GSS requires this: BuildRequires: pkgconfig, libgssapi-devel >= 0.10
26 Userspace tools and files for the Lustre file system.
29 Summary: Kernel Lustre modules for Linux %{kversion}
30 Requires: modutils >= 2.4.10, kernel = %{krequires}
31 Group: Development/Kernel
34 Lustre file system, server and network drivers for Linux %{kversion}.
37 Summary: Object-Based Disk storage driver source
38 Group: Development/Kernel
41 Lustre sources for further development
43 # Since the RPMs we ship are to be used on both SLES and RHEL, we
44 # can't include any dependency information (since the package names
45 # are different on the two platforms).
47 # Instead, we can build these empty meta-packages that only include
48 # dependency information. These let people get the correct
49 # dependencies for their platform and lets them use tools like yum and
50 # red carpet to install the correct files.
52 # Unfortunately I have not seen this come up on the lists much, so I
53 # have disabled them (by commenting out their empty files section
54 # below) until it's clear that they resolve more confusion than they
58 Summary: Lustre dependencies meta-package for SLES
59 Group: Utilities/System
60 Provides: lustre-deps = %{version}
61 Requires: %{name} = %{version}, sles-release
62 Conflicts: %{name}-deps-rhel
64 %description deps-sles
65 This package has RPM dependencies appropriate for SLES systems.
68 Summary: Lustre dependencies meta-package for RHEL
69 Group: Utilities/System
70 Provides: lustre-deps = %{version}
71 Requires: %{name} = %{version}, redhat-release
72 Conflicts: %{name}-deps-sles
74 %description deps-rhel
75 This package has RPM dependencies appropriate for RHEL, RHL, and FC
79 Summary: Lustre testing framework
80 Group: Development/Kernel
81 Provides: %{name}-tests = %{version}
82 Requires: %{name} = %{version}, %{name}-modules = %{version}
85 This package contains a set of test binaries and scripts that are intended
86 to be used by the Lustre testing framework.
89 %setup -qn lustre-%{version}
90 ln lustre/ChangeLog ChangeLog-lustre
91 ln lnet/ChangeLog ChangeLog-lnet
94 # if RPM_BUILD_NCPUS unset, set it
95 if [ -z "$RPM_BUILD_NCPUS" ] ; then
96 RPM_BUILD_NCPUS=$(egrep -c "^cpu[0-9]+" /proc/stat 2>/dev/null || echo 0 :)
97 if [ $RPM_BUILD_NCPUS -eq 0 ] ; then
100 if [ $RPM_BUILD_NCPUS -gt 8 ] ; then
105 rm -rf $RPM_BUILD_ROOT
107 # Set an explicit path to our Linux tree, if we can.
108 cd $RPM_BUILD_DIR/lustre-%{version}
109 # override %optflags so that the vendor's overzealous flags don't create
111 %define optflags -g -O2 -Werror
112 %configure @ac_configure_args@ %{?configure_flags:configure_flags}
113 make -j $RPM_BUILD_NCPUS -s
116 make install DESTDIR=$RPM_BUILD_ROOT
117 # hack to avoid changing the libsysio code for "make install"
118 rm -f $RPM_BUILD_ROOT%{_libdir}/libsysio.a
119 # Remove ldiskfs module(s) - they are packaged by the ldiskfs .spec.
120 rm -rf $RPM_BUILD_ROOT/lib/modules/%{kversion}/kernel/fs/lustre-ldiskfs
122 # hack to include the llog_test module in lustre-tests
123 llog_base=$RPM_BUILD_DIR/lustre-%{version}/lustre/obdclass/llog_test
124 if [ -e ${llog_base}.ko ]; then
125 cp ${llog_base}.ko $RPM_BUILD_ROOT/lib/modules/%{kversion}/kernel/fs/lustre
126 elif [ -e ${llog_base}.o ]; then
127 cp ${llog_base}.o $RPM_BUILD_ROOT/lib/modules/%{kversion}/kernel/fs/lustre
130 # Create the pristine source directory.
131 cd $RPM_BUILD_DIR/lustre-%{version}
132 mkdir -p $RPM_BUILD_ROOT/usr/src
134 ln -s $RPM_BUILD_ROOT/usr/src lustre-source
135 make distdir distdir=lustre-source/lustre-%{version}
136 chmod -R go-w lustre-source/lustre-%{version}
138 cat >lustre.files <<EOF
139 %attr(-, root, root) /sbin/mount.lustre
140 %attr(-, root, root) /usr/sbin/*
141 %attr(-, root, root) /usr/bin/*
143 %attr(-, root, root) /usr/share/lustre
145 %attr(-, root, root) %{_libdir}/libptlctl.a
146 %attr(-, root, root) %{_libdir}/liblustreapi.a
147 %attr(-, root, root) /usr/include/lustre
149 %attr(-, root, root) %{_mandir}/man?/*
151 %attr(-, root, root) %{_libexecdir}/lustre/lc_common
154 if [ -f $RPM_BUILD_ROOT%{_libdir}/libcfsutil.a ] ; then
155 echo '%attr(-, root, root) %{_libdir}/libcfsutil.a' >>lustre.files
158 if [ -f $RPM_BUILD_ROOT%{_libdir}/liblustre.so ] ; then
159 echo '%attr(-, root, root) %{_libdir}/liblustre.a' >>lustre.files
160 echo '%attr(-, root, root) %{_libdir}/liblustre.so' >>lustre.files
163 if [ -f $RPM_BUILD_DIR/lustre-%{version}/lustre/utils/libiam.c ] ; then
164 echo '%attr(-, root, root) %{_libdir}/libiam.a' >>lustre.files
167 if [ -d $RPM_BUILD_ROOT%{_libdir}/lustre/snmp ] ; then
168 echo '%attr(-, root, root) %{_libdir}/lustre/snmp' >>lustre.files
169 echo '%attr(-, root, root) %{_datadir}/lustre/snmp/mibs' >>lustre.files
172 # Have universal lustre headers
173 if [ -f $RPM_BUILD_DIR/lustre-%{version}/lustre/include/lustre/lustre_idl.h ] ; then
174 echo '%attr(-, root, root) /usr/include/linux/lustre_user.h' >>lustre.files
176 echo '%attr(-, root, root) /usr/include/linux/lustre_idl.h' >>lustre.files
179 if [ -f $RPM_BUILD_DIR/lustre-%{version}/lustre/include/linux/lustre_types.h ] ; then
180 echo '%attr(-, root, root) /usr/include/linux/lustre_types.h' >>lustre.files
183 echo '%attr(-, root, root) %{_libdir}/lustre/tests/*' >lustre-tests.files
184 echo '%attr(-, root, root) /lib/modules/%{kversion}/kernel/fs/lustre/llog_test.*' >>lustre-tests.files
185 modules_excludes="llog_test"
186 if [ -d $RPM_BUILD_ROOT%{_libdir}/lustre/liblustre/tests ] ; then
187 echo '%attr(-, root, root) %{_libdir}/lustre/liblustre/tests/*' >>lustre-tests.files
190 pushd $RPM_BUILD_ROOT >/dev/null
191 find lib/modules/%{kversion}/kernel -type f | awk "!/($modules_excludes)/ {print \"/\"\$0}" >>$RPM_BUILD_DIR/lustre-%{version}/lustre-modules.files
194 %files -f lustre.files
196 %files modules -f lustre-modules.files
197 %attr(-, root, root) %doc COPYING
198 %attr(-, root, root) %doc ChangeLog-lustre
199 %attr(-, root, root) %doc ChangeLog-lnet
202 %attr(-, root, root) /usr/src/lustre-%{version}
204 # uncomment these lines to enable deps packages
208 %files tests -f lustre-tests.files
211 if [ -f /boot/System.map-%{kversion} ]; then
212 depmod -ae -F /boot/System.map-%{kversion} %{kversion} || exit 0
214 depmod -ae %{kversion} || exit 0
217 Congratulations on finishing your Lustre installation! To register
218 your copy of Lustre and find out more about Lustre Support, Service,
219 and Training offerings please visit
221 http://www.sun.com/software/products/lustre/lustre_reg.jsp
224 # for update from < v1.4.6
226 for f in /etc/modules.conf /etc/modprobe.conf /etc/modprobe.conf.local ;
229 if grep 'lustre llite' $f >/dev/null 2>/dev/null ; then
230 [ ! -f $f.rpmsave ] && cp $f $f.rpmsave
231 TMPFILE=`mktemp $f.XXXXXX` && \
232 rm -f $TMPFILE && touch $TMPFILE && \
233 grep -v 'lustre llite' $f >> $TMPFILE && \
236 if egrep "^[^#]*(add below|install) ptlrpc" $f ; then
237 [ ! -f $f.rpmsave ] && cp $f $f.rpmsave
238 TMPFILE=`mktemp $f.XXXXXX` && \
239 rm -f $TMPFILE && touch $TMPFILE && \
240 sed -e "s/^[^#]*\(add below\|install\) ptlrpc.*/#&/" $f >> $TMPFILE && \
246 # If the kernel was built to reject unsupported modules (e.g. not a Lustre
247 # kernel), and this hasn't been overridden in /etc/modprobe.d yet, then
248 # print a warning so that users are aware of this issue.
249 if sysctl kernel.unsupported >/dev/null 2>&1 &&
250 [ "$(sysctl -n kernel.unsupported 2>/dev/null)" = "0" ] &&
251 ! modprobe -c | grep -q "^allow_unsupported_modules[ \t]1" ; then
253 warning: the Lustre modules are not supported by Novell. To use Lustre
254 on this system, you should put
256 allow_unsupported_modules 1
258 into /etc/modprobe.d/unsupported_modules"
262 if [ -f /boot/System.map-%{kversion} ]; then
263 depmod -ae -F /boot/System.map-%{kversion} %{kversion} || exit 0
265 depmod -ae %{kversion} || exit 0
269 if [ -f /boot/System.map-%{kversion} ]; then
270 depmod -ae -F /boot/System.map-%{kversion} %{kversion} || exit 0
272 depmod -ae %{kversion} || exit 0
276 if [ -f /boot/System.map-%{kversion} ]; then
277 depmod -ae -F /boot/System.map-%{kversion} %{kversion} || exit 0
279 depmod -ae %{kversion} || exit 0
283 rm -rf $RPM_BUILD_ROOT