Kodi Community Forum

Full Version: Compiling 12.3 gives "Error 14 in xbmc.bin"
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi fellow xbmc users and xbmc developers, first of many many thanks for a great media center!

I have been having problems all day getting new a new XBMC build working. I have had a working XBMC build for a month since I build a new HTPC. As the title says i get the following error in /var/log/syslog:
Code:
Jan  3 15:15:51 chronos kernel: [ 8376.104833] xbmc.bin[16963]: segfault at 0 ip           (null) sp 00007fff68e81c78 error 14 in xbmc.bin[400000+1116000]

I have tried to search for the specific error both on forums, google and even in the xbmc github code base but could not find defines for such error messages.


Specifications and logs

Hardware:
Motherboard: ASUS C8HM70-I/HDMI
RAM: Corsair 4GB DDR3 PC3-10600 1333MHz SO-DIMM (9-9-9-24) (CMSO4GX3M1A1333C9).

Linux:
Distro: Debian 7.3
Arch: x86_64
Kernel: Linux 3.2.0-4-amd64 #1 SMP Debian 3.2.51-1

XBMC:
Release: 12.3 | Also tried building source from github
Build: Compiling with commands: sudo ./bootstrap ; sudo ./configure --enable-vdpau --enable-vaapi --enable-crystalhd --enable-libbluray --enable-nfs --enable-airplay ; sudo make ; sudo make install

XBMC is built successfully and placed what I presume is correct:
Code:
chronos@chronos:/usr/src/xbmc-12.3-Frodo$ sudo make install
[sudo] password for chronos:
Copying XBMC binary to /usr/local/lib/xbmc/
You can run XBMC with the command 'xbmc'
Copying support and legal files...
Done!
Copying system files to /usr/local/share/xbmc


Then XBMC is started through init.d script:
Code:
#! /bin/sh

### BEGIN INIT INFO
# Provides:          xbmc
# Required-Start:    $all
# Required-Stop:     $all
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: starts instance of XBMC
# Description:       starts instance of XBMC using start-stop-daemon and xinit
### END INIT INFO

############### EDIT ME ##################

# path to xinit exec
DAEMON=/usr/bin/xinit

# startup args
DAEMON_OPTS=" /usr/local/bin/xbmc --standalone -- :0"

# script name
NAME=xbmc

# app name
DESC=XBMC

# user
RUN_AS=root

# Path of the PID file
PID_FILE=/var/run/xbmc.pid

############### END EDIT ME ##################

test -x $DAEMON || exit 0

set -e

case "$1" in
  start)
        echo "Starting $DESC"
        start-stop-daemon --start -c $RUN_AS --background --pidfile $PID_FILE  --make-pidfile --exec $DAEMON -- $DAEMON_OPTS
        ;;
  stop)
        echo "Stopping $DESC"
        start-stop-daemon --stop --pidfile $PID_FILE
        ;;

  restart|force-reload)
        echo "Restarting $DESC"
        start-stop-daemon --stop --pidfile $PID_FILE
        sleep 5
        start-stop-daemon --start -c $RUN_AS --background --pidfile $PID_FILE  --make-pidfile --exec $DAEMON -- $DAEMON_OPTS
        ;;
  *)
        N=/etc/init.d/$NAME
        echo "Usage: $N {start|stop|restart|force-reload}" >&2
        exit 1
        ;;
esac

exit 0

[/code]

XBMC crash log:
Code:
############### STACK TRACE #################
=====>  Core file: /core (2014-01-03 15:15:51.201482957 +0100)
        =========================================
