diff --git a/src/recipes/default/hook/customize.sh b/src/recipes/default/hook/customize.sh index f595466..d984c8e 100755 --- a/src/recipes/default/hook/customize.sh +++ b/src/recipes/default/hook/customize.sh @@ -2,6 +2,10 @@ printf "Customize hook script for mmdebstrap %s\n\n" "$RECIPE" +printf "Remove root password\n" +#echo "root:root" | chpasswd +passwd -d root + printf "Add MNT repository and key\n" chroot $1 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 376511EB67AD7BAF echo "deb https://mntre.com/reform-debian sid/" | chroot $1 tee /etc/apt/sources.list.d/mntre.list @@ -20,6 +24,11 @@ else printf "Can't find %s directory\n" "$source" fi +#Start hw setur service +chroot $1 systemctl enable reform-hw-setup.service +#mask hibernation / sleep target +chroot $1 systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target + # Procfs is needed to build DRM mount -t proc /proc $1/proc