OpenAZBox PLi MOD HD Release - 1 -

pe.tardo

Registered
Messages
140
New release for AZbox HD models (not PRE-release frw)...
Traveler said:
OpenAZBox PLi MOD HD Release - 1 -

Enigma 2 of 14. november

Kernel 3.5.5

What is new:

- Fixed khdmi issues on all models

- Fixed i2c issues on all models

- Fixed "tune" problems on Ultra and Premium+

- Fixed blindscan in Premium+, Ultra, Me and MiniMe

- SPDIF Enabled

- Added AC3/DTS downmix Yes/No switch in A/V Settings (all models)

- Fix and additions in AZPlay:

Add scalling
Add Audio lang. sel
Add Subtitle lang. sel
Add set volume/mute after switching
Add right filter for extension
extended window , now you can see more info (large names od files)
Increase font size to max 90
change way to show parameters in setup menu - now all is sorted
STOP command now completly close player and jump to filelist
Fix BUG - show prev. subtitle if you use more then one video
Add : mts extension
Add : ac3 extension
Add change value from setup menu in real time
Fix BUG - Green screan , when you doenst setup tuners
Fix problem with changing parameters (fix in rmfp_player)
Add - show infobar when play ts , mts, ac3 files - without time info/index

What is comming next:

- USB DVB-T Support (all models)

- AzIPTV (Fully based on AZPlay, better compatibility with all kind of streams)

- CI Support (OLD models)

Download:


Please be sure that You are using AZUp 2.7!
 

gorski

Registered
Messages
1,553
Let's test... But!

DTS works fine?

TS files?

VOB files played straight from VIDEO_TS file?

And plugins...

Like CrossEPG - is it OK? Or do we use something else?

DDsubtitler OK?

1Channel?

Flash Expander for those with smaller DOM?

Now, if you have a larger DOM I better repeat this, in case you have missed it: one can now safely enlarge your Enigma2, SWAP and add /cf partition.

Install E2 first, then run this script and you will have plenty of space for all your plugins, emus, skins, EPG, picons, scripts, subtitle files and whichever debauchery you can think of...
biggrin.gif
)

Thanx to Fabry's script I can now copy the DOM contents to a USB stick, then resize the partitions according to my needs (larger E2 partition for more stuff on it, without it being clogged up), then return the content to DOM. Fabry's script has to be modified only slightly, depending on the mounted USB device, in my case dev/sda1 = media/usb:

Code:
/dev/sda1             1         64     514048+ 83 Linux

