Spacing cleanups in gen_package.sh

git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/genkernel/trunk@640 67a159dc-881f-0410-a524-ba9dfbe2cb84
cleanup-cruft
Andrew Gaffney 17 years ago
parent 9ef70b96fd
commit 858f4312e5

@ -2,6 +2,9 @@
# Copyright 2006-2008 Gentoo Foundation; Distributed under the GPL v2 # Copyright 2006-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: $ # $Header: $
13 Mar 2008; Andrew Gaffney <agaffney@gentoo.org> gen_package.sh:
Spacing cleanups in gen_package.sh
13 Mar 2008; Andrew Gaffney <agaffney@gentoo.org> gen_arch.sh, genkernel: 13 Mar 2008; Andrew Gaffney <agaffney@gentoo.org> gen_arch.sh, genkernel:
Remove unsetting of ARCH for callback and change set_kernel_arch debug to Remove unsetting of ARCH for callback and change set_kernel_arch debug to
use print_info use print_info

@ -140,17 +140,17 @@ gen_kerncache_is_valid()
KERNCACHE_IS_VALID=0 KERNCACHE_IS_VALID=0
if [ "${NO_KERNEL_SOURCES}" = '1' ] if [ "${NO_KERNEL_SOURCES}" = '1' ]
then then
BUILD_KERNEL=0 BUILD_KERNEL=0
# Can make this more secure .... # Can make this more secure ....
/bin/tar -xj -f ${KERNCACHE} -C ${TEMP} /bin/tar -xj -f ${KERNCACHE} -C ${TEMP}
if [ -e ${TEMP}/config-${ARCH}-${KV} -a -e ${TEMP}/kernel-${ARCH}-${KV} ] if [ -e ${TEMP}/config-${ARCH}-${KV} -a -e ${TEMP}/kernel-${ARCH}-${KV} ]
then then
print_info 1 'Valid kernel cache found; no sources will be used' print_info 1 'Valid kernel cache found; no sources will be used'
KERNCACHE_IS_VALID=1 KERNCACHE_IS_VALID=1
fi fi
else else
if [ -e "${KERNCACHE}" ] if [ -e "${KERNCACHE}" ]
then then
KERNEL_CONFIG="/${KERNEL_DIR}/.config" KERNEL_CONFIG="/${KERNEL_DIR}/.config"
@ -162,7 +162,7 @@ gen_kerncache_is_valid()
/bin/tar -xj -f ${KERNCACHE} -C ${TEMP} /bin/tar -xj -f ${KERNCACHE} -C ${TEMP}
if [ -e ${TEMP}/config-${ARCH}-${KV} -a -e ${KERNEL_CONFIG} ] if [ -e ${TEMP}/config-${ARCH}-${KV} -a -e ${KERNEL_CONFIG} ]
then then
test1=$(grep -v "^#" ${TEMP}/config-${ARCH}-${KV} | md5sum | cut -d " " -f 1) test1=$(grep -v "^#" ${TEMP}/config-${ARCH}-${KV} | md5sum | cut -d " " -f 1)
test2=$(grep -v "^#" ${KERNEL_CONFIG} | md5sum | cut -d " " -f 1) test2=$(grep -v "^#" ${KERNEL_CONFIG} | md5sum | cut -d " " -f 1)
if [ "${test1}" == "${test2}" ] if [ "${test1}" == "${test2}" ]

Loading…
Cancel
Save