diff --git a/debian/patches/bugfix/all/fix-befs-super-compilation.patch b/debian/patches/bugfix/all/fix-befs-super-compilation.patch new file mode 100644 index 000000000..44a93357a --- /dev/null +++ b/debian/patches/bugfix/all/fix-befs-super-compilation.patch @@ -0,0 +1,26 @@ +Fix this build error on parisc: +fs/befs/super.c:85: error: 'PAGE_SIZE' undeclared + +Signed-off-by: Alexander Beregalov +--- + + fs/befs/super.c | 1 + + 1 files changed, 1 insertions(+), 0 deletions(-) + +diff --git a/fs/befs/super.c b/fs/befs/super.c +index 41f2b4d..ca40f82 100644 +--- a/fs/befs/super.c ++++ b/fs/befs/super.c +@@ -8,6 +8,7 @@ + */ + + #include ++#include /* for PAGE_SIZE */ + + #include "befs.h" + #include "super.h" +-- +To unsubscribe from this list: send the line "unsubscribe linux-kernel" in +the body of a message to majordomo@vger.kernel.org +More majordomo info at http://vger.kernel.org/majordomo-info.html +Please read the FAQ at http://www.tux.org/lkml/ diff --git a/debian/patches/series/base b/debian/patches/series/base index 525fd9496..58b8f4bf4 100644 --- a/debian/patches/series/base +++ b/debian/patches/series/base @@ -24,3 +24,4 @@ #+ features/sparc/video-sunxvr500-intergraph.patch + features/arm/allow-alternative-copy-user.patch + features/arm/alternative-copy-user.patch ++ bugfix/all/fix-befs-super-compilation.patch