Yes so what it will be the exactly code to add .You mean so you don't have to install it afterwards?
Create an openpli-enigma2-image.bbappend in your meta_local, and add it to IMAGE_INSTALL ?
Edited by levi45@, 10 October 2024 - 18:57.
Posted 10 October 2024 - 19:05
Something like
IMAGE_INSTALL += " wget"
?
Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)
Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.
Many answers to your question can be found in our new and improved wiki.
Posted 11 October 2024 - 17:43
Where you have to put it depends on what is defined in your layer.conf, in meta-local.
By default, it uses
BBFILES += "${LAYERDIR}/recipes-*/*/*.bb ${LAYERDIR}/recipes-*/*/*.bbappend"
which means it should be something like "openpli-oe-core/meta-local/recipes-<something>/<something>/openpli-enigma2-image.bbappend".
Using OE standards, I would suggest "openpli-oe-core/meta-local/recipes-openpli/images/openpli-enigma2-image.bbappend", as that is where the bb you are going to append to is, in meta-openpli.
Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)
Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.
Many answers to your question can be found in our new and improved wiki.
Posted 11 October 2024 - 18:44
I have no clue what you mean. There is no relation between adding a package to the image and feeds (which are files that are downloaded from your feed server).
I assume you haven't patched or otherwise changed wget, as opkg uses wget to download feed index and package files, so you can't fiddle with it.
What happens if you do an "opkg update" on the commandline?
Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)
Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.
Many answers to your question can be found in our new and improved wiki.
Posted 11 October 2024 - 18:50
I have no clue what you mean. There is no relation between adding a package to the image and feeds (which are files that are downloaded from your feed server).
I assume you haven't patched or otherwise changed wget, as opkg uses wget to download feed index and package files, so you can't fiddle with it.
What happens if you do an "opkg update" on the commandline?
So what i try to say is if i not include wget to image on build all feeds working fine . But if i build image with wget then i cant access to my feeds , only small amount feeds shows like screenshots above post. This screen shots on this post i have removed wget via telnet then all my feeds are back .
1.jpg 70.5KB
1 downloads
Posted 11 October 2024 - 19:00
... as opkg uses wget to download feed index and package files, so you can't fiddle with it.
What happens if you do an "opkg update" on the commandline?
If wget doesn't work for whatever reason, opkg can't download the feed index files.
Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)
Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.
Many answers to your question can be found in our new and improved wiki.
Posted 11 October 2024 - 19:02
... as opkg uses wget to download feed index and package files, so you can't fiddle with it.
What happens if you do an "opkg update" on the commandline?
with wget installed on image then i get
this is from my feeds
opkg_download_backend: Failed to download myfeed/Packages.gz, wget returned 8.
but no issue with openpli feeds, only my feeds not showing or giving error
this from openpli feeds
Downloading http://downloads.ope...ons/Packages.gz.
Updated source 'openpli-picons'.
Edited by levi45@, 11 October 2024 - 19:07.
Posted 11 October 2024 - 19:46
Yes,
Normally, wget is supplied by busybox, which provides a subset of wget functionality with a small footprint. The wget package contains the full GNU wget, and when you install it, it replaces the busybox version (which is what update-alternatives does).
opkg_download_backend: Failed to download myfeed/Packages.gz, wget returned 8.
an exit status of 8 means "Server issued an error response".
This could be a 403 or 404 in case of server issues, but I've also seen it when you use https, and the box can't verify the certificate (old ca-certificates file, or CA not supported in ca-certificates, which can happen with lets encrypt or cheap SSL providers).
Also, I would expect a full URL in that error, not only "myfeed/Packages.gz". Unless you've edited the response, your feed config is wrong.
Edited by WanWizard, 11 October 2024 - 19:48.
Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)
Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.
Many answers to your question can be found in our new and improved wiki.
Posted 12 October 2024 - 09:48
Nothing wrong with update-alternatives. You install wget, and it replaces the internal wget when you do.
I told you how you what could be a potential issuie and how you could debug it, haven't seen you do that yet.
Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)
Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.
Many answers to your question can be found in our new and improved wiki.
Posted 12 October 2024 - 12:12
Nothing wrong with update-alternatives. You install wget, and it replaces the internal wget when you do.
I told you how you what could be a potential issuie and how you could debug it, haven't seen you do that yet.
Hi thanks for your posts and advice , now i have find the issue . Its it was a cheap dns provider . So nothing was wrong with OpenPli image team or files.
Posted 12 October 2024 - 13:59
Good you've got it sorted, and thanks for the feedback.
Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)
Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.
Many answers to your question can be found in our new and improved wiki.
Posted 11 November 2024 - 22:13
Also seams like https://source.mynon...20190429.tar.gz off line too.
Posted Yesterday, 02:53
That is OE-A's ftp server, and they've decided to delete those files as they no longer use them. Not really interested in the impact on others...
I have sorted that out for our scarthgap build, I still have to do it for our develop build, but it is not going to be easy to change that for release images as in most cases, the BSP can't be updated without introducing compatibility issues.
You might have to change the submodule locally, see https://github.com/O...b3455ab30f3abeb for the required changes.
Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)
Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.
Many answers to your question can be found in our new and improved wiki.
Posted Yesterday, 18:12
That is OE-A's ftp server, and they've decided to delete those files as they no longer use them. Not really interested in the impact on others...
I have sorted that out for our scarthgap build, I still have to do it for our develop build, but it is not going to be easy to change that for release images as in most cases, the BSP can't be updated without introducing compatibility issues.
You might have to change the submodule locally, see https://github.com/O...b3455ab30f3abeb for the required changes.
Thank you for the solution now i have bypass this issue
0 members, 8 guests, 0 anonymous users