diff options
-rw-r--r-- | meta-yocto/recipes-core/tiny-init/files/init | 3 | ||||
-rw-r--r-- | meta-yocto/recipes-core/tiny-init/tiny-init.bb | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/meta-yocto/recipes-core/tiny-init/files/init b/meta-yocto/recipes-core/tiny-init/files/init index bf2817d099..89fe39ec5a 100644 --- a/meta-yocto/recipes-core/tiny-init/files/init +++ b/meta-yocto/recipes-core/tiny-init/files/init | |||
@@ -3,6 +3,9 @@ | |||
3 | # Mount the Linux kernel virtual filesystems | 3 | # Mount the Linux kernel virtual filesystems |
4 | mount none -t proc /proc | 4 | mount none -t proc /proc |
5 | mount none -t sysfs /sys | 5 | mount none -t sysfs /sys |
6 | |||
7 | # Setup PTY infrastructure | ||
8 | mknod /dev/ptmx c 5 2 | ||
6 | mkdir /dev/pts | 9 | mkdir /dev/pts |
7 | mount none -t devpts /dev/pts | 10 | mount none -t devpts /dev/pts |
8 | 11 | ||
diff --git a/meta-yocto/recipes-core/tiny-init/tiny-init.bb b/meta-yocto/recipes-core/tiny-init/tiny-init.bb index f5892ed472..394d70fd0d 100644 --- a/meta-yocto/recipes-core/tiny-init/tiny-init.bb +++ b/meta-yocto/recipes-core/tiny-init/tiny-init.bb | |||
@@ -3,7 +3,7 @@ DESCRIPTION = "Basic init system for poky-tiny" | |||
3 | LICENSE = "MIT" | 3 | LICENSE = "MIT" |
4 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | 4 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" |
5 | 5 | ||
6 | PR = "r0" | 6 | PR = "r1" |
7 | 7 | ||
8 | RDEPENDS_${PN} = "busybox" | 8 | RDEPENDS_${PN} = "busybox" |
9 | 9 | ||