aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2014-06-23 12:02:44 -0700
committerRobin H. Johnson <robbat2@gentoo.org>2014-06-23 15:05:18 -0700
commit11fe5382cf4628be7a8b52123c4aeea09b463080 (patch)
tree76017f1b1990f6775c36ad92aa08e38a14b75ae9 /gen_package.sh
parentgenkernel.conf: DISTDIR in /var/cache bad (diff)
downloadgenkernel-11fe5382cf4628be7a8b52123c4aeea09b463080.tar.gz
genkernel-11fe5382cf4628be7a8b52123c4aeea09b463080.tar.bz2
genkernel-11fe5382cf4628be7a8b52123c4aeea09b463080.zip
gen_package: Log where the kern/mod/cache files go
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'gen_package.sh')
-rwxr-xr-xgen_package.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/gen_package.sh b/gen_package.sh
index 95cc469a..4780b6c1 100755
--- a/gen_package.sh
+++ b/gen_package.sh
@@ -43,6 +43,7 @@ gen_minkernpackage() {
cd "${TEMP}/minkernpackage"
/bin/tar -jcpf ${MINKERNPACKAGE} * || gen_die 'Could not compress the kernel package!'
+ print_info 3 "Created minimal kernel package: ${MINKERNPACKAGE}"
cd "${TEMP}" && rm -rf "${TEMP}/minkernpackage" > /dev/null 2>&1
}
@@ -60,6 +61,7 @@ gen_modulespackage() {
else
print_info 1 "Could not create a modules package ${INSTALL_MOD_PATH}/lib/modules/${KV} was not found"
fi
+ print_info 3 "Created modules package: ${MODULESPACKAGE}"
cd "${TEMP}" && rm -rf "${TEMP}/modulespackage" > /dev/null 2>&1
}
gen_kerncache()
@@ -105,6 +107,7 @@ gen_kerncache()
cd "${TEMP}/kerncache"
/bin/tar -jcpf ${KERNCACHE} * || gen_die 'Could not compress the kernel package!'
+ print_info 3 "Created kernel cache: ${KERNCACHE}"
cd "${TEMP}" && rm -rf "${TEMP}/kerncache" > /dev/null 2>&1
}