-
Notifications
You must be signed in to change notification settings - Fork 2k
/
armbian-install
executable file
·603 lines (538 loc) · 25.2 KB
/
armbian-install
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
#!/bin/bash
#================================================================================================
#
# This file is licensed under the terms of the GNU General Public
# License version 2. This program is licensed "as is" without any
# warranty of any kind, whether express or implied.
#
# This file is a part of the Rebuild Armbian
# https://github.com/ophub/amlogic-s9xxx-armbian
#
# Function: Install armbian to eMMC
# Copyright (C) 2021- https://github.com/unifreq/openwrt_packit
# Copyright (C) 2022- https://github.com/7Ji/ampart
# Copyright (C) 2021- https://github.com/ophub/amlogic-s9xxx-armbian
#
# Command: armbian-install [-m yes/no] [-a yes/no] [-l yes/no]
# Optional parameters: -m = use mainline u-boot (default: no)
# -a = use ampart partition table adjustment tool (default: yes)
# -l = show a list of all devices (default: no)
#
# Examples:
# Use mainline u-boot : armbian-install -m yes
# Disable ampart tool : armbian-install -a no
# Show all available devices: armbian-install -l yes
#
#======================================== Functions list ========================================
#
# error_msg : Output error message
# check_depends : Check dependencies
# init_var : Initialize all variables
# show_aml_model : Display the model list
# set_rootfs_type : Set the type of file system
# ampart_tool : Repartition using ampart
# create_partition : Create emmc partition
# copy_bootfs : Copy bootfs partition files
# copy_rootfs : Copy rootfs partition files
#
#==================================== Set default parameters ====================================
#
# Use mainline u-boot by default (-m)
auto_mainline_uboot="no"
# Use ampart partition tool by default (-a)
use_ampart="yes"
# Show all device list by default (-l)
show_all_list="no"
# Set install list profile
model_conf="/etc/model_database.conf"
# Add custom armbian firmware information
ophub_release_file="/etc/ophub-release"
# Set the installation file preprocessing directory
tmp_path="/ddbr"
# Set font color
STEPS="[\033[95m STEPS \033[0m]"
INFO="[\033[94m INFO \033[0m]"
SUCCESS="[\033[92m SUCCESS \033[0m]"
OPTIONS="[\033[93m OPTIONS \033[0m]"
ERROR="[\033[91m ERROR \033[0m]"
#
#================================================================================================
# Encountered a serious error, abort the script execution
error_msg() {
echo -e "${ERROR} ${1}"
exit 1
}
# Check dependencies
check_depends() {
echo -e "${STEPS} Checking dependencies..."
is_missing="0"
necessary_packages=("tar" "hexdump" "mkfs.vfat" "mkfs.ext4" "mkfs.btrfs" "parted" "losetup" "fdisk" "lsblk")
install_packages=("tar" "bsdextrautils" "dosfstools" "e2fsprogs" "btrfs-progs" "parted" "mount" "fdisk" "util-linux")
i="1"
for package in ${necessary_packages[*]}; do
[[ -n "$(which "${package}" 2>/dev/null)" ]] || is_missing="1"
let i++
done
if [[ "${is_missing}" -eq "1" ]]; then
echo -e "${INFO} Installing necessary dependencies."
sudo apt-get update
sudo apt-get install -y ${install_packages[*]}
[[ "${?}" -eq "0" ]] || error_msg "Failed to install dependencies, aborting!"
else
echo -e "${INFO} Dependency check completed. Proceeding installation..."
fi
}
# Initialize all variables
init_var() {
echo -e "${STEPS} Initializing the environment..."
# If it is followed by [ : ], it means that the option requires a parameter value
get_all_ver="$(getopt "m:a:l:" "${@}")"
while [[ -n "${1}" ]]; do
case "${1}" in
-m | --Mainline_u-boot)
if [[ -n "${2}" ]]; then
[[ "${2}" == "yes" ]] && auto_mainline_uboot="yes" || auto_mainline_uboot="no"
shift
else
error_msg "Invalid -m parameter [ ${2} ]!"
fi
;;
-a | --Ampart_tool)
if [[ -n "${2}" ]]; then
[[ "${2}" == "yes" ]] && use_ampart="yes" || use_ampart="no"
shift
else
error_msg "Invalid -a parameter [ ${2} ]!"
fi
;;
-l | --List_all)
if [[ -n "${2}" ]]; then
[[ "${2}" == "yes" ]] && show_all_list="yes" || show_all_list="no"
shift
else
error_msg "Invalid -l parameter [ ${2} ]!"
fi
;;
*)
error_msg "Invalid option [ ${1} ]!"
;;
esac
shift
done
# Display settings results
echo -e "${INFO} Use mainline u-boot: [ ${auto_mainline_uboot} ]"
echo -e "${INFO} Use ampart tool: [ ${use_ampart} ]"
echo -e "${INFO} Show all devices: [ ${show_all_list} ]"
# Find a list of devices of the same family
SEARCH_FAMILY=""
[[ "${show_all_list}" == "no" ]] && {
[[ -s "${ophub_release_file}" ]] || error_msg "[ ${ophub_release_file} ] file is missing!"
source "${ophub_release_file}" && SEARCH_FAMILY="$(basename ${FAMILY})"
[[ -n "${SEARCH_FAMILY}" ]] && SEARCH_FAMILY=":${SEARCH_FAMILY}:"
}
# Check if the ${model_conf} file exists
[[ -s "${model_conf}" ]] || error_msg "[ ${model_conf} ] file is missing!"
model_database="$(cat ${model_conf} | sed -e 's/NA//g' -e 's/NULL//g' -e 's/[ ][ ]*//g' | grep -E "^[0-9]{1,3}:.*${SEARCH_FAMILY}.*")"
[[ -n "${model_database}" ]] || error_msg "The [ ${SEARCH_FAMILY} ] series in the [ ${model_conf} ] file is empty and does not support write to eMMC!"
# Check if current system is booted from eMMC
root_devname="$(df / | tail -n1 | awk '{print $1}' | awk -F '/' '{print substr($3, 1, length($3)-2)}')"
if lsblk -l | grep -E "^${root_devname}boot0" >/dev/null; then
error_msg "Current system is already installed to eMMC!"
fi
# Find emmc disk, first find emmc containing boot0 partition
install_emmc="$(lsblk -l -o NAME | grep -oE '(mmcblk[0-9]?boot0)' | sed "s/boot0//g")"
# Find emmc disk, find emmc that does not contain the boot0 partition
[[ -z "${install_emmc}" ]] && install_emmc="$(lsblk -l -o NAME | grep -oE '(mmcblk[0-9]?)' | grep -vE ^${root_devname} | sort -u)"
# Check if emmc exists
[[ -z "${install_emmc}" ]] && error_msg "Internal eMMC storage was't found in this device!"
# Location of emmc
DEV_EMMC="/dev/${install_emmc}"
echo -e "${INFO} Internal eMMC : [ ${DEV_EMMC} ]"
# Create a file preprocessing directory
DIR_INSTALL="${tmp_path}/install"
[[ -d "${DIR_INSTALL}" ]] && rm -rf ${DIR_INSTALL}
mkdir -p ${DIR_INSTALL} && chmod 777 ${tmp_path}
# Regenerate new machine-id
rm -f /etc/machine-id /var/lib/dbus/machine-id
dbus-uuidgen --ensure=/etc/machine-id
dbus-uuidgen --ensure
# Generate New ROOTFS UUID
ROOTFS_UUID="$(cat /proc/sys/kernel/random/uuid)"
[[ -z "${ROOTFS_UUID}" ]] && ROOTFS_UUID="$(uuidgen)"
[[ -z "${ROOTFS_UUID}" ]] && error_msg "The new UUID is invalid, cannot continue."
# Get kernel TEXT_OFFSET, For u-boot.ext and u-boot.emmc
# With TEXT_OFFSET patch is [ 0108 ], without TEXT_OFFSET patch is [ 0000 ] and need to ues [ UBOOT_OVERLOAD ] file.
NEED_OVERLOAD="yes"
[[ "$(hexdump -n 15 -x "/boot/zImage" 2>/dev/null | head -n 1 | awk '{print $7}')" == "0108" ]] && NEED_OVERLOAD="no"
}
# Search the model list
search_aml_model() {
local search_soc_id="${1}"
local ret_count="$(echo "${model_database}" | grep -E "^${search_soc_id}:" | wc -l)"
if [[ "${ret_count}" -eq "1" ]]; then
echo "${model_database}" | grep -E "^${search_soc_id}:"
fi
}
# Functions: Displays a list of supported amlogic devices
# Configure: View ${model_database}
# 1.ID 2.MODEL 3.SOC 4.FDTFILE 5.UBOOT_OVERLOAD 6.MAINLINE_UBOOT 7.BOOTLOADER_IMG 8.DESCRIPTION
# 9.KERNEL_TAGS 10.PLATFORM 11.FAMILY 12.BOOT_CONF 13.CONTRIBUTORS 14.BOARD 15.BUILD
show_aml_model() {
echo -e "${STEPS} Start selecting device..."
# Define split line style
split_line="-----------------------------------------------------------------------------------------------------"
# Print header information
printf "%-s\n" "${split_line}"
printf "%-5s %-10s %-45s %-50s\n" ID SOC MODEL DTB
printf "%-s\n" "${split_line}"
# Print device list
echo "${model_database}" | awk -F':' '{print $1,$3,$2,$4}' | while read line; do
# Print device information
printf "%-5s %-10s %-45s %-50s\n" $(echo "${line}")
# Add a split line every 10 lines
[[ "$(echo ${line} | awk '{print $1}')" == *"0" ]] && printf "%-s\n" "${split_line}"
done
# Print custom options and end split lines
printf "%-5s %-10s %-45s %-50s\n" 0 Other Customize Enter-custom-dtb-name
printf "%-s\n" "${split_line}"
# Display device options
echo -ne "${OPTIONS} Please Input ID: "
read boxid
if [[ "${boxid}" -eq "0" ]]; then
read -p "Please Input SoC Name(such as s9xxx): " AMLOGIC_SOC
AMLOGIC_SOC="${AMLOGIC_SOC}"
#
read -p "Please Input DTB Name(such as meson-xxx.dtb): " FDTFILE
FDTFILE="${FDTFILE}"
#
read -p "Please Input UBOOT_OVERLOAD Name(such as u-boot-xxx.bin): " UBOOT_OVERLOAD
UBOOT_OVERLOAD="${UBOOT_OVERLOAD}"
#
read -p "Please Input MAINLINE_UBOOT Name(such as xxx-u-boot.bin.sd.bin): " MAINLINE_UBOOT
MAINLINE_UBOOT="${MAINLINE_UBOOT}"
#
read -p "Please Input BOOTLOADER_IMG Name(such as xxx-bootloader.img): " BOOTLOADER_IMG
BOOTLOADER_IMG="${BOOTLOADER_IMG}"
else
ret="$(search_aml_model "${boxid}")"
[[ -z "${ret}" ]] && error_msg "Input error, exit!"
MODEL_NAME="$(echo "${ret}" | awk -F ':' '{print $2}')"
AMLOGIC_SOC="$(echo "${ret}" | awk -F ':' '{print $3}')"
FDTFILE="$(echo "${ret}" | awk -F ':' '{print $4}')"
UBOOT_OVERLOAD="$(echo "${ret}" | awk -F ':' '{print $5}')"
MAINLINE_UBOOT="$(echo "${ret}" | awk -F ':' '{print $6}')"
BOOTLOADER_IMG="$(echo "${ret}" | awk -F ':' '{print $7}')"
fi
echo -e "${INFO} Input Box ID: [ ${boxid} ]"
echo -e "${INFO} Model Name: [ ${MODEL_NAME} ]"
echo -e "${INFO} FDTFILE: [ ${FDTFILE} ]"
echo -e "${INFO} MAINLINE_UBOOT: [ ${MAINLINE_UBOOT} ]"
echo -e "${INFO} BOOTLOADER_IMG: [ ${BOOTLOADER_IMG} ]"
echo -e "${INFO} UBOOT_OVERLOAD: [ ${UBOOT_OVERLOAD} ]"
echo -e "${INFO} NEED_OVERLOAD: [ ${NEED_OVERLOAD} ]"
# Check dtb file
[[ -n "${FDTFILE}" && -f "/boot/dtb/amlogic/${FDTFILE}" ]] || error_msg "The [ ${FDTFILE} ] is missing, aborting!"
# Check UBOOT_OVERLOAD file
[[ -n "${UBOOT_OVERLOAD}" && -f "/boot/${UBOOT_OVERLOAD}" ]] || error_msg "The [ ${UBOOT_OVERLOAD} ] is missing, aborting!"
}
# Set the type of file system
set_rootfs_type() {
echo -e "${STEPS} Which type of filesystem do you want for your root? "
cat <<EOF
-----------------------------------------------
ID TYPE
-----------------------------------------------
1 ext4
2 btrfs
-----------------------------------------------
EOF
echo -ne "${OPTIONS} Please Input ID (1/2): "
read filetype
if [[ "${filetype}" -eq "2" || "${filetype}" == "btrfs" ]]; then
file_system_type="btrfs"
uenv_mount_string="UUID=${ROOTFS_UUID} rootflags=compress=zstd:6 rootfstype=btrfs"
fstab_mount_string="defaults,noatime,compress=zstd:6"
else
file_system_type="ext4"
uenv_mount_string="UUID=${ROOTFS_UUID} rootflags=data=writeback rw rootfstype=ext4"
fstab_mount_string="defaults,noatime,nodiratime,commit=600,errors=remount-ro"
fi
echo -e "${INFO} Input Type ID: [ ${filetype} ]"
echo -e "${INFO} Type of filesystem: [ ${file_system_type} ]"
}
# Project repository: https://github.com/7Ji/ampart
# Download from: https://github.com/7Ji/ampart/releases/download/v1.2/ampart-v1.2-aarch64-static.gz
# Function description: ampart is a partitioning tool which can modify the proprieary partition table on internal eMMC.
ampart_tool() {
# declare the partition layout
local snapshot_expected='data::-1:4'
# Note there's no quote around ${snapshot_expected}
ampart "${DEV_EMMC}" --mode dclone ${snapshot_expected} &>/dev/null
if ((${?})); then
# Handle the situation where ampart fails to change the layout
return 1
fi
local log="$(ampart "${DEV_EMMC}" --mode dsnapshot 2>/dev/null)"
if ((${?})); then
# Handle the situation where ampart fails to read the new partitions
return 2
fi
local snapshots
readarray -d $'\n' -t snapshots <<<"${log}"
# compare snapshots, 0 here refers to the decimal one
if [[ "${snapshots[0]}" == "${snapshot_expected}" ]]; then
# Successfully written the partitions
return 0
else
# Result partitions different, maybe should handle it
return 3
fi
}
# Create emmc partition
create_partition() {
cd /
echo -e "${STEPS} Partitioning eMMC..."
# Backup the bootloader, necessary for system recovery
[[ -d "/usr/lib/u-boot" ]] || mkdir -p /usr/lib/u-boot
MYBOX_UBOOT="/usr/lib/u-boot/mybox-bootloader.img"
[[ -f "${MYBOX_UBOOT}" ]] && rm -f ${MYBOX_UBOOT}
echo -e "${INFO} Start backing up the default bootloader."
dd if="${DEV_EMMC}" of="${MYBOX_UBOOT}" bs=1M count=4 conv=fsync
[[ "${?}" -eq "0" ]] || error_msg "Using dd to backup [ ${MYBOX_UBOOT} ] failed."
# Clear emmc disk data
exists_pts="$(parted ${DEV_EMMC} print 2>/dev/null | grep 'primary' | wc -l)"
if [[ "${exists_pts}" -gt "0" ]]; then
echo -e "${INFO} Delete the existing [ ${exists_pts} ] partitions."
i=1
while [[ "${i}" -le "${exists_pts}" ]]; do
umount -f ${DEV_EMMC}p${i} 2>/dev/null
parted -s ${DEV_EMMC} rm ${i}
[[ "${?}" -eq "0" ]] || error_msg "Failed to delete partition [ ${i} ]. Please try again."
let i++
done
fi
#dd if=/dev/zero of=${DEV_EMMC} bs=512 count=1 conv=fsync
# Use the ampart partition tool
AMPART_STATUS="no"
[[ -x "/usr/bin/ampart" && "${use_ampart}" == "yes" ]] && {
ampart_tool
[[ "${?}" -eq "0" ]] && AMPART_STATUS="yes" && echo -e "${STEPS} Successfully partitioned internal eMMC with amaprt."
}
# Set partition size (Unit: MiB)
if [[ "${AMPART_STATUS}" == "yes" ]]; then
BLANK1="117" # After using the ampart to part disk, space after [ 117 MiB ] could be used.
BOOT="512"
BLANK2="0"
elif [[ "${AMLOGIC_SOC}" == "s912" && "${boxid}" -eq "213" ]]; then
BLANK1="700" # OneCloudPro-V1.2
BOOT="512"
BLANK2="220"
elif [[ "${AMLOGIC_SOC}" == "s912" || "${AMLOGIC_SOC}" == "s905d" ]]; then
BLANK1="68"
BOOT="512"
BLANK2="220"
elif [[ "${AMLOGIC_SOC}" == "s905x" ]]; then
BLANK1="700"
BOOT="512"
BLANK2="0"
elif [[ "${AMLOGIC_SOC}" == "s905l3a" && "${boxid}" -eq "304" ]]; then
BLANK1="570" # e900v22c/d: The first [ 570 MiB ] is not writable.
BOOT="512"
BLANK2="0"
elif [[ "${AMLOGIC_SOC}" == "s905l3a" && "${boxid}" -eq "305" ]]; then
BLANK1="108" # CM311-1a-YST: Must skip [ 108 MiB ]
BOOT="512" # A total of [ 1024 MiB ] can be used in this block, gave up [ 1024-512=512 MiB ]
BLANK2="778" # Rootfs partition could be set after [ 1398 MiB ] of the total disk, Multi-backward offset 100 MiB, [ 1398-108-512=778 MiB ]
elif [[ "${AMLOGIC_SOC}" == "s905l3b" ]]; then
BLANK1="128" # https://github.com/janko888/MBH-M30xA
BOOT="513" # M302A/M304A, Compatible with Android 4 and Android 9 firmware
BLANK2="720"
elif [[ "${FDTFILE}" == "meson-sm1-skyworth-lb2004-a4091.dtb" ]]; then
BLANK1="108" # Tencent Aurora 3Pro: Must skip [ 108 MiB ]
BOOT="512" # A total of [ 768 MiB ] can be used in this block, gave up [ 768-512=256 MiB ]
BLANK2="562" # Rootfs partition could be set after [ 1182 MiB ] of the total disk, [ 1182-108-512=562 MiB ]
elif [[ "${boxid}" -eq "525" ]]; then
BLANK1="108" # Whale(S905X3): Must skip [ 108 MiB ]
BOOT="512" # A total of [ 1024 MiB ] can be used in this block, gave up [ 1024-512=512 MiB ]
BLANK2="650" # Rootfs partition could be set after [ 1270 MiB ] of the total disk, [ 1270-108-512=650 MiB ]
else
BLANK1="68"
BOOT="512" # S905x3: A total of [ 1120 MiB ] can be used in this block, and the remaining [ 608 MiB ] can be used.
BLANK2="770" # Rootfs partition could be set after [ 1350 MiB ] of the total disk.
fi
# Format emmc disk
echo -e "${INFO} Start create MBR and partittion."
parted -s "${DEV_EMMC}" mklabel msdos
parted -s "${DEV_EMMC}" mkpart primary fat32 $((BLANK1))MiB $((BLANK1 + BOOT - 1))MiB
parted -s "${DEV_EMMC}" mkpart primary ${file_system_type} $((BLANK1 + BOOT + BLANK2))MiB 100%
[[ "${?}" -eq "0" ]] || error_msg "Failed to partition internal eMMC using [ parted ]."
# Write bootloader
if [[ -n "${MAINLINE_UBOOT}" && -f "/usr/lib/u-boot/${MAINLINE_UBOOT}" && "${auto_mainline_uboot}" == "yes" ]]; then
echo -e "${INFO} 01. Write Mainline bootloader: [ ${MAINLINE_UBOOT} ]"
dd if="/usr/lib/u-boot/${MAINLINE_UBOOT}" of="${DEV_EMMC}" conv=fsync bs=1 count=444
dd if="/usr/lib/u-boot/${MAINLINE_UBOOT}" of="${DEV_EMMC}" conv=fsync bs=512 skip=1 seek=1
elif [[ -n "${BOOTLOADER_IMG}" && -f "/usr/lib/u-boot/${BOOTLOADER_IMG}" ]]; then
echo -e "${INFO} 02. Write Android bootloader: [ ${BOOTLOADER_IMG} ]"
dd if="/usr/lib/u-boot/${BOOTLOADER_IMG}" of="${DEV_EMMC}" conv=fsync bs=1 count=444
dd if="/usr/lib/u-boot/${BOOTLOADER_IMG}" of="${DEV_EMMC}" conv=fsync bs=512 skip=1 seek=1
elif [[ -n "${MYBOX_UBOOT}" && -f "${MYBOX_UBOOT}" ]]; then
echo -e "${INFO} 03. Write the mybox bootloader: [ ${MYBOX_UBOOT} ]"
dd if="${MYBOX_UBOOT}" of="${DEV_EMMC}" conv=fsync bs=1 count=444
dd if="${MYBOX_UBOOT}" of="${DEV_EMMC}" conv=fsync bs=512 skip=1 seek=1
fi
[[ "${?}" -eq "0" ]] || error_msg "Failed to write bootloader using [ dd ]."
}
# Copy bootfs partition files
copy_bootfs() {
cd /
echo -e "${STEPS} Processing BOOTFS partition..."
PART_BOOT="${DEV_EMMC}p1"
if grep -q ${PART_BOOT} /proc/mounts; then
echo -e "${INFO} Unmounting BOOT partiton."
umount -f ${PART_BOOT}
[[ "${?}" -eq "0" ]] || error_msg "Failed to umount [ ${PART_BOOT} ]."
fi
echo -e "${INFO} Formatting BOOTFS partition..."
mkfs.vfat -F 32 -n "BOOT_EMMC" ${PART_BOOT}
[[ "${?}" -eq "0" ]] || error_msg "Failed to format BOOTFS with [ mkfs.vfat ]."
mount -o rw ${PART_BOOT} ${DIR_INSTALL}
[[ "${?}" -eq "0" ]] || error_msg "Failed to mount BOOTFS partition."
echo -e "${INFO} Copying BOOTFS ..."
cp -rf /boot/* ${DIR_INSTALL}
# Remove useless files
rm -rf ${DIR_INSTALL}/'System Volume Information'
rm -f ${DIR_INSTALL}/s9*
rm -f ${DIR_INSTALL}/aml*
# Replace eMMC boot files
[[ -f "${DIR_INSTALL}/boot-emmc.scr" ]] && mv -f ${DIR_INSTALL}/boot-emmc.scr ${DIR_INSTALL}/boot.scr
[[ -f "${DIR_INSTALL}/boot-emmc.cmd" ]] && mv -f ${DIR_INSTALL}/boot-emmc.cmd ${DIR_INSTALL}/boot.cmd
[[ -f "${DIR_INSTALL}/boot-emmc.ini" ]] && mv -f ${DIR_INSTALL}/boot-emmc.ini ${DIR_INSTALL}/boot.ini
[[ -f "${DIR_INSTALL}/boot.ini" ]] && sed -i "s|u-boot.ext|u-boot.emmc|g" ${DIR_INSTALL}/boot.ini
# Update [ /boot/uEnv.txt ] settings
uenv_conf_file="${DIR_INSTALL}/uEnv.txt"
[[ -f "${uenv_conf_file}" ]] && {
echo -e "${INFO} Update the [ uEnv.txt ] file."
BOOT_CONF="uEnv.conf"
sed -i "s|root=.*console=ttyAML0|root=${uenv_mount_string} console=ttyAML0|g" ${uenv_conf_file}
sed -i "s|meson.*.dtb|${FDTFILE}|g" ${uenv_conf_file}
}
# Update [ /boot/extlinux/extlinux.conf ] settings
boot_extlinux_file="${DIR_INSTALL}/extlinux/extlinux.conf"
[[ -f "${boot_extlinux_file}" ]] && {
echo -e "${INFO} Update the [ extlinux.conf ] file."
BOOT_CONF="extlinux.conf"
sed -i "s|root=.*console=ttyAML0|root=${uenv_mount_string} console=ttyAML0|g" ${boot_extlinux_file}
sed -i "s|meson.*.dtb|${FDTFILE}|g" ${boot_extlinux_file}
}
# Copy u-boot.ext and u-boot.emmc
if { [[ "${NEED_OVERLOAD}" == "yes" || "${auto_mainline_uboot}" == "yes" ]]; } &&
{ [[ -n "${UBOOT_OVERLOAD}" && -f "${DIR_INSTALL}/${UBOOT_OVERLOAD}" ]]; }; then
echo -e "${INFO} Copy [ ${UBOOT_OVERLOAD} ] to u-boot.emmc"
if [[ -f "${DIR_INSTALL}/u-boot.ext" ]]; then
cp -f ${DIR_INSTALL}/u-boot.ext ${DIR_INSTALL}/u-boot.emmc
else
cp -f ${DIR_INSTALL}/${UBOOT_OVERLOAD} ${DIR_INSTALL}/u-boot.ext
cp -f ${DIR_INSTALL}/${UBOOT_OVERLOAD} ${DIR_INSTALL}/u-boot.emmc
fi
chmod +x ${DIR_INSTALL}/u-boot.ext
chmod +x ${DIR_INSTALL}/u-boot.emmc
fi
sync && sleep 3
umount -f ${DIR_INSTALL}
[[ "${?}" -eq "0" ]] || error_msg "Failed to umount [ ${DIR_INSTALL} ]."
}
# Copy rootfs partition files
copy_rootfs() {
cd /
echo -e "${STEPS} Start processing the rootfs partition..."
PART_ROOT="${DEV_EMMC}p2"
if grep -q ${PART_ROOT} /proc/mounts; then
echo -e "${INFO} Unmounting ROOT partiton."
umount -f ${PART_ROOT}
[[ "${?}" -eq "0" ]] || error_msg "Failed to umount [ ${PART_ROOT} ]."
fi
echo -e "${INFO} Formatting ROOTFS ..."
if [[ "${file_system_type}" == "btrfs" ]]; then
mkfs.btrfs -f -U ${ROOTFS_UUID} -L "ROOTFS_EMMC" -m single ${PART_ROOT}
[[ "${?}" -eq "0" ]] || error_msg "Failed to format ROOTFS with [ mkfs.btrfs ]"
mount -t btrfs -o compress=zstd:6 ${PART_ROOT} ${DIR_INSTALL}
[[ "${?}" -eq "0" ]] || error_msg "Failed to mount ROOTFS."
else
mkfs.ext4 -F -q -U ${ROOTFS_UUID} -L "ROOTFS_EMMC" -b 4k -m 0 ${PART_ROOT}
[[ "${?}" -eq "0" ]] || error_msg "Failed to format ROOTFS with [ mkfs.ext4 ]"
mount -t ext4 ${PART_ROOT} ${DIR_INSTALL}
[[ "${?}" -eq "0" ]] || error_msg "Failed to mount ROOTFS partition."
fi
echo -e "${INFO} Copying ROOTFS ..."
# Create relevant directories
mkdir -p ${DIR_INSTALL}/{boot/,dev/,media/,mnt/,proc/,run/,sys/,tmp/}
chmod 777 ${DIR_INSTALL}/tmp
# Copy the relevant directory
COPY_SRC="etc home opt root selinux srv usr var"
for src in ${COPY_SRC}; do
echo -e "${INFO} Copying [ ${src} ] ..."
tar -cf - ${src} | (
cd ${DIR_INSTALL}
tar -mxf -
)
done
# Create relevant symbolic link
ln -sf /usr/bin ${DIR_INSTALL}/bin
ln -sf /usr/lib ${DIR_INSTALL}/lib
ln -sf /usr/sbin ${DIR_INSTALL}/sbin
echo -e "${INFO} Generate the new fstab file."
rm -f ${DIR_INSTALL}/etc/fstab
cat >${DIR_INSTALL}/etc/fstab <<EOF
UUID=${ROOTFS_UUID} / ${file_system_type} ${fstab_mount_string} 0 1
LABEL=BOOT_EMMC /boot vfat defaults 0 2
tmpfs /tmp tmpfs defaults,nosuid 0 0
EOF
echo -e "${INFO} Update parameters related to the releases file."
ophub_release_file="${DIR_INSTALL}${ophub_release_file}"
sed -i "s|^MODEL_ID=.*|MODEL_ID='${boxid}'|g" ${ophub_release_file}
sed -i "s|^MODEL_NAME=.*|MODEL_NAME='${MODEL_NAME}'|g" ${ophub_release_file}
sed -i "s|^SOC=.*|SOC='${AMLOGIC_SOC}'|g" ${ophub_release_file}
sed -i "s|^FDTFILE=.*|FDTFILE='${FDTFILE}'|g" ${ophub_release_file}
sed -i "s|^MAINLINE_UBOOT=.*|MAINLINE_UBOOT='/usr/lib/u-boot/${MAINLINE_UBOOT}'|g" ${ophub_release_file}
sed -i "s|^BOOTLOADER_IMG=.*|BOOTLOADER_IMG='/usr/lib/u-boot/${BOOTLOADER_IMG}'|g" ${ophub_release_file}
sed -i "s|^UBOOT_OVERLOAD=.*|UBOOT_OVERLOAD='${UBOOT_OVERLOAD}'|g" ${ophub_release_file}
sed -i "s|^ROOTFS_TYPE=.*|ROOTFS_TYPE='${file_system_type}'|g" ${ophub_release_file}
sed -i "s|^BOOT_CONF=.*|BOOT_CONF='${BOOT_CONF}'|g" ${ophub_release_file}
sed -i "s|^DISK_TYPE=.*|DISK_TYPE='emmc'|g" ${ophub_release_file}
sed -i "s|^MLUBOOT_STATUS=.*|MLUBOOT_STATUS='${auto_mainline_uboot}'|g" ${ophub_release_file}
sed -i "s|^AMPART_STATUS=.*|AMPART_STATUS='${AMPART_STATUS}'|g" ${ophub_release_file}
# Update the MAC address for the wireless network card
echo -e "${INFO} Update the MAC address for the wireless network card."
find "${DIR_INSTALL}/lib/firmware" \
-type f -name "*.txt" ! -xtype l \
-exec grep -q '^macaddr=.*' {} \; \
-exec sh -c '
new_mac=$(openssl rand -hex 6 | sed "s/\(..\)/\1:/g; s/.$//; s/^./2/")
sed -i "s/^macaddr=.*/macaddr=${new_mac}/" "${1}"
' _ {} \; 2>/dev/null
# Remove useless scripts
rm -f ${DIR_INSTALL}/usr/sbin/armbian-tf
rm -f ${DIR_INSTALL}/root/.no_rootfs_resize
sync && sleep 3
umount -f ${DIR_INSTALL}
[[ "${?}" -eq "0" ]] || error_msg "Failed to umount [ ${DIR_INSTALL} ]."
}
# Check script permission
[[ "$(id -u)" == "0" ]] || error_msg "Please run this script as root: [ sudo $0 ]"
echo -e "${STEPS} Installing Armbian to internal eMMC..."
# Check dependencies
check_depends
# Initialize all variables
init_var "${@}"
# Display the model list
show_aml_model
# Set the type of file system
set_rootfs_type
# Create emmc partition
create_partition
# Copy bootfs partition files
copy_bootfs
# Copy rootfs partition files
copy_rootfs
echo -e "${SUCCESS} Installation successful. Run [ poweroff ], remove the installation media then re-insert the power supply to boot new system."
exit 0