Jump to content


LraiZer

Member Since 31 Jul 2010
Offline Last Active 12 Dec 2023 20:22
-----

Posts I've Made

In Topic: Packing / unpacking IPK’s.

12 December 2023 - 20:09

@Abu Baniaz
The updated unpack and repack scripts test out just fine for me with ABM.
I unpacked ABM ipk, removed depend line from control, repacked ABM ipk.
Then removed ABM from stb, and installed repacked AMB ipk. New repacked AMB runs ok.
root@xpeedlx3:/tmp# opkg --force-depends remove enigma2-plugin-systemplugins-autobouquetsmaker
Removing enigma2-plugin-systemplugins-autobouquetsmaker (3.3+git1031+41c51a4) from root...
root@xpeedlx3:/tmp# opkg install *.ipk
Installing enigma2-plugin-systemplugins-autobouquetsmaker (3.4+git1049+b7d2824)on root.
Checking for an ABM cache file
No cache file found, continuing.
Configuring enigma2-plugin-systemplugins-autobouquetsmaker.

Here are new updated scripts and Ubuntu prerequisites:

sudo apt-get install binutils fakeroot

In Topic: Packing / unpacking IPK’s.

11 December 2023 - 21:49

Also change the file order in repack script so that archive manager in ubuntu can open the ipk. Its fussy that way!
 
FROM
cd $DIRNAME/$IPKNAME && ar -r $BASENAME *.tar.gz debian-binary

TO

cd $DIRNAME/$IPKNAME && ar -r $BASENAME debian-binary *.tar.gz

In Topic: Packing / unpacking IPK’s.

11 December 2023 - 21:22

I'm sure this updated info has been posted somewhere before..

 

Scripts just need updating to detect tar.xz archives as well as old tar.gz

New .ipk will still be repacked as .gz not .xz

 

Make sure fakeroot is also installed:

sudo apt-get install fakeroot

Then install the two scripts in nautilus script folder as normal, and make the following edit in both the unpack and repack script.

 

CHANGE

for f in *.tar.gz

TO

for f in *.tar.*z

In Topic: Channellist from ftp

15 October 2023 - 21:02

upload .sh script to box and make executable.

 

/usr/script/mydownloadscript.sh
 
or with .hidden. marker
 
/usr/script/mydownloadscript.hidden.sh
assign script to yellow key:
 
menu > setup > system > expert settings > hotkey > yellow > shellscripts > mydownloadscript.sh

In Topic: Back to the discussion about EIT and the possibility of obtaining a guide dir...

13 September 2023 - 23:02

As far as i am aware, polsat epg for VOD is just standard EIT data for a day or so. If you are only getting now/next, then you must be only getting 0x4e table data somehow?

 

Best to first zap to VOD202 and then just read the [Event Information Table (EIT) - actual transport stream, schedule] data on table 0x50 with dvbsnoop to see what is there!

dvbsnoop -nph -pd 4 -n 100 0x12 -f 0x50 -m 0xff >/tmp/eit_actual_schedule.txt

You can try zap to VOD202 and read the cached epg for this service to an xml file using the web api on you box also as a test...

wget -q -O - http://127.0.0.1/web/zap?sRef=1:0:1:3C:1964:13E:820000:0:0:0
wget -q -O - http://127.0.0.1/web/epgservice?sRef=1:0:1:3C:1964:13E:820000:0:0:0 >/tmp/vod202.xml