add support for Rock Pi 4C and Odroid N2+

This commit is contained in:
Dan Johansen 2020-08-13 13:29:58 +02:00
parent 1a70ddebb7
commit d8c56988ab
No known key found for this signature in database
GPG Key ID: 084A7FC0035B1D49
2 changed files with 35 additions and 31 deletions

View File

@ -61,17 +61,19 @@ sudo bash ./manjaro-arm-installer
* Raspberry Pi 4 (and 3)
* Pinebook Pro
* RockPro64
* Rock Pi 4 (model B)
* Rock Pi 4B
* Rock Pi 4C (new)
* Odroid N2
* Odroid N2+ (new)
* Odroid C4
* Odroid C2
* Pinebook
* Pine64-LTS / Sopine
* Pine64+
* Pine H64 (new)
* Pine H64
* Rock64
* LibreComputer Renegade (Roc-CC)
* NanoPC T4 (new)
* NanoPC T4
* Khadas Vim 3
* Khadas Vim 2
* Khadas Vim 1

View File

@ -1,7 +1,7 @@
#! /bin/bash
# *****************************
# Version 1.3.4
# Version 1.3.5
# *****************************
# Set globals
@ -274,7 +274,7 @@ cleanup () {
dd if=$TMPDIR/boot/bl1.bin.hardkernel of=${SDCARD} conv=fsync bs=512 skip=1 seek=1 1> /dev/null 2>&1
dd if=$TMPDIR/boot/u-boot.gxbb of=${SDCARD} conv=fsync bs=512 seek=97 1> /dev/null 2>&1
;;
on2|oc4)
on2|on2-plus|oc4)
dd if=$TMPDIR/boot/u-boot.bin of=${SDCARD} conv=fsync,notrunc bs=512 seek=1 1> /dev/null 2>&1
;;
vim1|vim2|vim3)
@ -284,7 +284,7 @@ cleanup () {
pinebook|pine64-lts|pine64|pinephone|pinetab|pine-h64)
dd if=$TMPDIR/boot/u-boot-sunxi-with-spl-$DEVICE.bin of=${SDCARD} conv=fsync bs=8k seek=1 1> /dev/null 2>&1
;;
pbpro|rockpro64|rockpi4|nanopc-t4|rock64|roc-cc)
pbpro|rockpro64|rockpi4b|rockpi4c|nanopc-t4|rock64|roc-cc)
dd if=$TMPDIR/boot/idbloader.img of=${SDCARD} seek=64 conv=notrunc,fsync 1> /dev/null 2>&1
dd if=$TMPDIR/boot/u-boot.itb of=${SDCARD} seek=16384 conv=notrunc,fsync 1> /dev/null 2>&1
;;
@ -342,8 +342,10 @@ DEVICE=$(dialog --clear --title "Manjaro ARM Installer" \
"rpi4" "Raspberry Pi 4 (and 3)" \
"pbpro" "Pinebook Pro" \
"rockpro64" "RockPro64" \
"rockpi4" "Rock Pi 4" \
"rockpi4b" "Rock Pi 4B" \
"rockpi4c" "Rock Pi 4C" \
"on2" "Odroid N2" \
"on2-plus" "Odroid N2+" \
"oc4" "Odroid C4" \
"oc2" "Odroid C2" \
"pinebook" "Pinebook" \