Enigma2
openatv-gui
Install / Use
/learn @openatv/Enigma2README
OpenATV 7.6
Build status
Active Build Status - shows which box is currently being built
SonarCloud status
Translation status
Build server specs
Current OS
Ubuntu 24.04.1 (GNU/Linux 6.8.0-51-generic x86_64)
Hardware requirements
RAM: 16GB
SWAP: 8GB
CPU: CPU: Multi-Core/Multi-Threaded
Storage: 250 GB free for a single build; 500 GB+ for multi-builds
Git repositories involved
- OE Alliance Core - Core framework
- OpenATV 7.6 - OpenATV core
- MetrixHD - Default OpenATV skin
- OpenWebif - OpenWebif
- OE Alliance Plugins - OE Alliance Plugins
- Enigma2 Plugins - Enigma2 Plugins
- E2OpenPlugins - E2OpenPlugins
- ...
DOXYGEN Documentation
- OpenATV enigma2 - OpenATV core
Build instructions
-
Install required packages
sudo apt-get install -y python3-html5lib autoconf automake bison bzip2 chrpath cmake coreutils cpio curl cvs debianutils default-jre default-jre-headless diffstat flex g++ gawk gcc gcc-12 gcc-multilib g++-multilib gettext git gzip help2man info iputils-ping java-common libc6-dev libc6-dev-i386 libglib2.0-dev libncurses-dev libperl4-corelibs-perl libproc-processtable-perl libsdl1.2-dev libserf-dev libtool libxml2-utils make ncurses-bin patch perl pkg-config psmisc python3 python3-git python3-jinja2 python3-pexpect python3-pip python3-setuptools quilt socat sshpass subversion tar texi2html texinfo unzip wget xsltproc xterm xz-utils zip zlib1g-dev zstd fakeroot lz4 git-lfs -
Set
python3as preferred provider forpythonsudo update-alternatives --install /usr/bin/python python /usr/bin/python2 1 sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 2 sudo update-alternatives --config python ↳ Select python3 -
Set your shell to
/bin/bashsudo ln -sf /bin/bash /bin/sh -
Modify
max_user_watchesecho fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf sudo sysctl -n -w fs.inotify.max_user_watches=524288 -
Modify AppArmor config.
echo 'kernel.apparmor_restrict_unprivileged_userns=0' | sudo tee /etc/sysctl.d/60-apparmor-namespace.conf > /dev/null && sudo sysctl --system sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0 -
Add new user
openatvbuildersudo adduser openatvbuilder -
Switch to new user
openatvbuildersu - openatvbuilder -
Add your git user and email
git config --global user.email "you@example.com" git config --global user.name "Your Name" -
Create folder openatv7.6
mkdir -p openatv7.6 -
Switch to folder openatv7.6
cd openatv7.6 -
Clone oe-alliance repository
git clone https://github.com/oe-alliance/build-enviroment.git -b 5.6 -
Switch to folder build-enviroment
cd build-enviroment -
Update build-enviroment
make update -
Finally, you can either:
-
Download all sources
MACHINE=zgemmah9combo DISTRO=openatv DISTRO_TYPE=release make download -
Build an image with feed (build time 5-12h)
MACHINE=zgemmah9combo DISTRO=openatv DISTRO_TYPE=release make image -
Build an image without feed (build time 1-2h)
MACHINE=zgemmah9combo DISTRO=openatv DISTRO_TYPE=release make enigma2-image -
Build the feeds
MACHINE=zgemmah9combo DISTRO=openatv DISTRO_TYPE=release make feeds -
Build specific packages
MACHINE=zgemmah9combo DISTRO=openatv DISTRO_TYPE=release make init cd builds/openatv/release/zgemmah9combo/ source env.source bitbake nfs-utils rpcbind ...

