Skip to content

Commit

Permalink
v9.1
Browse files Browse the repository at this point in the history
- ROCK 4 | Try to fix support for ROCK 4SE
  • Loading branch information
MichaIng committed Feb 14, 2024
1 parent d569675 commit f1fa83c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .build/images/dietpi-build
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ case $HW_MODEL in
'68.2') iname='NanoPCT4' HW_ARCH=3 partition_start=16 root_size=880;;
'68.3') iname='NanoPiNEO4' HW_ARCH=3 partition_start=16 root_size=880;;
70) iname='SparkySBC' HW_ARCH=2 partition_start=8 boot_size=48 root_size=712 boot_fstype='fat16';;
72) iname='ROCKPi4' HW_ARCH=3 partition_start=16 root_size=880;;
'72.1') iname='ROCKPi4' HW_ARCH=3 partition_start=16 root_size=880;;
'72.2') iname='ROCK4SE' HW_ARCH=3 partition_start=16 root_size=880;;
73) iname='ROCKPiS' HW_ARCH=3 partition_start=16 root_size=880;;
74) iname='RadxaZero' HW_ARCH=3 partition_start=4 root_size=892;;
75) iname='Container' HW_ARCH=${HW_ARCH:-10} root_size=447;;
Expand Down
9 changes: 7 additions & 2 deletions .build/images/dietpi-installer
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,8 @@ _EOF_
'47' ': NanoPi R4S'
'76' ': NanoPi R5S/R5C'
'79' ': NanoPi 6 series'
'72' ': ROCK 4'
'72.1' ': ROCK 4'
'72.2' ': ROCK 4 SE'
'73' ': ROCK Pi S'
'74' ': Radxa Zero'
'77' ': ROCK 3A'
Expand Down Expand Up @@ -1080,7 +1081,11 @@ _EOF_
3) model='nanopineo4';;
*) model='nanopct4';;
esac;;
72) model='rockpi-4b' kernel='rockchip64';;
72) kernel='rockchip64'
case $HW_VARIANT in
1) model='rockpi-4b';;
*) model='rock-4se';;
esac;;
73) model='rockpi-s' kernel='rockchip64';;
74) model='radxa-zero';;
77) model='rock-3a' kernel='rockchip64';;
Expand Down

0 comments on commit f1fa83c

Please sign in to comment.