home: hub: mkinitfs

Download patch

ref: c601e12f7fb1947987c6da04f22fb9a87a2c11b1
parent: 4f33e938240697175880406fb6e2ec840b434cfe
author: Natanael Copa <ncopa@alpinelinux.org>
date: Tue Nov 9 05:14:21 CST 2021

Load simpledrm kernel module early

This is needed for early console

--- a/features.d/base.modules
+++ b/features.d/base.modules
@@ -1,2 +1,3 @@
 kernel/drivers/block/loop.ko*
+kernel/drivers/gpu/drm/tiny/simpledrm.ko*
 kernel/fs/overlayfs
--- a/initramfs-init.in
+++ b/initramfs-init.in
@@ -457,7 +457,7 @@
 # load available drivers to get access to modloop media
 ebegin "Loading boot drivers"
 
-modprobe -a $(echo "$KOPT_modules $rootfstype" | tr ',' ' ' ) loop squashfs 2> /dev/null
+modprobe -a $(echo "$KOPT_modules $rootfstype" | tr ',' ' ' ) loop squashfs simpledrm 2> /dev/null
 if [ -f /etc/modules ] ; then
 	sed 's/\#.*//g' < /etc/modules |
 	while read module args; do