From: emellor@leeni.uk.xensource.com Date: Wed, 19 Apr 2006 21:52:34 +0000 (+0100) Subject: This fixes a path problem with the current ACM scripts. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~16117^2~66 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=6b884f98767d22063b86a5f253e215c399290860;p=xen.git This fixes a path problem with the current ACM scripts. Signed-off-by: Stefan Berger --- diff --git a/tools/security/labelfuncs.sh b/tools/security/labelfuncs.sh index 6eaaba5c60..9b22e18b3f 100644 --- a/tools/security/labelfuncs.sh +++ b/tools/security/labelfuncs.sh @@ -147,23 +147,23 @@ findGrubConf() # will hold a pattern # Parameters: # 1st: the path to reach the root directory of the XEN build tree -# where linux-*-xen0 is located at +# where linux-*-xen is located at # Results: # The variable linux holds then name and version of the compiled -# kernel, i.e., 'vmlinuz-2.6.12-xen0' +# kernel, i.e., 'vmlinuz-2.6.12-xen' getLinuxVersion () { local path local versionfile local lnx if [ "$1" == "" ]; then - path="/lib/modules/*-xen0" + path="/lib/modules/*-xen" else path="/lib/modules/$1" fi linux="" - for f in $path/linux-*-xen0 ; do + for f in $path ; do versionfile=$f/build/include/linux/version.h if [ -r $versionfile ]; then lnx=`cat $versionfile | \ @@ -178,7 +178,7 @@ getLinuxVersion () numbers[2], \ numbers[3]); \ } else { \ - printf("%s.%s.%s[.0-9]*-xen0",\ + printf("%s.%s.%s[.0-9]*-xen", \ numbers[1], \ numbers[2], \ numbers[3]); \ @@ -192,7 +192,7 @@ getLinuxVersion () done #Last resort. - linux="vmlinuz-2.[45678].[0-9]*[.0-9]*-xen0$" + linux="vmlinuz-2.[45678].[0-9]*[.0-9]*-xen$" } diff --git a/tools/security/updategrub.sh b/tools/security/updategrub.sh index 643c45021a..d45f2863d2 100644 --- a/tools/security/updategrub.sh +++ b/tools/security/updategrub.sh @@ -41,8 +41,8 @@ Usage: $prg [-d ] [] default is $acmroot : The name of the policy, i.e. xen_null : The version of the kernel to apply the policy - against, i.e. 2.6.12.6-xen0 - If not specified, a kernel version ending with '-xen0' + against, i.e. 2.6.16-xen + If not specified, a kernel version ending with '-xen' will be searched for in '/lib/modules' " }