aboutsummaryrefslogtreecommitdiffstats
path: root/platforms/rpi-aarch64/specialFunctions.sh
diff options
context:
space:
mode:
Diffstat (limited to 'platforms/rpi-aarch64/specialFunctions.sh')
-rwxr-xr-xplatforms/rpi-aarch64/specialFunctions.sh69
1 files changed, 69 insertions, 0 deletions
diff --git a/platforms/rpi-aarch64/specialFunctions.sh b/platforms/rpi-aarch64/specialFunctions.sh
new file mode 100755
index 0000000..7cecb75
--- /dev/null
+++ b/platforms/rpi-aarch64/specialFunctions.sh
@@ -0,0 +1,69 @@
+#!/bin/bash
+
+# Copyright (C) 2017-2018 Daniel Tartavel-jeannot <contact@librepc.com>
+# Copyright (C) 2019-2020 Jean-Baptiste Biernacki <j.biernacki@free.fr>
+#
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+SFDISK_SCRIPT=",128M,c,*\n,,L,\nwrite\n"
+
+function preImgCreation()
+{
+
+ title "Download binary blob for Rpi"
+ for i in ${FIRMWARE_DOWNLOAD_URL}; do
+ info "Download ${i}"
+ curl -L -O -J ${i} -s
+ done
+
+ title "Creating Pi image"
+ title "Making raspberry pi image"
+ return 0
+}
+
+function postPrepareChroot()
+{
+ #Nothing to do. (Except replacing default function.)
+ return 0
+}
+
+
+function bunrningBootloader()
+{
+ #Nothing to do. (Except replacing default function.)
+ return 0
+}
+
+
+function copyingCustomSystem()
+{
+ info "copying firmware to ${ARM_BOOT}"
+ cp -v --preserve=mode "${FIRMWARE_PATH}/start"* "${BOOT}/"
+ cp -v --preserve=mode "${FIRMWARE_PATH}/fixup"* "${BOOT}/"
+ cp -v --preserve=mode "${FIRMWARE_PATH}/bootcode.bin"* "${BOOT}/"
+
+ info "copying u-boot binary to ${ARM_BOOT}"
+ cp --preserve=mode "${BUILD_PATH}/usr/lib/u-boot/${U_BOOT}/u-boot.bin" "${BOOT}/"
+
+ info "copying boot files to ${BOOT}"
+ cp -a ${CONFIG_PATH}/boot/* "${BOOT}/"
+
+ info "copying dtb files to ${BOOT}"
+ for f in ${DTB}; do
+ cp --preserve=mode ${BUILD_PATH}/usr/lib64/linux-*/${f} "${BOOT}/"
+ done
+
+ return 0
+}