base-files: added a default dracut conf file for void.

This commit is contained in:
Juan RP 2012-07-08 14:17:03 +02:00
parent c36a0f6c7e
commit 5927f97371
2 changed files with 21 additions and 3 deletions

View file

@ -0,0 +1,14 @@
#
# Void Linux default settings for dracut.
#
# Don't edit this file, it will be overwritten on next update.
#
omit_dracutmodules+=" dash "
omit_drivers+=" .*/fs/ocfs/.* "
add_drivers+=" radeon i915 nouveau "
stdloglvl=4
realinitpath="/lib/systemd/systemd"
prefix="/"
systemdutildir=/lib/systemd
systemdsystemunitdir=/lib/systemd/system
udevdir=/lib/udev

View file

@ -1,13 +1,13 @@
# Template file for 'base-files'
pkgname=base-files
version=0.67
version=0.68
revision=1
noarch=yes
bootstrap=yes
fulldepends="base-directories xbps-triggers"
short_desc="Void GNU/Linux base system files"
short_desc="Void Linux base system files"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://code.google.com/p/xbps"
homepage="http://voidlinux.github.com/"
license="Public domain"
long_desc="
This package installs the base system files that aren't installed by any
@ -49,4 +49,8 @@ do_install() {
# vkpurge
vinstall ${FILESDIR}/vkpurge 755 usr/sbin vkpurge
# Install default dracut configuration.
vinstall ${FILESDIR}/dracut.conf.d.void.conf 644 \
etc/dracut.conf.d void.conf
}