-
-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing complete alpine installation support (3x DiskStation models with 7.2) #49
Comments
(DS715) The Annapurna Labs Alpine AL-314 is a quad-core ARM Cortex-A15 processor. $ readelf -A /proc/self/exe | grep VFP readelf is provided by "SynoCli Development Tools" package Also questionable is: |
cat /proc/cpuinfoprocessor : 0 |
Thank you for bringing this to my attention. The '15 and '16 series cannot use DSM 7.2.2 so the only affected models are the DS1517, DS1817 and DS416. DS1817 platform_name="alpine" When I look at the spk download urls from https://www.synology.com/en-global/support/download for those 3 models the url is for the armv7 spk file. So I need to translate "alpine" and "alpine4k" to "armv7". |
What does |
Hi Dave, My request is not read at all!? |
|
I read all your comments. I didn't see any request. To install the armada38x package on a Synology with an alpine CPU would require:
I've not been able to successfully do step 3. I tried for my first version of my ContainerManager_for_all_armv8 and the spk file caused a "Invalid file format. Contact the package developer." error. The alternative would be to:
My ContainerManager_for_all_armv8 does the same thing, except it's only changing the NAS model and not the platform name. In step 1 I may also have to change |
Yes, that's right, I know all of this before. Please also implement your alternative. |
How can I just install the Videostation and Media Extensions? found it myself: |
First run these is as root or sudo #!/bin/bash
# Backup synopackageslimit.conf if needed
if [[ ! -f /etc.defaults/synopackageslimit.conf.bak ]]; then
cp -p /etc.defaults/synopackageslimit.conf /etc.defaults/synopackageslimit.conf.bak
fi
# Make DSM let us install the Video Station version we want
/usr/syno/bin/synosetkeyvalue /etc.defaults/synopackageslimit.conf VideoStation "3.1.0-3153"
/usr/syno/bin/synosetkeyvalue /etc/synopackageslimit.conf VideoStation "3.1.0-3153"
# Make DSM let us install the Media Extensions version we want
/usr/syno/bin/synosetkeyvalue /etc.defaults/synopackageslimit.conf CodecPack "3.1.0-3005"
/usr/syno/bin/synosetkeyvalue /etc/synopackageslimit.conf CodecPack "3.1.0-3005" Then do a manual package install of these:
Next we need to edit their version numbers to prevent package center trying to update them. Run as root or sudo. sudo synosetkeyvalue /var/packages/CodecPack/INFO version "30.1.0-3005"
sudo synosetkeyvalue /var/packages/VideoStation/INFO version "30.1.0-3153" |
uname -m
armv7l
platform_name
alpine
The text was updated successfully, but these errors were encountered: