You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
307 B
18 lines
307 B
3 years ago
|
#!/bin/sh -efu
|
||
|
# initiate LDM hook on boot
|
||
|
|
||
|
cat << EOF > /etc/systemd/system/ldm.service
|
||
|
[Unit]
|
||
|
Description=Runs LDM configuration hooks
|
||
|
|
||
|
[Service]
|
||
|
ExecStart=/usr/bin/linux-driver-management configure gpu
|
||
|
Type=oneshot
|
||
|
RemainAfterExit=yes
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=default.target
|
||
|
EOF
|
||
|
|
||
|
systemctl enable ldm.service
|