40_mount_devpts 301 B

123456789101112131415
  1. #!/bin/sh
  2. # Copyright (C) 2006 OpenWrt.org
  3. # Copyright (C) 2010 Vertical Communications
  4. init_devpts() {
  5. [ -d /dev/pts ] || mkdir -p /dev/pts
  6. }
  7. do_mount_devpts() {
  8. mount -t devpts devpts /dev/pts
  9. }
  10. boot_hook_add preinit_essential init_devpts
  11. boot_hook_add preinit_essential do_mount_devpts