From: nkj Date: Fri, 28 Jan 2005 12:03:17 +0000 (+0000) Subject: 2.4 kernels do not have the ext3 xattr config flag that 2.6 kernels have. X-Git-Tag: 1.3.4~165 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=8d3f422bc823ec73cebb7479cb20802966a3d304;p=fs%2Flustre-release.git 2.4 kernels do not have the ext3 xattr config flag that 2.6 kernels have. So it must only warn, not abort. --- diff --git a/lustre/autoconf/lustre-core.m4 b/lustre/autoconf/lustre-core.m4 index 4b8cabe..8a39b46 100644 --- a/lustre/autoconf/lustre-core.m4 +++ b/lustre/autoconf/lustre-core.m4 @@ -263,10 +263,13 @@ AC_SUBST(BACKINGFS) case $BACKINGFS in ext3) # --- Check that ext3 and ext3 xattr are enabled in the kernel + # --- only warn for ext3 xattr because 2.4 kernels don't have + # --- this config flag. LC_CONFIG_EXT3([],[ AC_MSG_ERROR([Lustre requires that ext3 is enabled in the kernel]) ],[ - AC_MSG_ERROR([Lustre requires that extended attributes for ext3 are enabled in the kernel]) + AC_MSG_WARN([Lustre requires that extended attributes for ext3 are enabled in the kernel]) + AC_MSG_WARN([This build may fail.]) ]) ;; ldiskfs)