aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gaffney <agaffney@gentoo.org>2008-12-08 22:44:11 -0600
committerAndrew Gaffney <agaffney@gentoo.org>2008-12-08 22:44:11 -0600
commit899fe9895c5537ea7e0da9c9c47e0daf0ec79375 (patch)
tree1b4037a7e985bca844c913073e1d6e8153a84816 /gen_initramfs.sh
parentEnable CONFIG_FEATURE_PREFER_APPLETS busybox option (diff)
downloadgenkernel-899fe9895c5537ea7e0da9c9c47e0daf0ec79375.tar.gz
genkernel-899fe9895c5537ea7e0da9c9c47e0daf0ec79375.tar.bz2
genkernel-899fe9895c5537ea7e0da9c9c47e0daf0ec79375.zip
s/aux/luks/ for gentoo bug #250330
Diffstat (limited to 'gen_initramfs.sh')
-rw-r--r--gen_initramfs.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/gen_initramfs.sh b/gen_initramfs.sh
index 10dc2cd..045574a 100644
--- a/gen_initramfs.sh
+++ b/gen_initramfs.sh
@@ -296,15 +296,15 @@ append_luks() {
if is_static /bin/cryptsetup
then
print_info 1 "Including LUKS support"
- rm -f ${TEMP}/initramfs-aux-temp/sbin/cryptsetup
- cp /bin/cryptsetup ${TEMP}/initramfs-aux-temp/sbin/cryptsetup
- chmod +x "${TEMP}/initramfs-aux-temp/sbin/cryptsetup"
+ rm -f ${TEMP}/initramfs-luks-temp/sbin/cryptsetup
+ cp /bin/cryptsetup ${TEMP}/initramfs-luks-temp/sbin/cryptsetup
+ chmod +x "${TEMP}/initramfs-luks-temp/sbin/cryptsetup"
elif is_static /sbin/cryptsetup
then
print_info 1 "Including LUKS support"
- rm -f ${TEMP}/initramfs-aux-temp/sbin/cryptsetup
- cp /sbin/cryptsetup ${TEMP}/initramfs-aux-temp/sbin/cryptsetup
- chmod +x "${TEMP}/initramfs-aux-temp/sbin/cryptsetup"
+ rm -f ${TEMP}/initramfs-luks-temp/sbin/cryptsetup
+ cp /sbin/cryptsetup ${TEMP}/initramfs-luks-temp/sbin/cryptsetup
+ chmod +x "${TEMP}/initramfs-luks-temp/sbin/cryptsetup"
else
print_info 1 "LUKS support requires static cryptsetup at /bin/cryptsetup or /sbin/cryptsetup"