40_init_shm 188 B

12345678910
  1. #!/bin/sh
  2. # Copyright (C) 2006 OpenWrt.org
  3. # Copyright (C) 2010 Vertical Communications
  4. init_shm() {
  5. [ -d /dev/shm ] || mkdir -p /dev/shm
  6. }
  7. boot_hook_add preinit_essential init_shm