├── Makefile ├── PlymouthThemes └── plymouth-theme-xbmc-logo │ ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── install │ ├── postinst │ ├── postrm │ └── rules │ └── lib │ └── plymouth │ └── themes │ └── xbmc-logo │ ├── password_field.png │ ├── password_field16.png │ ├── progress_dot_off.png │ ├── progress_dot_off16.png │ ├── progress_dot_on.png │ ├── progress_dot_on16.png │ ├── xbmc-logo.plymouth │ ├── xbmc-logo.script │ ├── xbmc_logo.png │ └── xbmc_logo16.png ├── README ├── SDK ├── README.txt ├── Tools │ └── cloneLiveHelper.sh ├── build.sh ├── buildDEBs │ ├── build-installer.sh │ ├── build-live-boot.sh │ ├── build-live-config.sh │ ├── build.sh │ ├── mkDeb.sh │ └── xbmclive-installhelpers │ │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── install │ │ └── rules │ │ ├── finish-install.d │ │ ├── 07copySources │ │ ├── 14runHooks │ │ ├── 92setLiveUser │ │ └── 93modifyGrubMenu │ │ └── post-base-installer.d │ │ └── 91deleteLiveUser ├── buildHook-HybridImage.sh ├── buildHook-intelOnly.sh ├── buildHook-liveOnly.sh ├── buildHook-nvidiaOnly.sh ├── buildHook-proposed.sh ├── buildHook-usbhddImage.sh ├── buildHook-xbmcSvn.sh ├── buildHook-xswat.sh ├── buildLive │ ├── Files │ │ └── config │ │ │ ├── archives │ │ │ ├── pulse-eight.chroot │ │ │ ├── pulse-eight.key │ │ │ ├── pulse-eight.key.chroot │ │ │ ├── pulse-eight.list │ │ │ ├── tvheadend.chroot │ │ │ ├── tvheadend.key │ │ │ ├── tvheadend.key.chroot │ │ │ ├── tvheadend.list │ │ │ ├── ubuntu.list │ │ │ ├── xbmc-svn.chroot │ │ │ ├── xbmc-svn.key │ │ │ ├── xbmc-svn.key.chroot │ │ │ ├── xbmc-svn.list │ │ │ ├── xbmc.chroot │ │ │ ├── xbmc.key │ │ │ ├── xbmc.key.chroot │ │ │ └── xbmc.list │ │ │ ├── binary_debian-installer │ │ │ ├── preseed.cfg │ │ │ └── udeb_exclude │ │ │ ├── binary_grub │ │ │ ├── grub.cfg │ │ │ └── splash.tga │ │ │ ├── hooks │ │ │ ├── 002-setGLDrivers.chroot │ │ │ ├── 003-setLocales.chroot │ │ │ ├── 004-setTimeZone.chroot │ │ │ ├── 005-changeAdduserDefaults.chroot │ │ │ ├── 006-setCPUFreqUtils.chroot │ │ │ ├── 007-setPlymouthTheme.chroot │ │ │ ├── 008-setLirc.chroot │ │ │ ├── 009-setTvheadend.chroot │ │ │ ├── 010-setSysctl.chroot │ │ │ ├── 011-disableFloppy.chroot │ │ │ ├── 012-fixLiveSnapshots.chroot │ │ │ ├── 013-setDistroDescription.chroot │ │ │ ├── 014-disableSreadahead.chroot │ │ │ ├── 015-fixLiveSnapshots.chroot │ │ │ ├── 099-checkKernels.chroot │ │ │ ├── 101-copyGrubFiles.binary │ │ │ └── 102-renameBinaries.binary │ │ │ ├── includes.binary │ │ │ └── install │ │ │ │ ├── Hooks │ │ │ │ ├── hwSetup_AMD.sh │ │ │ │ ├── hwSetup_NVIDIA.sh │ │ │ │ ├── setupSources.sh │ │ │ │ └── setup_uxlaunch.sh │ │ │ │ └── earlyPreseed │ │ │ ├── includes.chroot │ │ │ └── etc │ │ │ │ ├── hostname │ │ │ │ ├── hosts │ │ │ │ ├── lirc │ │ │ │ ├── hardware.conf │ │ │ │ └── lircd.conf │ │ │ │ ├── live-persistence.binds │ │ │ │ ├── network │ │ │ │ └── interfaces │ │ │ │ ├── ntp.conf │ │ │ │ ├── pm │ │ │ │ └── sleep.d │ │ │ │ │ └── 99lirc-resume │ │ │ │ └── resolv.conf │ │ │ └── package-lists │ │ │ └── packages.list.chroot │ ├── auto │ │ ├── build │ │ ├── clean │ │ └── config │ └── build.sh ├── buildWithOptions.sh ├── copyFiles-addons.sh ├── copyFiles-installer.sh ├── copyFiles-liveBoot.sh └── copyFiles-plymouthThemeFIX.sh ├── diskmounter ├── live.d ├── 01-configureXorg.sh ├── 03-configNVIDIAHDMI.sh ├── 04-configNVIDIAasoundrc.sh ├── 05-configAMDFusionasoundrc.sh ├── 10-setVolumes.sh ├── 11-mountDisks.sh ├── 12-setupWakeFromUSB.sh └── 13-disableXBMCIPv6.sh └── setAlsaVolumes.c /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/Makefile -------------------------------------------------------------------------------- /PlymouthThemes/plymouth-theme-xbmc-logo/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/PlymouthThemes/plymouth-theme-xbmc-logo/debian/changelog -------------------------------------------------------------------------------- /PlymouthThemes/plymouth-theme-xbmc-logo/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /PlymouthThemes/plymouth-theme-xbmc-logo/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/PlymouthThemes/plymouth-theme-xbmc-logo/debian/control -------------------------------------------------------------------------------- /PlymouthThemes/plymouth-theme-xbmc-logo/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/PlymouthThemes/plymouth-theme-xbmc-logo/debian/copyright -------------------------------------------------------------------------------- /PlymouthThemes/plymouth-theme-xbmc-logo/debian/install: -------------------------------------------------------------------------------- 1 | lib/* lib/ -------------------------------------------------------------------------------- /PlymouthThemes/plymouth-theme-xbmc-logo/debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/PlymouthThemes/plymouth-theme-xbmc-logo/debian/postinst -------------------------------------------------------------------------------- /PlymouthThemes/plymouth-theme-xbmc-logo/debian/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/PlymouthThemes/plymouth-theme-xbmc-logo/debian/postrm -------------------------------------------------------------------------------- /PlymouthThemes/plymouth-theme-xbmc-logo/debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | %: 4 | dh $@ 5 | -------------------------------------------------------------------------------- /PlymouthThemes/plymouth-theme-xbmc-logo/lib/plymouth/themes/xbmc-logo/password_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/PlymouthThemes/plymouth-theme-xbmc-logo/lib/plymouth/themes/xbmc-logo/password_field.png -------------------------------------------------------------------------------- /PlymouthThemes/plymouth-theme-xbmc-logo/lib/plymouth/themes/xbmc-logo/password_field16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/PlymouthThemes/plymouth-theme-xbmc-logo/lib/plymouth/themes/xbmc-logo/password_field16.png -------------------------------------------------------------------------------- /PlymouthThemes/plymouth-theme-xbmc-logo/lib/plymouth/themes/xbmc-logo/progress_dot_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/PlymouthThemes/plymouth-theme-xbmc-logo/lib/plymouth/themes/xbmc-logo/progress_dot_off.png -------------------------------------------------------------------------------- /PlymouthThemes/plymouth-theme-xbmc-logo/lib/plymouth/themes/xbmc-logo/progress_dot_off16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/PlymouthThemes/plymouth-theme-xbmc-logo/lib/plymouth/themes/xbmc-logo/progress_dot_off16.png -------------------------------------------------------------------------------- /PlymouthThemes/plymouth-theme-xbmc-logo/lib/plymouth/themes/xbmc-logo/progress_dot_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/PlymouthThemes/plymouth-theme-xbmc-logo/lib/plymouth/themes/xbmc-logo/progress_dot_on.png -------------------------------------------------------------------------------- /PlymouthThemes/plymouth-theme-xbmc-logo/lib/plymouth/themes/xbmc-logo/progress_dot_on16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/PlymouthThemes/plymouth-theme-xbmc-logo/lib/plymouth/themes/xbmc-logo/progress_dot_on16.png -------------------------------------------------------------------------------- /PlymouthThemes/plymouth-theme-xbmc-logo/lib/plymouth/themes/xbmc-logo/xbmc-logo.plymouth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/PlymouthThemes/plymouth-theme-xbmc-logo/lib/plymouth/themes/xbmc-logo/xbmc-logo.plymouth -------------------------------------------------------------------------------- /PlymouthThemes/plymouth-theme-xbmc-logo/lib/plymouth/themes/xbmc-logo/xbmc-logo.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/PlymouthThemes/plymouth-theme-xbmc-logo/lib/plymouth/themes/xbmc-logo/xbmc-logo.script -------------------------------------------------------------------------------- /PlymouthThemes/plymouth-theme-xbmc-logo/lib/plymouth/themes/xbmc-logo/xbmc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/PlymouthThemes/plymouth-theme-xbmc-logo/lib/plymouth/themes/xbmc-logo/xbmc_logo.png -------------------------------------------------------------------------------- /PlymouthThemes/plymouth-theme-xbmc-logo/lib/plymouth/themes/xbmc-logo/xbmc_logo16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/PlymouthThemes/plymouth-theme-xbmc-logo/lib/plymouth/themes/xbmc-logo/xbmc_logo16.png -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/README -------------------------------------------------------------------------------- /SDK/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/README.txt -------------------------------------------------------------------------------- /SDK/Tools/cloneLiveHelper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/Tools/cloneLiveHelper.sh -------------------------------------------------------------------------------- /SDK/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/build.sh -------------------------------------------------------------------------------- /SDK/buildDEBs/build-installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildDEBs/build-installer.sh -------------------------------------------------------------------------------- /SDK/buildDEBs/build-live-boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildDEBs/build-live-boot.sh -------------------------------------------------------------------------------- /SDK/buildDEBs/build-live-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildDEBs/build-live-config.sh -------------------------------------------------------------------------------- /SDK/buildDEBs/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildDEBs/build.sh -------------------------------------------------------------------------------- /SDK/buildDEBs/mkDeb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildDEBs/mkDeb.sh -------------------------------------------------------------------------------- /SDK/buildDEBs/xbmclive-installhelpers/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildDEBs/xbmclive-installhelpers/debian/changelog -------------------------------------------------------------------------------- /SDK/buildDEBs/xbmclive-installhelpers/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /SDK/buildDEBs/xbmclive-installhelpers/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildDEBs/xbmclive-installhelpers/debian/control -------------------------------------------------------------------------------- /SDK/buildDEBs/xbmclive-installhelpers/debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildDEBs/xbmclive-installhelpers/debian/install -------------------------------------------------------------------------------- /SDK/buildDEBs/xbmclive-installhelpers/debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | %: 4 | dh $@ 5 | -------------------------------------------------------------------------------- /SDK/buildDEBs/xbmclive-installhelpers/finish-install.d/07copySources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildDEBs/xbmclive-installhelpers/finish-install.d/07copySources -------------------------------------------------------------------------------- /SDK/buildDEBs/xbmclive-installhelpers/finish-install.d/14runHooks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildDEBs/xbmclive-installhelpers/finish-install.d/14runHooks -------------------------------------------------------------------------------- /SDK/buildDEBs/xbmclive-installhelpers/finish-install.d/92setLiveUser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildDEBs/xbmclive-installhelpers/finish-install.d/92setLiveUser -------------------------------------------------------------------------------- /SDK/buildDEBs/xbmclive-installhelpers/finish-install.d/93modifyGrubMenu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildDEBs/xbmclive-installhelpers/finish-install.d/93modifyGrubMenu -------------------------------------------------------------------------------- /SDK/buildDEBs/xbmclive-installhelpers/post-base-installer.d/91deleteLiveUser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildDEBs/xbmclive-installhelpers/post-base-installer.d/91deleteLiveUser -------------------------------------------------------------------------------- /SDK/buildHook-HybridImage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildHook-HybridImage.sh -------------------------------------------------------------------------------- /SDK/buildHook-intelOnly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildHook-intelOnly.sh -------------------------------------------------------------------------------- /SDK/buildHook-liveOnly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildHook-liveOnly.sh -------------------------------------------------------------------------------- /SDK/buildHook-nvidiaOnly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildHook-nvidiaOnly.sh -------------------------------------------------------------------------------- /SDK/buildHook-proposed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildHook-proposed.sh -------------------------------------------------------------------------------- /SDK/buildHook-usbhddImage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildHook-usbhddImage.sh -------------------------------------------------------------------------------- /SDK/buildHook-xbmcSvn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildHook-xbmcSvn.sh -------------------------------------------------------------------------------- /SDK/buildHook-xswat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildHook-xswat.sh -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/archives/pulse-eight.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/archives/pulse-eight.chroot -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/archives/pulse-eight.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/archives/pulse-eight.key -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/archives/pulse-eight.key.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/archives/pulse-eight.key.chroot -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/archives/pulse-eight.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/archives/pulse-eight.list -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/archives/tvheadend.chroot: -------------------------------------------------------------------------------- 1 | deb http://www.lonelycoder.com/debian hts main 2 | -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/archives/tvheadend.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/archives/tvheadend.key -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/archives/tvheadend.key.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/archives/tvheadend.key.chroot -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/archives/tvheadend.list: -------------------------------------------------------------------------------- 1 | deb http://www.lonelycoder.com/debian hts main 2 | -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/archives/ubuntu.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/archives/ubuntu.list -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/archives/xbmc-svn.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/archives/xbmc-svn.chroot -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/archives/xbmc-svn.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/archives/xbmc-svn.key -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/archives/xbmc-svn.key.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/archives/xbmc-svn.key.chroot -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/archives/xbmc-svn.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/archives/xbmc-svn.list -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/archives/xbmc.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/archives/xbmc.chroot -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/archives/xbmc.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/archives/xbmc.key -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/archives/xbmc.key.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/archives/xbmc.key.chroot -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/archives/xbmc.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/archives/xbmc.list -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/binary_debian-installer/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/binary_debian-installer/preseed.cfg -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/binary_debian-installer/udeb_exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/binary_debian-installer/udeb_exclude -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/binary_grub/grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/binary_grub/grub.cfg -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/binary_grub/splash.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/binary_grub/splash.tga -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/hooks/002-setGLDrivers.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/hooks/002-setGLDrivers.chroot -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/hooks/003-setLocales.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/hooks/003-setLocales.chroot -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/hooks/004-setTimeZone.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/hooks/004-setTimeZone.chroot -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/hooks/005-changeAdduserDefaults.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/hooks/005-changeAdduserDefaults.chroot -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/hooks/006-setCPUFreqUtils.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/hooks/006-setCPUFreqUtils.chroot -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/hooks/007-setPlymouthTheme.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/hooks/007-setPlymouthTheme.chroot -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/hooks/008-setLirc.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/hooks/008-setLirc.chroot -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/hooks/009-setTvheadend.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/hooks/009-setTvheadend.chroot -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/hooks/010-setSysctl.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/hooks/010-setSysctl.chroot -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/hooks/011-disableFloppy.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/hooks/011-disableFloppy.chroot -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/hooks/012-fixLiveSnapshots.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/hooks/012-fixLiveSnapshots.chroot -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/hooks/013-setDistroDescription.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/hooks/013-setDistroDescription.chroot -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/hooks/014-disableSreadahead.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/hooks/014-disableSreadahead.chroot -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/hooks/015-fixLiveSnapshots.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/hooks/015-fixLiveSnapshots.chroot -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/hooks/099-checkKernels.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/hooks/099-checkKernels.chroot -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/hooks/101-copyGrubFiles.binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/hooks/101-copyGrubFiles.binary -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/hooks/102-renameBinaries.binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/hooks/102-renameBinaries.binary -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/includes.binary/install/Hooks/hwSetup_AMD.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/includes.binary/install/Hooks/hwSetup_AMD.sh -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/includes.binary/install/Hooks/hwSetup_NVIDIA.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/includes.binary/install/Hooks/hwSetup_NVIDIA.sh -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/includes.binary/install/Hooks/setupSources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/includes.binary/install/Hooks/setupSources.sh -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/includes.binary/install/Hooks/setup_uxlaunch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/includes.binary/install/Hooks/setup_uxlaunch.sh -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/includes.binary/install/earlyPreseed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/includes.binary/install/earlyPreseed -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/includes.chroot/etc/hostname: -------------------------------------------------------------------------------- 1 | XBMCLive -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/includes.chroot/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/includes.chroot/etc/hosts -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/includes.chroot/etc/lirc/hardware.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/includes.chroot/etc/lirc/hardware.conf -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/includes.chroot/etc/lirc/lircd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/includes.chroot/etc/lirc/lircd.conf -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/includes.chroot/etc/live-persistence.binds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/includes.chroot/etc/live-persistence.binds -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/includes.chroot/etc/network/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/includes.chroot/etc/network/interfaces -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/includes.chroot/etc/ntp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/includes.chroot/etc/ntp.conf -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/includes.chroot/etc/pm/sleep.d/99lirc-resume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/includes.chroot/etc/pm/sleep.d/99lirc-resume -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/includes.chroot/etc/resolv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/includes.chroot/etc/resolv.conf -------------------------------------------------------------------------------- /SDK/buildLive/Files/config/package-lists/packages.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/Files/config/package-lists/packages.list.chroot -------------------------------------------------------------------------------- /SDK/buildLive/auto/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/auto/build -------------------------------------------------------------------------------- /SDK/buildLive/auto/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/auto/clean -------------------------------------------------------------------------------- /SDK/buildLive/auto/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/auto/config -------------------------------------------------------------------------------- /SDK/buildLive/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildLive/build.sh -------------------------------------------------------------------------------- /SDK/buildWithOptions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/buildWithOptions.sh -------------------------------------------------------------------------------- /SDK/copyFiles-addons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/copyFiles-addons.sh -------------------------------------------------------------------------------- /SDK/copyFiles-installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/copyFiles-installer.sh -------------------------------------------------------------------------------- /SDK/copyFiles-liveBoot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/copyFiles-liveBoot.sh -------------------------------------------------------------------------------- /SDK/copyFiles-plymouthThemeFIX.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/SDK/copyFiles-plymouthThemeFIX.sh -------------------------------------------------------------------------------- /diskmounter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/diskmounter -------------------------------------------------------------------------------- /live.d/01-configureXorg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/live.d/01-configureXorg.sh -------------------------------------------------------------------------------- /live.d/03-configNVIDIAHDMI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/live.d/03-configNVIDIAHDMI.sh -------------------------------------------------------------------------------- /live.d/04-configNVIDIAasoundrc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/live.d/04-configNVIDIAasoundrc.sh -------------------------------------------------------------------------------- /live.d/05-configAMDFusionasoundrc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/live.d/05-configAMDFusionasoundrc.sh -------------------------------------------------------------------------------- /live.d/10-setVolumes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/live.d/10-setVolumes.sh -------------------------------------------------------------------------------- /live.d/11-mountDisks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/live.d/11-mountDisks.sh -------------------------------------------------------------------------------- /live.d/12-setupWakeFromUSB.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/live.d/12-setupWakeFromUSB.sh -------------------------------------------------------------------------------- /live.d/13-disableXBMCIPv6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/live.d/13-disableXBMCIPv6.sh -------------------------------------------------------------------------------- /setAlsaVolumes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xbmc/xbmc-live/HEAD/setAlsaVolumes.c --------------------------------------------------------------------------------