tag 1.3.1, add nanopc-t4 support

This commit is contained in:
Dan Johansen 2020-06-12 13:45:09 +02:00
parent 1b95b645b8
commit 81c1a20244
No known key found for this signature in database
GPG Key ID: 084A7FC0035B1D49
2 changed files with 8 additions and 8 deletions

View File

@ -59,20 +59,20 @@ sudo bash ./manjaro-arm-installer
* Because `dialog` is weird, the script needs to be run in `bash`.
## Supported Devices:
* Raspberry Pi 4
* Raspberry Pi 3B
* Raspberry Pi 4 (and 3)
* Pinebook Pro
* RockPro64
* Rock Pi 4
* Odroid N2
* Odroid C4 (new)
* Odroid C4
* Odroid C2
* Pinebook
* Pine64-LTS / Sopine
* Pine64+
* Pine H64 (new)
* Rock64
* LibreComputer Renegade (new)
* LibreComputer Renegade
* NanoPC T4 (new)
* Khadas Vim 3
* Khadas Vim 2
* Khadas Vim 1

View File

@ -1,7 +1,7 @@
#! /bin/bash
# *****************************
# Version 1.3.0
# Version 1.3.1
# *****************************
# Set globals
@ -274,7 +274,7 @@ cleanup () {
pinebook|pine64-lts|pine64|pinephone|pinetab|pine-h64)
dd if=$TMPDIR/boot/u-boot-sunxi-with-spl-$DEVICE.bin of=${SDCARD} bs=8k seek=1 1> /dev/null 2>&1
;;
pbpro|rockpro64|rockpi4)
pbpro|rockpro64|rockpi4|nanopc-t4)
dd if=$TMPDIR/boot/idbloader.img of=${SDCARD} seek=64 conv=notrunc 1> /dev/null 2>&1
dd if=$TMPDIR/boot/u-boot.itb of=${SDCARD} seek=16384 conv=notrunc 1> /dev/null 2>&1
;;
@ -334,8 +334,7 @@ post_crypt () {
# Using Dialog to ask for user input for variables
DEVICE=$(dialog --clear --title "Manjaro ARM Installer" \
--menu "Choose a device:" 20 75 10 \
"rpi4" "Raspberry Pi 4" \
"rpi3" "Raspberry Pi 3" \
"rpi4" "Raspberry Pi 4 (and 3)" \
"pbpro" "Pinebook Pro" \
"rockpro64" "RockPro64" \
"rockpi4" "Rock Pi 4" \
@ -348,6 +347,7 @@ DEVICE=$(dialog --clear --title "Manjaro ARM Installer" \
"pine-h64" "Pine H64" \
"rock64" "Rock64" \
"roc-cc" "LibreComputer Renegade" \
"nanopc-t4" "NanoPC T4" \
"vim3" "Khadas Vim 3" \
"vim2" "Khadas Vim 2" \
"vim1" "Khadas Vim 1" \