summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrei Gherzan <andrei@gherzan.ro>2012-07-09 23:53:37 +0300
committerAndrei Gherzan <andrei@gherzan.ro>2012-08-17 11:27:13 +0300
commit81c06ffcc7bdefd328a61eb103909c3fe32b7c2f (patch)
tree8199725c6ac3493eab15f3bfbf31598150504fd2
parent010fee44f3d0c099b7b2f9332fe17d9d139648b9 (diff)
downloadmeta-raspberrypi-81c06ffcc7bdefd328a61eb103909c3fe32b7c2f.tar.gz
linux.inc: Activate CONFIG_LEGACY_PTYS needed for bootlogd
Activate this to have /dev/ptmx before init script for bootlogd. [GITHUB #27] Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
-rwxr-xr-xrecipes-kernel/linux/linux.inc6
1 files changed, 6 insertions, 0 deletions
diff --git a/recipes-kernel/linux/linux.inc b/recipes-kernel/linux/linux.inc
index 02f7cef..6c26c24 100755
--- a/recipes-kernel/linux/linux.inc
+++ b/recipes-kernel/linux/linux.inc
@@ -217,6 +217,12 @@ do_configure_prepend() {
217 echo "CONFIG_CMDLINE=\"${CMDLINE_NFSROOT_USB}\"" >> ${S}/.config 217 echo "CONFIG_CMDLINE=\"${CMDLINE_NFSROOT_USB}\"" >> ${S}/.config
218 fi 218 fi
219 yes '' | oe_runmake oldconfig 219 yes '' | oe_runmake oldconfig
220
221 #
222 # Activate CONFIG_LEGACY_PTYS
223 #
224 sed -e '/CONFIG_LEGACY_PTYS/d' -i ${S}/.config
225 echo "CONFIG_LEGACY_PTYS=y" >> ${S}/.config
220} 226}
221 227
222do_configure_append() { 228do_configure_append() {