20 lines
495 B
Bash
Executable File
20 lines
495 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# ti-old-omap-card-kernel-write.sh
|
|
# (c) Copyright 2018 Andreas Müller <schnitzeltony@gmail.com>
|
|
# Licensed under terms of GPLv2
|
|
#
|
|
# This script writes image to sdcard and aligns rootfs partition to max size.
|
|
|
|
# overo builds uImage instead of zImage
|
|
if [ -z "$KernelImageType" ]; then
|
|
KernelImageType='uImage'
|
|
fi
|
|
|
|
# Includes
|
|
. `dirname $0`/include/common-helpers.inc
|
|
. `dirname $0`/include/card-helpers.inc
|
|
. `dirname $0`/include/machine-ti-old-omap.inc
|
|
|
|
StartCardKernelWrite
|