initramfs-tools: re-add the fbcon hook.
This commit is contained in:
parent
514e352119
commit
4df2ac55c6
|
@ -0,0 +1,22 @@
|
|||
#!/bin/sh
|
||||
|
||||
PREREQ=""
|
||||
|
||||
prereqs()
|
||||
{
|
||||
echo "$PREREQ"
|
||||
}
|
||||
|
||||
case $1 in
|
||||
# get pre-requisites
|
||||
prereqs)
|
||||
prereqs
|
||||
exit 0
|
||||
;;
|
||||
esac
|
||||
|
||||
# Hook to add the fbcon module
|
||||
. /usr/share/initramfs-tools/hook-functions
|
||||
manual_add_modules fbcon
|
||||
|
||||
exit 0
|
|
@ -1,6 +1,6 @@
|
|||
# Template file for 'initramfs-tools'
|
||||
pkgname=initramfs-tools
|
||||
_localver=0.99.8.3 # This is the XBPS version
|
||||
_localver=0.99.8.4 # 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