The script to do it with looks like this, in my case (you will have to edit the second line according to your mounts, whether it's usb or hdd and if it is dev/sda1 or something else etc.):

Code:
mkdir usb
mount -o noatime /dev/sda1 usb
mkdir dom
mount -o noatime /dev/hda1 dom
cd usb
mkdir backup
cd backup
mkdir dom
cd /home/root
cp -a dom/* usb/backup/dom/
umount dom
echo ",512,83" > hda.out
echo ",4,83" **** hda.out
echo ",128,82" **** hda.out
echo ",,5" **** hda.out
echo ",,83" **** hda.out
sfdisk -f -uM /dev/hda < hda.out
mkfs.ext3 /dev/hda1 -b 4096 -E stride=96
mkfs.ext3 /dev/hda2 -b 4096 -E stride=96
mkswap /dev/hda3
mkfs.ext3 /dev/hda5 -b 4096 -E stride=96
sync
mount -o noatime /dev/hda1 dom
cp -a usb/backup/dom/* dom/
sync
umount usb
umount dom
reboot -f

Results:

Code:
Powered by Opensat
Linux/mips 3.5.5-opensat

# mkdir usb
# mount -o noatime /dev/sda1 usb
# mkdir dom
# mount -o noatime /dev/hda1 dom
# cd usb
# mkdir backup
# cd backup
# mkdir dom
# cd /home/root
# cp -a dom/* usb/backup/dom/
# umount dom
# echo ",512,83" > hda.out
# echo ",4,83" **** hda.out
# echo ",128,82" **** hda.out
# echo ",,5" **** hda.out
# echo ",,83" **** hda.out
# sfdisk -f -uM /dev/hda < hda.out
Checking that no-one is using this disk right now ...
OK

Disk /dev/hda: 1942 cylinders, 16 heads, 63 sectors/track
Old situation:
Units = mebibytes of 1048576 bytes, blocks of 1024 bytes, counting from 0

Device Boot Start End MiB #blocks Id System
/dev/hda1         0+ 183- 184- 187487+ 83 Linux
/dev/hda2     183+ 187-     5-     4536 83 Linux
/dev/hda3     187+ 245- 59-     59472 82 Linux swap / Solaris
/dev/hda4     245+ 955- 711- 727272 5 Extended
/dev/hda5     245+ 955- 711- 727271+ 83 Linux
New situation:
Units = mebibytes of 1048576 bytes, blocks of 1024 bytes, counting from 0

Device Boot Start End MiB #blocks Id System
/dev/hda1         0+ 512- 513- 524663+ 83 Linux
/dev/hda2     512+ 516-     5-     4536 83 Linux
/dev/hda3     516+ 645- 129- 131544 82 Linux swap / Solaris
/dev/hda4     645+ 955- 311- 318024 5 Extended
/dev/hda5     645+ 955- 311- 318023+ 83 Linux
Warning: no primary partition is marked bootable (active)
This does not matter for LILO, but the DOS MBR will not boot this disk.
Successfully wrote the new partition table

Re-reading the partition table ...

If you created or changed a DOS partition, /dev/foo7, say, then use dd(1)
to zero the first 512 bytes: dd if=/dev/zero of=/dev/foo7 bs=512 count=1
(See fdisk(8).)
# mkfs.ext3 /dev/hda1 -b 4096 -E stride=96
mke2fs 1.41.12 (17-May-2010)
warning: 93 blocks unused.

Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=96 blocks, Stripe width=0 blocks
32832 inodes, 131072 blocks
6558 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=134217728
4 block groups
32768 blocks per group, 32768 fragments per group
8208 inodes per group
Superblock backups stored on blocks:
    32768, 98304

Writing inode tables: done
Creating journal (4096 blocks): done
Writing superblocks and filesystem accounting information: done

This filesystem will be automatically checked every 38 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
# mkfs.ext3 /dev/hda2 -b 4096 -E stride=96
mke2fs 1.41.12 (17-May-2010)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=96 blocks, Stripe width=0 blocks
1152 inodes, 1134 blocks
56 blocks (4.94%) reserved for the super user
First data block=0
1 block group
32768 blocks per group, 32768 fragments per group
1152 inodes per group

Writing inode tables: done

Filesystem too small for a journal
Writing superblocks and filesystem accounting information: done

This filesystem will be automatically checked every 28 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
# mkswap /dev/hda3
Setting up swapspace version 1, size = 134696960 bytes
UUID=7349eff7-f42c-42d9-ab6d-f58403b9793d
# mkfs.ext3 /dev/hda5 -b 4096 -E stride=96
mke2fs 1.41.12 (17-May-2010)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=96 blocks, Stripe width=0 blocks
79584 inodes, 79505 blocks
3975 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=83886080
3 block groups
32768 blocks per group, 32768 fragments per group
26528 inodes per group
Superblock backups stored on blocks:
    32768

Writing inode tables: done
Creating journal (4096 blocks): done
Writing superblocks and filesystem accounting information: done

This filesystem will be automatically checked every 26 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
# sync
# mount -o noatime /dev/hda1 dom
# cp -a usb/backup/dom/* dom/
# sync
# umount usb
# umount dom
# reboot -f

After the (successful E2) reboot, the partition table looked like this:

Code:
# fdisk -l

Disk /dev/hda: 1002 MB, 1002258432 bytes
16 heads, 63 sectors/track, 1942 cylinders
Units = cylinders of 1008 * 512 = 516096 bytes

Device Boot     Start         End     Blocks Id System
/dev/hda1             1     1041     524663+ 83 Linux
/dev/hda2         1042     1050     4536 83 Linux
/dev/hda3         1051     1311     131544 82 Linux swap
/dev/hda4         1312     1942     318024 5 Extended
/dev/hda5         1312     1942     318023+ 83 Linux

Disk /dev/mtdblock0: 8 MB, 8388608 bytes
255 heads, 63 sectors/track, 1 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

So, now I have:

1/2 GB hda1 = E2 partition - meaning, lots of space to experiment with emus, skins, plugins and whatnot...
4 MB hda2 = who knows what this is for???
128 MB hda3 = SWAP partition - when big updates are available, this makes them possible...
over 300MB of hda4/5 = extended partition, where /cf is, where one directs EPG, picons, subtitles etc. (via HD Glass skin etc.)

I can't wait for PB VX E2 image, to really assess it all!!! :thum:

====================================

And do the updates, immediately after the installation...

Don't expect miracles...
 
Last edited:
Top