summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--linux-manjaro-rpi4-mainline-cacule.install74
1 files changed, 0 insertions, 74 deletions
diff --git a/linux-manjaro-rpi4-mainline-cacule.install b/linux-manjaro-rpi4-mainline-cacule.install
deleted file mode 100644
index aad1de80d47b..000000000000
--- a/linux-manjaro-rpi4-mainline-cacule.install
+++ /dev/null
@@ -1,74 +0,0 @@
-post_install () {
- if [ -f /boot/cmdline.txt.pacsave ]; then
- mv /boot/cmdline.txt.pacsave /boot/cmdline.txt
- fi
- if [ -f /boot/cmdline.txt ]; then
- echo "===> Keeping old cmdline.txt file..."
- else
- echo "===> Installing default cmdline.txt file to /boot/..."
- echo "root=LABEL=ROOT_MNJRO rw rootwait console=serial0,115200 console=tty1 selinux=0 plymouth.enable=0 smsc95xx.turbo_mode=N dwc_otg.lpm_enable=0 kgdboc=serial0,115200 elevator=noop usbhid.mousepoll=8 snd-bcm2835.enable_compat_alsa=0 audit=0" > /boot/cmdline.txt
- fi
-
- if [ -f /boot/config.txt.pacsave ]; then
- mv /boot/config.txt.pacsave /boot/config.txt
- fi
- if [ -f /boot/config.txt ]; then
- echo "===> Keeping old config.txt file..."
- else
- echo "===> Installing default config.txt file to /boot/..."
- echo "# See /boot/overlays/README for all available options" > /boot/config.txt
- echo "" >> /boot/config.txt
- echo "gpu_mem=64" >> /boot/config.txt
- echo "initramfs initramfs-linux.img followkernel" >> /boot/config.txt
- echo "kernel=kernel8.img" >> /boot/config.txt
- echo "arm_64bit=1" >> /boot/config.txt
- echo "disable_overscan=1" >> /boot/config.txt
- echo "" >> /boot/config.txt
- echo "#enable sound" >> /boot/config.txt
- echo "dtparam=audio=on" >> /boot/config.txt
- echo "#hdmi_drive=2" >> /boot/config.txt
- echo "" >> /boot/config.txt
- echo "#enable vc4" >> /boot/config.txt
- echo "dtoverlay=vc4-fkms-v3d" >> /boot/config.txt
- echo "max_framebuffers=2" >> /boot/config.txt
- fi
-}
-
-post_upgrade() {
- if [ -f /boot/cmdline.txt.pacsave ]; then
- mv /boot/cmdline.txt.pacsave /boot/cmdline.txt
- fi
- if [ -f /boot/cmdline.txt ]; then
- echo "===> Keeping old cmdline.txt file..."
- else
- echo "root=LABEL=ROOT_MNJRO rw rootwait console=serial0,115200 console=tty1 selinux=0 plymouth.enable=0 smsc95xx.turbo_mode=N dwc_otg.lpm_enable=0 kgdboc=serial0,115200 elevator=noop usbhid.mousepoll=8 snd-bcm2835.enable_compat_alsa=0 audit=0" > /boot/cmdline.txt
- fi
-
- if [ -f /boot/config.txt.pacsave ]; then
- mv /boot/config.txt.pacsave /boot/config.txt
- fi
- if [ -f /boot/config.txt ]; then
- echo "===> Keeping old config.txt file..."
- else
- echo "===> Installing default config.txt to /boot/..."
- echo "# See /boot/overlays/README for all available options" > /boot/config.txt
- echo "" >> /boot/config.txt
- echo "gpu_mem=64" >> /boot/config.txt
- echo "initramfs initramfs-linux.img followkernel" >> /boot/config.txt
- echo "kernel=kernel8.img" >> /boot/config.txt
- echo "arm_64bit=1" >> /boot/config.txt
- echo "disable_overscan=1" >> /boot/config.txt
- echo "" >> /boot/config.txt
- echo "#enable sound" >> /boot/config.txt
- echo "dtparam=audio=on" >> /boot/config.txt
- echo "#hdmi_drive=2" >> /boot/config.txt
- echo "" >> /boot/config.txt
- echo "#enable vc4" >> /boot/config.txt
- echo "dtoverlay=vc4-fkms-v3d" >> /boot/config.txt
- echo "max_framebuffers=2" >> /boot/config.txt
- fi
-}
-
-post_remove() {
- rm -f boot/initramfs-linux.img
-}