5ada82a59c
ARM doesn't have a generic Linux image due to the soc-specific nature of Linux kernels today, so we drop the manual installation of that package, replacing it with a dist-upgrade instead. This involved tweaks to the dpkg and fedora install-package scripts. Change-Id: I97924b80ca87781307e1087b9fe4b18215770e84
8 lines
129 B
Bash
Executable File
8 lines
129 B
Bash
Executable File
#!/bin/bash
|
|
# Fully upgrade everything on the system (if the package manager knows how to
|
|
# do it).
|
|
|
|
set -e
|
|
|
|
install-packages -u
|