summaryrefslogtreecommitdiffstats
path: root/panda-install-kernel.sh
diff options
context:
space:
mode:
Diffstat (limited to 'panda-install-kernel.sh')
-rwxr-xr-xpanda-install-kernel.sh16
1 files changed, 6 insertions, 10 deletions
diff --git a/panda-install-kernel.sh b/panda-install-kernel.sh
index 9a22d8c..2a7f66a 100755
--- a/panda-install-kernel.sh
+++ b/panda-install-kernel.sh
@@ -1,22 +1,18 @@
1#!/bin/sh 1#!/bin/sh
2 2
3set -e 3. $(dirname $0)/arm-installer-common.sh
4 4
5error() { 5# This is machine specific, AFAIK.
6 echo "$@" >&2 6LOAD_ADDR=0x80008000
7 exit 1 7ENTRY_POINT=0x80008000
8}
9 8
10TMP_MOUNT=$(mktemp -d) 9TMP_MOUNT=$(mktemp -d)
11 10
12# The FAT u-boot bootloader partition. 11# The FAT u-boot bootloader partition.
13UBOOT_PART=/dev/mmcblk0p1 12UBOOT_PART=/dev/mmcblk0p1
14 13
15# This is machine specific, AFAIK. 14KVERSION=$(getversion)
16LOAD_ADDR=0x80008000 15CONFIG_FILE="config-$KVERSION"
17ENTRY_POINT=0x80008000
18
19getversion
20 16
21fetchfiles 17fetchfiles
22 18