aboutsummarylogtreecommitdiffstats
path: root/linux-raspberrypi4-aarch64.install
blob: 44f5ea4b74ae4bcbb3a59f7edcde521a414b7b91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
disable_cma() {
  if [[ -f /boot/config.txt && $(grep '^cma' /boot/config.txt) != '' ]]; then
    echo ">>> You appear to have dynamic memory (CMA) enabled, which is currently broken"
    echo ">>>   in newer kernels and will cause many issues if left enabled."
    echo ">>> Disabling that for you now."
    sed -i 's/^cma_/#cma_/g' /boot/config.txt
  fi
}

post_install () {
  disable_cma
}

post_upgrade() {
  if grep "^[^#]*[[:space:]]/boot" etc/fstab 2>&1 >/dev/null; then
    if ! grep "[[:space:]]/boot" etc/mtab 2>&1 >/dev/null; then
      echo "WARNING: /boot appears to be a separate partition but is not mounted."
      echo "         You probably just broke your system. Congratulations."
    fi
  fi

  disable_cma

  if [ "$(vercmp $2 3.18.3)" -lt 0 ]; then
    echo "________________________________________________________________________________"
    echo ""
    echo "WARNING: This kernel provides updated config.txt and cmdline.txt files."
    echo "         Check for pacnew files in /boot and merge or replace the existing files"
    echo "         with the new versions."
    echo "________________________________________________________________________________"
    echo ""
  fi
}

post_remove() {
  rm -f boot/initramfs-linux.img
}