mirror of
https://github.com/void-linux/void-packages.git
synced 2025-08-02 02:42:56 +02:00
initramfs-tools: re-add init-top/fbconsole script for KMS.
This commit is contained in:
parent
ac26d350ea
commit
4c1c20873c
2 changed files with 19 additions and 1 deletions
18
srcpkgs/initramfs-tools/files/scripts/init-top/fbconsole
Normal file
18
srcpkgs/initramfs-tools/files/scripts/init-top/fbconsole
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
PREREQ=""
|
||||||
|
prereqs()
|
||||||
|
{
|
||||||
|
echo "$PREREQ"
|
||||||
|
}
|
||||||
|
case $1 in
|
||||||
|
# get pre-requisites
|
||||||
|
prereqs)
|
||||||
|
prereqs
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Always load the fbcon module for KMS, won't do any harm for
|
||||||
|
# other users anyway.
|
||||||
|
modprobe fbcon
|
|
@ -1,6 +1,6 @@
|
||||||
# Template file for 'initramfs-tools'
|
# Template file for 'initramfs-tools'
|
||||||
pkgname=initramfs-tools
|
pkgname=initramfs-tools
|
||||||
_localver=0.99.8.2 # This is the XBPS version
|
_localver=0.99.8.3 # 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…
Add table
Reference in a new issue