Browse Source

Clifford Wolf:


			
			
				rocklinux
			
			
		
Clifford Wolf 21 years ago
parent
commit
b23af9f7f4
2 changed files with 3 additions and 4 deletions
  1. +1
    -1
      package/avm/bootsplash/pkg_linux24_pre.conf
  2. +2
    -3
      package/base/linux24/lx_config.sh

+ 1
- 1
package/avm/bootsplash/pkg_linux24_pre.conf

@ -3,8 +3,8 @@ if [ "$ROCKCFG_KERNEL_BOOTSPLASH" == '1' ] ; then
echo_status "Including Bootsplash Patch for version ${ver}"
bootsplash_patch=$base/download/avm/bootsplash/bootsplash-3.0.7-${ver}-vanilla.diff
else
bootsplash_patch=$base/download/avm/bootsplash/bootsplash-3.0.7-2.4.24-vanilla.diff
echo_status "Including backup Bootsplash Patch for version 2.4.24"
bootsplash_patch=$base/download/avm/bootsplash/bootsplash-3.0.7-2.4.22-vanilla.diff
fi
var_remove patchfiles " " "$bootsplash_patch"
var_append patchfiles " " "$bootsplash_patch"

+ 2
- 3
package/base/linux24/lx_config.sh

@ -39,10 +39,9 @@ MAKE="$MAKE ARCH=$lx_cpu CROSS_COMPILE=$archprefix KCC=$KCC"
# correct the abolute path for patchfiles supplied in the .desc file
for x in $patchfiles ; do
if [ ! -e $x ] ; then
if [ ! -e "$x" -a -n "${x##*/*}" ] ; then
var_remove patchfiles " " "$x"
x=$archdir/$x
var_append patchfiles " " "$x"
var_append patchfiles " " "$archdir/$x"
fi
done

Loading…
Cancel
Save