Skip to content

Commit

Permalink
Add compatibility with syno_hw_version DS216j-j. (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
gioxx committed May 12, 2023
1 parent 6b31d71 commit ced07ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions test/get_arch.bats
Expand Up @@ -77,6 +77,7 @@ setup() {
run get_arch armv7 DS216play; [[ "$output" == "armv7hf_neon" ]]
run get_arch armv7 DS216play-j; [[ "$output" == "armv7hf_neon" ]]
run get_arch armv7 DS216j; [[ "$output" == "armv7hf_neon" ]]
run get_arch armv7 DS216j-j; [[ "$output" == "armv7neon" ]]
run get_arch armv7 DS216se; [[ "$output" == "armv7hf" ]]
run get_arch armv7 DS116; [[ "$output" == "armv7hf_neon" ]]
}
Expand Down
1 change: 1 addition & 0 deletions update-plex.sh
Expand Up @@ -210,6 +210,7 @@ function get_arch() {
model_machine_map[DS115j]=armv7hf
model_machine_map[RS815]=armv7hf
model_machine_map[DS216se]=armv7hf
model_machine_map[DS216j-j]=armv7neon
model_machine_map[DS215jv10-j]=armv7hf_neon
if [[ "${model_machine_map[$hw_version]+_}" ]]; then
arch=${model_machine_map[$hw_version]}
Expand Down

0 comments on commit ced07ed

Please sign in to comment.