2010-01-26 01:11:17 +08:00
|
|
|
#!/bin/sh
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
# Copyright (C) 2010 Vertical Communications
|
|
|
|
|
|
|
|
init_devpts() {
|
|
|
|
[ -d /dev/pts ] || mkdir -p /dev/pts
|
|
|
|
}
|
|
|
|
|
|
|
|
do_mount_devpts() {
|
2012-12-20 00:07:46 +08:00
|
|
|
mount -o noatime -t devpts devpts /dev/pts
|
2010-01-26 01:11:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
boot_hook_add preinit_essential init_devpts
|
|
|
|
boot_hook_add preinit_essential do_mount_devpts
|
|
|
|
|