File check-build.sh of Package kernel-source (Revision 0d54b63c449d1f20839786d7c71243b9)
Currently displaying revision 0d54b63c449d1f20839786d7c71243b9, show latest
1
2
# Copyright (c) 2005 SUSE Linux Products GmbH, Germany. All rights reserved.
3
4
if grep -q "Linux version 2\.[0-5]\." /proc/version; then
5
echo "FATAL: kernel too old, need kernel >= 2.6 for this package"
6
exit 1
7
fi
8
9
exit 0
10
11