summaryrefslogtreecommitdiff
path: root/libre/linux-libre/linux-libre-chromebook.install
blob: 54682de7e99bd83af2bbdeff731c8b4c424f1c02 (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
post_install () {
  if mountpoint -q /boot; then
    major=$(mountpoint -d /boot | cut -f 1 -d ':')
    minor=$(mountpoint -d /boot | cut -f 2 -d ':')
  else
    major=$(mountpoint -d / | cut -f 1 -d ':')
    minor=$(mountpoint -d / | cut -f 2 -d ':')
  fi
  device=$(cat /proc/partitions | awk {'if ($1 == "'${major}'" && $2 == "'${minor}'") print $4 '})
  device="/dev/${device/%2/1}"

  echo "A new kernel version needs to be flashed onto ${device}."
  echo "Do you want to do this now? [y|N]"
  read -r shouldwe
  if [[ $shouldwe =~ ^([yY][eE][sS]|[yY])$ ]]; then
    dd if=/boot/vmlinux.kpart of=${device}
    sync
  else
    echo "You can do this later by running:"
    echo "# dd if=/boot/vmlinux.kpart of=${device}"
  fi
}

post_upgrade() {
  post_install
}