initramfs-tools: create /run/udev and /run/initramfs-tools with proper perms.

This commit is contained in:
Juan RP 2011-11-22 07:55:28 +01:00
parent 9fb52539ed
commit 3e3f405aeb
2 changed files with 3 additions and 3 deletions

View file

@ -35,8 +35,8 @@ fi
# Also mount a tmpfs for /run directory.
mount -t tmpfs -o mode=0755,nosuid,nodev tmpfs /run
mkdir /run/udev
mkdir /run/initramfs
mkdir -m0755 /run/udev
mkdir -m0755 /run/initramfs
# Set modprobe env
export MODPROBE_OPTIONS="-qb"

View file

@ -1,6 +1,6 @@
# Template file for 'initramfs-tools'
pkgname=initramfs-tools
_localver=109 # This is the XBPS version
_localver=110 # This is the XBPS version
_distver=0.99 # This should match debian version
version=${_distver}.${_localver}
short_desc="Tools for generating an initramfs"