initramfs-tools: use default size for /run, 10MB is too little.
This commit is contained in:
parent
769a2eed38
commit
c335a73af5
|
@ -31,7 +31,7 @@ if ! mount -t devtmpfs -o size=$tmpfs_size,mode=0755 devtmpfs /dev; then
|
||||||
[ -e /dev/null ] || mknod /dev/null c 1 3
|
[ -e /dev/null ] || mknod /dev/null c 1 3
|
||||||
fi
|
fi
|
||||||
# Also mount a tmpfs for /run directory.
|
# Also mount a tmpfs for /run directory.
|
||||||
mount -t tmpfs -o size=$tmpfs_size,mode=0755,nosuid,nodev tmpfs /run
|
mount -t tmpfs -o mode=0755,nosuid,nodev tmpfs /run
|
||||||
|
|
||||||
mkdir /run/udev
|
mkdir /run/udev
|
||||||
mkdir /run/.initramfs
|
mkdir /run/.initramfs
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Template file for 'initramfs-tools'
|
# Template file for 'initramfs-tools'
|
||||||
pkgname=initramfs-tools
|
pkgname=initramfs-tools
|
||||||
_localver=0.99.18 # This is the XBPS version
|
_localver=0.99.19 # This is the XBPS version
|
||||||
_distver=0.98.8 # This should match debian version
|
_distver=0.98.8 # This should match debian version
|
||||||
version=${_localver}.${_distver}
|
version=${_localver}.${_distver}
|
||||||
build_style=custom-install
|
build_style=custom-install
|
||||||
|
|
Loading…
Reference in New Issue