[New LWP 16963]
[New LWP 16977]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
Core was generated by `/usr/local/lib/xbmc/xbmc.bin --standalone'.
Program terminated with signal 11, Segmentation fault.
#0  0x0000000000000000 in ?? ()

Thread 2 (Thread 0x7ff315281700 (LWP 16977)):
#0  0x00007ff31d69ae33 in poll () from /lib/x86_64-linux-gnu/libc.so.6
#1  0x00007ff31f5a6a7f in ?? () from /usr/lib/x86_64-linux-gnu/libasound.so.2
#2  0x0000000000bd730a in CAESinkALSA::AddPackets (this=0x2b50600, data=0x2b8a880 "", frames=2048, hasAudio=<optimized out>) at Sinks/AESinkALSA.cpp:527
#3  0x0000000000bcc096 in CSoftAE::RunOutputStage (this=0x2aa4da0, hasAudio=false) at Engines/SoftAE/SoftAE.cpp:1236
#4  0x0000000000bcf626 in CSoftAE::Run (this=0x2aa4da0) at Engines/SoftAE/SoftAE.cpp:1061
#5  0x000000000115e7a0 in CThread::Action (this=0x2bbab50) at Thread.cpp:218
#6  0x000000000115ea52 in CThread::staticThread (data=0x2bbab50) at Thread.cpp:128
#7  0x00007ff32259bb50 in start_thread () from /lib/x86_64-linux-gnu/libpthread.so.0
#8  0x00007ff31d6a5a7d in clone () from /lib/x86_64-linux-gnu/libc.so.6
#9  0x0000000000000000 in ?? ()

Thread 1 (Thread 0x7ff325f767a0 (LWP 16963)):
#0  0x0000000000000000 in ?? ()
#1  0x0000000000e90dc3 in PERIPHERALS::CPeripheralBusCEC::PerformDeviceScan (this=0x2baf2b0, results=...) at virtual/PeripheralBusCEC.cpp:85
#2  0x0000000000e8ddca in PERIPHERALS::CPeripheralBus::ScanForDevices (this=0x2baf2b0) at PeripheralBus.cpp:125
#3  0x0000000000e8c69d in PERIPHERALS::CPeripheralBus::Initialise (this=0x2baf2b0) at PeripheralBus.cpp:226
#4  0x0000000000ea9401 in PERIPHERALS::CPeripherals::Initialise (this=0x17cb720) at Peripherals.cpp:94
#5  0x0000000000f7e2ef in CApplication::Create (this=0x2a55190) at Application.cpp:762
#6  0x0000000001011c54 in XBMC_Run (renderGUI=true) at xbmc.cpp:44
#7  0x00000000007c86db in main (argc=2, argv=0x7fff68e87678) at main.cpp:77
############# END STACK TRACE ###############

I do now quite understand if either libcec nor alsa would be the problem since it was working before i begin building the new version and if im not completely deranged or got struck by Alzheimer i have done nothing with the htpc more than rebooted it in hopes that some unloaded module was missing. But if this tells someone anything please do tell me and point to what i have done wrong Big Grin

Code:
################# LOG FILE ##################

15:15:50 T:140682290751392  NOTICE: -----------------------------------------------------------------------
15:15:50 T:140682290751392  NOTICE: Starting XBMC (12.3 Git:Unknown), Platform: Linux (Debian GNU/Linux 7.3 (wheezy), 3.2.0-4-amd64 x86_64). Built on Jan  3 2014
15:15:50 T:140682290751392  NOTICE: special://xbmc/ is mapped to: /usr/local/share/xbmc
15:15:50 T:140682290751392  NOTICE: special://xbmcbin/ is mapped to: /usr/local/lib/xbmc
15:15:50 T:140682290751392  NOTICE: special://masterprofile/ is mapped to: /root/.xbmc/userdata
15:15:50 T:140682290751392  NOTICE: special://home/ is mapped to: /root/.xbmc
15:15:50 T:140682290751392  NOTICE: special://temp/ is mapped to: /root/.xbmc/temp
15:15:50 T:140682290751392  NOTICE: The executable running is: /usr/local/lib/xbmc/xbmc.bin
15:15:50 T:140682290751392  NOTICE: Local hostname: chronos
15:15:50 T:140682290751392  NOTICE: Log File is located: /root/.xbmc/temp/xbmc.log
15:15:50 T:140682290751392  NOTICE: -----------------------------------------------------------------------
15:15:50 T:140682290751392   DEBUG: ConsoleKit.Manager: org.freedesktop.DBus.Error.ServiceUnknown - The name org.freedesktop.ConsoleKit was not provided by any .service files
15:15:50 T:140682290751392   DEBUG: UPower: org.freedesktop.DBus.Error.ServiceUnknown - The name org.freedesktop.UPower was not provided by any .service files
15:15:50 T:140682290751392   DEBUG: ConsoleKit.Manager: org.freedesktop.DBus.Error.ServiceUnknown - The name org.freedesktop.ConsoleKit was not provided by any .service files
15:15:50 T:140682290751392   DEBUG: DeviceKit.Power: org.freedesktop.DBus.Error.ServiceUnknown - The name org.freedesktop.DeviceKit.Disks was not provided by any .service files
15:15:50 T:140682290751392   DEBUG: Systemd error: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.login1 was not provided by any .service files
15:15:50 T:140682290751392   DEBUG: UPower: org.freedesktop.DBus.Error.ServiceUnknown - The name org.freedesktop.UPower was not provided by any .service files
15:15:50 T:140682290751392   DEBUG: Previous line repeats 1 times.
15:15:50 T:140682290751392   DEBUG: CAESinkALSA - HDMI device "hdmi:CARD=PCH,DEV=0" may be unconnected (no ELD data)
15:15:50 T:140682290751392   ERROR: CAESinkOSS::EnumerateDevicesEx - Failed to open mixer: /dev/mixer
15:15:50 T:140682290751392  NOTICE: Found 1 Lists of Devices
15:15:50 T:140682290751392  NOTICE: Enumerated ALSA devices:
15:15:50 T:140682290751392  NOTICE:     Device 1
15:15:50 T:140682290751392  NOTICE:         m_deviceName      : @
15:15:50 T:140682290751392  NOTICE:         m_displayName     : Default (HDA Intel PCH ALC887-VD Analog)
15:15:50 T:140682290751392  NOTICE:         m_displayNameExtra:
15:15:50 T:140682290751392  NOTICE:         m_deviceType      : AE_DEVTYPE_PCM
15:15:50 T:140682290751392  NOTICE:         m_channels        : FL,FR,BL,BR,FC,LFE
15:15:50 T:140682290751392  NOTICE:         m_sampleRates     : 44100,48000,96000,192000
15:15:50 T:140682290751392  NOTICE:         m_dataFormats     : AE_FMT_S32NE,AE_FMT_S16NE,AE_FMT_S16LE
15:15:50 T:140682290751392  NOTICE:     Device 2
15:15:50 T:140682290751392  NOTICE:         m_deviceName      : @:CARD=PCH,DEV=0
15:15:50 T:140682290751392  NOTICE:         m_displayName     : HDA Intel PCH
15:15:50 T:140682290751392  NOTICE:         m_displayNameExtra: ALC887-VD Analog
15:15:50 T:140682290751392  NOTICE:         m_deviceType      : AE_DEVTYPE_PCM
15:15:50 T:140682290751392  NOTICE:         m_channels        : FL,FR,BL,BR,FC,LFE
15:15:50 T:140682290751392  NOTICE:         m_sampleRates     : 44100,48000,96000,192000
15:15:50 T:140682290751392  NOTICE:         m_dataFormats     : AE_FMT_S32NE,AE_FMT_S16NE,AE_FMT_S16LE
15:15:50 T:140682290751392  NOTICE:     Device 3
15:15:50 T:140682290751392  NOTICE:         m_deviceName      : hdmi:CARD=PCH,DEV=0
15:15:50 T:140682290751392  NOTICE:         m_displayName     : HDA Intel PCH
15:15:50 T:140682290751392  NOTICE:         m_displayNameExtra: HDMI
15:15:50 T:140682290751392  NOTICE:         m_deviceType      : AE_DEVTYPE_HDMI
15:15:50 T:140682290751392  NOTICE:         m_channels        : FL,FR,BL,BR,FC,LFE,SL,SR
15:15:50 T:140682290751392  NOTICE:         m_sampleRates     : 32000,44100,48000,88200,96000,176400,192000
15:15:50 T:140682290751392  NOTICE:         m_dataFormats     : AE_FMT_S32NE,AE_FMT_S16NE,AE_FMT_S16LE
15:15:50 T:140682290751392  NOTICE: load settings...
15:15:50 T:140682290751392   DEBUG: SECTION:LoadDLL(libcrystalhd.so.3)
15:15:50 T:140682290751392   DEBUG: Loading: libcrystalhd.so.3
15:15:50 T:140682290751392   DEBUG: CrystalHD: device open failed , returning(0xffffffff)
15:15:50 T:140682290751392   DEBUG: CrystalHD: broadcom crystal hd not found
15:15:50 T:140682290751392  NOTICE: special://profile/ is mapped to: special://masterprofile/
15:15:50 T:140682290751392  NOTICE: loading special://masterprofile/guisettings.xml
15:15:50 T:140682290751392  NOTICE: Getting hardware information now...
15:15:50 T:140682290751392    INFO: Using analog output
15:15:50 T:140682290751392    INFO: AC3 pass through is enabled
15:15:50 T:140682290751392    INFO: DTS pass through is disabled
15:15:50 T:140682290751392    INFO: AAC pass through is disabled
15:15:50 T:140682290751392  NOTICE: Loading player core factory settings from special://xbmc/system/playercorefactory.xml.
15:15:50 T:140682290751392   DEBUG: CPlayerCoreConfig::<ctor>: created player DVDPlayer for core 1
15:15:50 T:140682290751392   DEBUG: CPlayerCoreConfig::<ctor>: created player oldmplayercore for core 1
15:15:50 T:140682290751392   DEBUG: CPlayerCoreConfig::<ctor>: created player PAPlayer for core 3
15:15:50 T:140682290751392   DEBUG: CPlayerSelectionRule::Initialize: creating rule: system rules
15:15:50 T:140682290751392   DEBUG: CPlayerSelectionRule::Initialize: creating rule: rtv
15:15:50 T:140682290751392   DEBUG: CPlayerSelectionRule::Initialize: creating rule: hdhomerun/myth/mms/udp
15:15:50 T:140682290751392   DEBUG: CPlayerSelectionRule::Initialize: creating rule: lastfm/shout
15:15:50 T:140682290751392   DEBUG: CPlayerSelectionRule::Initialize: creating rule: rtmp
15:15:50 T:140682290751392   DEBUG: CPlayerSelectionRule::Initialize: creating rule: rtsp
15:15:50 T:140682290751392   DEBUG: CPlayerSelectionRule::Initialize: creating rule: streams
15:15:50 T:140682290751392   DEBUG: CPlayerSelectionRule::Initialize: creating rule: aacp/sdp
15:15:50 T:140682290751392   DEBUG: CPlayerSelectionRule::Initialize: creating rule: mp2
15:15:50 T:140682290751392   DEBUG: CPlayerSelectionRule::Initialize: creating rule: dvd
15:15:50 T:140682290751392   DEBUG: CPlayerSelectionRule::Initialize: creating rule: dvdimage
15:15:50 T:140682290751392   DEBUG: CPlayerSelectionRule::Initialize: creating rule: sdp/asf
15:15:50 T:140682290751392   DEBUG: CPlayerSelectionRule::Initialize: creating rule: nsv
15:15:50 T:140682290751392   DEBUG: CPlayerSelectionRule::Initialize: creating rule: radio
15:15:50 T:140682290751392  NOTICE: Loaded playercorefactory configuration
15:15:50 T:140682290751392  NOTICE: Loading player core factory settings from special://masterprofile/playercorefactory.xml.
15:15:50 T:140682290751392  NOTICE: special://masterprofile/playercorefactory.xml does not exist. Skipping.
15:15:50 T:140682290751392  NOTICE: No settings file to load (special://xbmc/system/advancedsettings.xml)
15:15:50 T:140682290751392  NOTICE: No settings file to load (special://masterprofile/advancedsettings.xml)
15:15:50 T:140682290751392  NOTICE: Default DVD Player: dvdplayer
15:15:50 T:140682290751392  NOTICE: Default Video Player: dvdplayer
15:15:50 T:140682290751392  NOTICE: Default Audio Player: paplayer
15:15:50 T:140682290751392  NOTICE: Disabled debug logging due to GUI setting. Level 0.
15:15:50 T:140682290751392  NOTICE: Log level changed to 0
15:15:50 T:140682290751392  NOTICE: Loading media sources from special://masterprofile/sources.xml
15:15:50 T:140682290751392    INFO: creating subdirectories
15:15:50 T:140682290751392    INFO: userdata folder: special://masterprofile/
15:15:50 T:140682290751392    INFO: recording folder:
15:15:50 T:140682290751392    INFO: screenshots folder:
15:15:50 T:140682290751392    INFO: thumbnails folder: special://masterprofile/Thumbnails
15:15:50 T:140682290751392    INFO: load language info file: special://xbmc/language/English/langinfo.xml
15:15:50 T:140682290751392   DEBUG: trying to set locale to en_US.UTF-8
15:15:50 T:140682290751392    INFO: global locale set to C
15:15:50 T:140682290751392    INFO: load English language file, from path: special://xbmc/language/
15:15:51 T:140682290751392   DEBUG: POParser: loaded 2686 strings from file /usr/local/share/xbmc/language/English/strings.po
15:15:51 T:140682290751392    INFO: CSoftAE::InternalOpenSink - sink incompatible, re-starting
15:15:51 T:140682290751392    INFO: CAESinkALSA::Initialize - Attempting to open device "hdmi:CARD=PCH,DEV=0"
15:15:51 T:140682290751392    INFO: CAESinkALSA::Initialize - Opened device "hdmi:CARD=PCH,DEV=0,AES0=0x04,AES1=0x82,AES2=0x00,AES3=0x00"
15:15:51 T:140682290751392    INFO: CAESinkALSA::InitializeHW - Your hardware does not support AE_FMT_FLOAT, trying other formats
15:15:51 T:140682290751392    INFO: CAESinkALSA::InitializeHW - Using data format AE_FMT_S32NE
15:15:51 T:140682290751392   DEBUG: CAESinkALSA::InitializeHW - Request: periodSize 2048, bufferSize 8192
15:15:51 T:140682290751392   DEBUG: CAESinkALSA::InitializeHW - Got: periodSize 2048, bufferSize 8192
15:15:51 T:140682290751392   DEBUG: CAESinkALSA::InitializeHW - Setting timeout to 186 ms
15:15:51 T:140682290751392   DEBUG: CSoftAE::InternalOpenSink - ALSA Initialized:
15:15:51 T:140682290751392   DEBUG:   Output Device : HDA Intel PCH
15:15:51 T:140682290751392   DEBUG:   Sample Rate   : 44100
15:15:51 T:140682290751392   DEBUG:   Sample Format : AE_FMT_S32NE
15:15:51 T:140682290751392   DEBUG:   Channel Count : 2
15:15:51 T:140682290751392   DEBUG:   Channel Layout: FL,FR
15:15:51 T:140682290751392   DEBUG:   Frames        : 2048
15:15:51 T:140682290751392   DEBUG:   Frame Samples : 4096
15:15:51 T:140682290751392   DEBUG:   Frame Size    : 8
15:15:51 T:140682290751392   DEBUG: CSoftAE::InternalOpenSink - Using speaker layout: 3.0
15:15:51 T:140682290751392   DEBUG: CSoftAE::InternalOpenSink - Internal Buffer Size: 16384
15:15:51 T:140682008729344  NOTICE: Thread CSoftAE start, auto delete: false
15:15:51 T:140682008729344    INFO: CSoftAE::Run - Thread Started
15:15:51 T:140682290751392  NOTICE: Running database version Addons15
15:15:51 T:140682290751392   DEBUG: SECTION:LoadDLL(special://xbmcbin/system/libcpluff-x86_64-linux.so)
15:15:51 T:140682290751392   DEBUG: Loading: /usr/local/lib/xbmc/system/libcpluff-x86_64-linux.so
15:15:51 T:140682290751392    INFO: ADDON: cpluff: 'Could not read plug-in directory /usr/local/lib/xbmc/addons: No such file or directory'
15:15:51 T:140682290751392   DEBUG: LoadMappings - loaded node "Motorola Nyxboard Hybrid"
15:15:51 T:140682290751392   DEBUG: LoadMappings - loaded node "CEC Adapter"
15:15:51 T:140682290751392   DEBUG: LoadMappings - loaded node "Pulse-Eight CEC Adapter"
15:15:51 T:140682290751392   DEBUG: LoadMappings - loaded node "iMON HID device"
15:15:51 T:140682290751392   DEBUG: CPeripheralBusUSB - initialised udev monitor
15:15:51 T:140682290751392   DEBUG: SECTION:LoadDLL(libcec.so.1)
15:15:51 T:140682290751392   DEBUG: Loading: libcec.so.1


############### END LOG FILE ################

Output of lsmod:
Code:
root@chronos:~# lsmod
Module                  Size  Used by
nfsd                  216170  2
nfs                   308313  0
nfs_acl                12511  2 nfs,nfsd
auth_rpcgss            37143  2 nfs,nfsd
fscache                36739  1 nfs
lockd                  67306  2 nfs,nfsd
sunrpc                173730  6 lockd,auth_rpcgss,nfs_acl,nfs,nfsd
lm75                   12722  0
loop                   22641  0
sr_mod                 21899  0
cdrom                  35401  1 sr_mod
sg                     25874  0
snd_hda_codec_hdmi     30768  1
snd_hda_codec_realtek   104857  1
usb_storage            43870  0
snd_hda_intel          26258  0
i915                  378445  1
snd_hda_codec          82861  3 snd_hda_intel,snd_hda_codec_realtek,snd_hda_codec_hdmi
snd_hwdep              13189  1 snd_hda_codec
snd_pcm                63904  3 snd_hda_codec,snd_hda_intel,snd_hda_codec_hdmi
drm_kms_helper         31370  1 i915
snd_page_alloc         13003  2 snd_pcm,snd_hda_intel
eeepc_wmi              12564  0
snd_timer              22812  1 snd_pcm
drm                   183952  2 drm_kms_helper,i915
asus_wmi               18726  1 eeepc_wmi
r8169                  47008  0
acpi_cpufreq           12935  0
i2c_algo_bit           12841  1 i915
psmouse                69265  0
xhci_hcd               73434  0
mperf                  12453  1 acpi_cpufreq
i2c_i801               16870  0
sparse_keymap          12760  1 asus_wmi
pcspkr                 12579  0
serio_raw              12931  0
coretemp               12898  0
i2c_core               23876  6 i2c_i801,i2c_algo_bit,drm,drm_kms_helper,i915,lm75
evdev                  17562  10
rfkill                 19012  1 asus_wmi
snd                    53063  7 snd_timer,snd_pcm,snd_hwdep,snd_hda_codec,snd_hda_intel,snd_hda_codec_realtek,snd_hda_codec_hdmi
iTCO_wdt               17081  0
iTCO_vendor_support    12704  1 iTCO_wdt
ehci_hcd               40215  0
mii                    12675  1 r8169
usbcore               128741  4 ehci_hcd,xhci_hcd,usb_storage
crc32c_intel           12747  0
video                  17683  1 i915
processor              28157  1 acpi_cpufreq
button                 12937  1 i915
ghash_clmulni_intel    13173  0
cryptd                 14517  1 ghash_clmulni_intel
soundcore              13065  1 snd
wmi                    13243  1 asus_wmi
usb_common             12354  1 usbcore
ext4                  350763  1
crc16                  12343  1 ext4
mbcache                13114  1 ext4
jbd2                   62115  1 ext4
sd_mod                 36136  3
crc_t10dif             12348  1 sd_mod
fan                    12674  0
thermal                17383  0
thermal_sys            18040  4 thermal,fan,processor,video
ahci                   24997  2
libahci                22860  1 ahci
libata                140630  2 libahci,ahci
scsi_mod              162269  5 libata,sd_mod,usb_storage,sg,sr_mod

Output from lspci:
Code:
root@chronos:~# lspci
00:00.0 Host bridge: Intel Corporation 2nd Generation Core Processor Family DRAM Controller (rev 09)
00:01.0 PCI bridge: Intel Corporation Xeon E3-1200/2nd Generation Core Processor Family PCI Express Root Port (rev 09)
00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09)
00:14.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB xHCI Host Controller (rev 04)
00:16.0 Communication controller: Intel Corporation 7 Series/C210 Series Chipset Family MEI Controller #1 (rev 04)
00:1a.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #2 (rev 04)
00:1b.0 Audio device: Intel Corporation 7 Series/C210 Series Chipset Family High Definition Audio Controller (rev 04)
00:1c.0 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 1 (rev c4)
00:1d.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #1 (rev 04)
00:1f.0 ISA bridge: Intel Corporation 7 Series Chipset Family LPC Controller (rev 04)
00:1f.2 SATA controller: Intel Corporation 7 Series Chipset Family 6-port SATA Controller [AHCI mode] (rev 04)
00:1f.3 SMBus: Intel Corporation 7 Series/C210 Series Chipset Family SMBus Controller (rev 04)
02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 09)
root@chronos:~#

If i have left out anything just tell me what output you need and ill update this post with it!
See http://forum.xbmc.org/showthread.php?tid=181126

I have a Q

Why would you want or think you need to compile with --enable-vdpau --enable-vaapi --enable-crystalhd? Seems to me you only need --enable-vaapi as you dont have neither a crystalhd car nor a nvidia GPU.

And my only observation aside from that, is that you wont be able to run XBMC in Debian especially compiling it without major pains hence link I posted above.

Then It seem your system is conking out at some libcec related incident, which even if it werent for that, I doubt it would run properly as your log XBMC log doesnt even list gpu, so I wonder is it even supported?? idk what gpu you have either you list the motherboard and ram (who cares about those) they are the least relevant to running XBMC.. the GPU is most important as It requires hardware acceleration.

I would aslo add that if that CPU has onboard GPU (which XBMC can use) given the Haswell implication that you need kernel 3.12 at very least not to speak of Mesa.

In any case refer to the link above. Also because you say you had XBMC running but mention not what or how.
(2014-01-03, 19:45)uNiversal Wrote: [ -> ]I have a Q

Why would you want or think you need to compile with --enable-vdpau --enable-vaapi --enable-crystalhd? Seems to me you only need --enable-vaapi as you dont have neither a crystalhd car nor a nvidia GPU.

The configuration lines has followed during the 4-5 years I have runned XBMC and has always been compiled, without any problem what so ever =) and formerly have had broadcom crystalhd and later on NVIDIA cards =)

I have found during hours of searching that that X/Xorg no longer is able to make an xorg.conf and foudn that X gives this error message:
Code:
Number of created screens does not match number of detected devices.

Thirdly I have always compiled XBMC from tar.gz or git due to that Debian proclaimed that XBMC never will be made public through public repos =) So back in the days when i started with XBMC i started out, well from scratch, trying to figure out all the package dependencies and build atleast 2 official releases on my old server and recently an v13-alpha and that has runned until today when the whole setup went bonkers.. =)
its probably due to a too old libcec version. If you don't need it, disable cec: --disable-libcec
Otherwise upgrade it at least 2.1.x

If you are interested, here is a quite recent gotham build for wheezy: http://mirrors.xbmc.org/test-builds/apt/debian/stable/
Its a test apt repo.
Code:
deb http://mirrors.xbmc.org/test-builds/apt/debian stable/
should work as apt source. Feedback would be welcome
(2014-01-03, 20:18)wsnipex Wrote: [ -> ]If you are interested, here is a quite recent gotham build for wheezy: http://mirrors.xbmc.org/test-builds/apt/debian/stable/
Its a test apt repo.
Code:
deb http://mirrors.xbmc.org/test-builds/apt/debian stable/
should work as apt source. Feedback would be welcome

Ah intressesting. Should test that yes =) Been hard to find any good up-to-date xbmc package. Keep up the good work!

Thanks for the input about libcec and looking into if the version is outdated.
Again the link I posted is also of help to you since its regarding same Debian repos.
(2014-01-04, 00:10)uNiversal Wrote: [ -> ]Again the link I posted is also of help to you since its regarding same Debian repos.

Actually this problem is all about xorg and xserver, for some... *censoured harsh words* ... effin xorg utterly refuses to start the xserver, no configuration for Intel HD graphics is being correctly probed or whatever it does... Sincerly have no clue anymore why x wont start...
Probably need a much higher version of mesa and kernel/drivers depending on GPU., who knows, It was looking at libcec too but it failed to even go as far as that, idk.

You have support links for XBMC from Debian, so make use of it.
(2014-01-04, 00:40)uNiversal Wrote: [ -> ]Probably need a much higher version of mesa and kernel/drivers depending on GPU., who knows, It was looking at libcec too but it failed to even go as far as that, idk.

You have support links for XBMC from Debian, so make use of it.

I ranned xbmc v13-alpha( cant really member which github changeset/changelist ) with lesser versions of mesa/intel hd than i have tried to install( took intelĀ“s supported links from here https://01.org/linuxgraphics/downloads ). Going through the logs indicates that xorg/xserver is commucating over the HDMI cable with the connected hardware( Harman/Kardon, plasma screen ) and is receiving supported resolutions but the xorg -configure command still states the error i gave earlier and xserver wont start.
idk. go pull the XBMC from Debian and ask the guy. Libcec is broken anyway either remove it or go ove 2.1.6 or whatever wsnipex said.
oh Xeon E3-1200 is haswell, right? Then you definitely need a newer mesa(and probably libva).
I recommend mesa 10

It would be much easier using ubuntu: http://forum.xbmc.org/showthread.php?tid=165707