initramfs-tools: re-add the fbcon hook.
This commit is contained in:
parent
514e352119
commit
4df2ac55c6
2 changed files with 23 additions and 1 deletions
22
srcpkgs/initramfs-tools/files/hooks/fbcon
Executable file
22
srcpkgs/initramfs-tools/files/hooks/fbcon
Executable file
|
@ -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'
|
# Template file for 'initramfs-tools'
|
||||||
pkgname=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
|
_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
Add a link
Reference in a new issue