summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-02-27 11:14:53 +0000
committerSam Thursfield <sam.thursfield@codethink.co.uk>2012-08-31 13:11:07 +0100
commite10d4b624ea267017e596ea658c7b02d2f745930 (patch)
treef145f3550cd4dc98043049e0205b634b1171eac9
parent41f4d2e71b42de7210e7c862104930075245bb56 (diff)
downloadlinux-e10d4b624ea267017e596ea658c7b02d2f745930.tar.gz
linux.morph: udev and other config changes
udev requires DEVTMPFS be enabled in the kernel and that UEVENT_HELPER_PATH is an empty string, this setting is no longer needed for udev and can cause the kernel to create too many processes according to its README Also change the INSTALL_PATH to include /boot, this should not be installed in /. I don't know the full reasoning behind this, but it allows the kernel to be installed on a different partition.
-rw-r--r--linux.morph4
1 files changed, 3 insertions, 1 deletions
diff --git a/linux.morph b/linux.morph
index b715d39f7bd0..b6b649d52637 100644
--- a/linux.morph
+++ b/linux.morph
@@ -8,6 +8,8 @@
"scripts/config -e ATA_GENERIC",
"scripts/config -e HAVE_IDE",
"scripts/config -d BLK_DEV_IDE_SATA",
+ "scripts/config -e DEVTMPFS",
+ "scripts/config --set-str UEVENT_HELPER_PATH ''",
"scripts/config -e EXT2_FS",
"scripts/config -e EXT2_FS_XATTR",
"scripts/config -e EXT2_FS_POSIX_ACL",
@@ -32,7 +34,7 @@
"make"
],
"install-commands": [
- "make INSTALL_PATH=\"$DESTDIR\" install",
+ "make INSTALL_PATH=\"$DESTDIR\"/boot install",
"make INSTALL_MOD_PATH=\"$DESTDIR\" modules_install"
]
}