initramfs-tools: re-add init-top/fbconsole script for KMS.
This commit is contained in:
parent
ac26d350ea
commit
4c1c20873c
|
@ -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'
|
||||
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
|
||||
version=${_localver}.${_distver}
|
||||
build_style=custom-install
|
||||
|
|
Loading…
Reference in New Issue