aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Gianelloni <wolf31o2@gentoo.org>2008-02-14 06:48:33 +0000
committerChris Gianelloni <wolf31o2@gentoo.org>2008-02-14 06:48:33 +0000
commit58c13464ec5d36b02f87dc77aa680d33618fde13 (patch)
tree5aae12eef44b15b227cd33bb23fdb3c38a4e7878 /gen_compile.sh
parentAdded a line to make sure we remove image.squashfs as well as the other loop ... (diff)
downloadgenkernel-58c13464ec5d36b02f87dc77aa680d33618fde13.tar.gz
genkernel-58c13464ec5d36b02f87dc77aa680d33618fde13.tar.bz2
genkernel-58c13464ec5d36b02f87dc77aa680d33618fde13.zip
Removing DEVFS support from genkernel since we don't support 2.4 kernels anymore. This is 3.4.10_pre2.
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/genkernel/trunk@600 67a159dc-881f-0410-a524-ba9dfbe2cb84
Diffstat (limited to 'gen_compile.sh')
-rw-r--r--gen_compile.sh28
1 files changed, 0 insertions, 28 deletions
diff --git a/gen_compile.sh b/gen_compile.sh
index 975708c0..8cd2fb91 100644
--- a/gen_compile.sh
+++ b/gen_compile.sh
@@ -462,34 +462,6 @@ compile_dmraid() {
fi
}
-compile_devfsd() {
- local ARGS
- if [ ! -f "${DEVFSD_BINCACHE}" ]
- then
- [ ! -f "${DEVFSD_SRCTAR}" ] &&
- gen_die "Could not find devfsd source tarball: ${DEVFSD_SRCTAR}"
- cd "${TEMP}"
- rm -rf "${DEVFSD_DIR}"
- /bin/tar -jxpf "${DEVFSD_SRCTAR}"
- [ ! -d "${DEVFSD_DIR}" ] &&
- gen_die "Devfsd directory ${DEVFSD_DIR} invalid"
- cd "${DEVFSD_DIR}"
-
- print_info 1 'devfsd: >> Compiling...'
- compile_generic 'LDFLAGS=-static' utils
-
- print_info 1 ' >> Copying to cache...'
- [ -f "${TEMP}/${DEVFSD_DIR}/devfsd" ] || gen_die 'The devfsd executable does not exist after the compilation of devfsd!'
- strip "${TEMP}/${DEVFSD_DIR}/devfsd" || gen_die 'Could not strip devfsd!'
- bzip2 "${TEMP}/${DEVFSD_DIR}/devfsd" || gen_die 'Compression of devfsd failed!'
- [ -f "${TEMP}/${DEVFSD_DIR}/devfsd.bz2" ] || gen_die 'Could not find compressed devfsd.bz2 binary!'
- mv "${TEMP}/${DEVFSD_DIR}/devfsd.bz2" "${DEVFSD_BINCACHE}" || gen_die 'Could not move compressed binary to the package cache!'
-
- cd "${TEMP}"
- rm -rf "${DEVFSD_DIR}" > /dev/null
- fi
-}
-
compile_device_mapper() {
if [ ! -f "${DEVICE_MAPPER_BINCACHE}" ]
then