This should make it, genkernel-next.git, initramfs (hopefully):
commit 1b282a7c9fdd0423c9b6365c0a1eec2a6e34db5c
Author: Fabio Erculiani <[email protected]>
Date: Sun Aug 11 10:01:00 2013 +0200
initrd.scripts: mount livecd / tmpfs with mode=0755 (instead of 0777)
diff --git a/defaults/initrd.scripts b/defaults/initrd.scripts
index 2bd86d7..1f67740 100644
--- a/defaults/initrd.scripts
+++ b/defaults/initrd.scripts
@@ -1557,7 +1557,7 @@ setup_squashfs_aufs() {
livecd_init() {
good_msg "Making tmpfs for ${NEW_ROOT}"
- mount -n -t tmpfs tmpfs "${NEW_ROOT}"
+ mount -n -t tmpfs -o mode=0755 tmpfs "${NEW_ROOT}"
local dirs=
--
Fabio Erculiani