[LINUX] Beagle Board ( BeagleBoard with Texas Instrument OMAP3530 ARM SoC ) and XBMC?

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
topfs2 Offline
Team-XBMC Developer
Posts: 3,825
Joined: Dec 2007
Reputation: 8
Post: #11
I have not seen that error, slap a std:: infront of the abs call and see if that fixes it (not sure which of the one its supposed to call).

If you have problems please read this before posting

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.


[Image: badge.gif]

"Well Im gonna download the code and look at it a bit but I'm certainly not a really good C/C++ programer but I'd help as much as I can, I mostly write in C#."
find quote
bobo1on1 Offline
cheapass Team-XBMC Developer
Posts: 2,752
Joined: Dec 2008
Reputation: 20
Post: #12
You should get git master, this seems fixed already.
find quote
nokia001 Offline
Junior Member
Posts: 5
Joined: Jan 2011
Reputation: 0
Post: #13
Ok. Thanks for help.

in line 253:
if (m_iVSyncMode && m_iSwapRate != 0)
{
int64_t curr, diff;
curr = CurrentHostCounter();

diff = curr - m_iSwapStamp;
m_iSwapStamp = curr;

if (std::abs(diff - m_iSwapRate) < std::abs(diff))
CLog::Log(LOGDEBUG, "%s - missed requested swap",__FUNCTION__);
}

make --> ok

glx -->ok
TestDemo --> gfx/CommonX11/Demos/ChameleonMan/OGLESChameleonMan --> ok

new error:
DISPLAY=:0.0 /root/xbmc_gsoc/xbmc.bin
sh: lsb_release: not found
sh: lsb_release: not found
libEGL fatal: DRI2: failed to authenticate
(This post was last modified: 2011-01-20 10:42 by nokia001.)
find quote
topfs2 Offline
Team-XBMC Developer
Posts: 3,825
Joined: Dec 2007
Reputation: 8
Post: #14
read how to post a proper bugreport to provide the necessary information

If you have problems please read this before posting

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.


[Image: badge.gif]

"Well Im gonna download the code and look at it a bit but I'm certainly not a really good C/C++ programer but I'd help as much as I can, I mostly write in C#."
find quote
delboywebster Offline
Junior Member
Posts: 2
Joined: Jan 2011
Reputation: 0
Post: #15
here's the log :-

root@beagleboard:~/.xbmc/temp# cat xbmc.log
23:26:03 T:1115662240 M:226213888 NOTICE: -----------------------------------------------------------------------
23:26:03 T:1115662240 M:226017280 NOTICE: Starting XBMC, Platform: Linux (Description: Angstrom GNU/Linux 2010.7-test-20110119 (foo), 2.6.32 armv7l). Built on Oct 6 2010 (SVN:32831)
23:26:03 T:1115662240 M:226017280 NOTICE: special://xbmc/ is mapped to: /usr/share/xbmc
23:26:03 T:1115662240 M:226017280 NOTICE: special://xbmcbin/ is mapped to: /usr/lib/xbmc
23:26:03 T:1115662240 M:226017280 NOTICE: special://masterprofile/ is mapped to: /home/root/.xbmc/userdata
23:26:03 T:1115662240 M:226017280 NOTICE: special://home/ is mapped to: /home/root/.xbmc
23:26:03 T:1115662240 M:226017280 NOTICE: special://temp/ is mapped to: /home/root/.xbmc/temp
23:26:03 T:1115662240 M:226017280 NOTICE: The executable running is: /usr/lib/xbmc/xbmc.bin
23:26:03 T:1115662240 M:226017280 NOTICE: Log File is located: /home/root/.xbmc/temp/xbmc.log
23:26:03 T:1115662240 M:226017280 NOTICE: -----------------------------------------------------------------------
23:26:03 T:1115662240 M:225992704 ERROR: CXRandR::Query - unable to open xrandr xml
23:26:03 T:1115662240 M:225992704 NOTICE: Setup SDL
23:26:03 T:1115662240 M:225996800 ERROR: EGL Error: No Display found! dpy:(nil) egl:(nil) init:0
23:26:03 T:1115662240 M:225996800 FATAL: CApplication::Create: Unable to init windowing system
23:26:03 T:1115662240 M:225996800 DEBUG: GUI Shader - Destroying Shader : (nil)

This is what I selected from Narcissus :-
beagleboard
simple
X11
XBMC
Bootloader files

I then extracted the rootfs, uImage to mmc and changed the following environments :-
setenv vram '16M'
setenv dvimode 'hd720 omapfb.vram=0:8M,1:4M,2:4M'


B.T.W.
If I download the http://www.angstrom-distribution.org/demo/beagleboard and opkg install xbmc it kind of works (main menu didn't redraw correctly when scrolling the text or moving the mouse and movie crashed while trying to fast forward). Thought this could be due the gnome bloat, hence the reason to start with a minimal system and work my way upwards - what am I missing (apart from a pandaboard) ?
:confused2:
find quote
topfs2 Offline
Team-XBMC Developer
Posts: 3,825
Joined: Dec 2007
Reputation: 8
Post: #16
Ok, read the wiki again! ENTIRE debug log, comon its not that hard... and put it on pastebin pleeease.

If you can't get display thats usually that you don't have X11 running, or not accesible from what you run. i.e. you not running xbmc from X11

If you have problems please read this before posting

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.


[Image: badge.gif]

"Well Im gonna download the code and look at it a bit but I'm certainly not a really good C/C++ programer but I'd help as much as I can, I mostly write in C#."
find quote
Tonci Offline
Junior Member
Posts: 5
Joined: May 2011
Reputation: 0
Post: #17
Hi guys,

I followed the instructions of GSoC XBMC Project and came to the Build
Instructions (native),
but I don't know what to do there.
Can anyone explain this for noobs?
find quote
encore118 Offline
Junior Member
Posts: 1
Joined: Dec 2011
Reputation: 0
Post: #18
I also have the beagleboard xm and would like to know if anyone has successfully implemented XBMC or even better XBMC OpenElec...thx
find quote
Stan88 Offline
Junior Member
Posts: 1
Joined: Apr 2012
Reputation: 0
Post: #19
Good day for all. I don't wont to create another topic, that's why I'm asking here. I have the Beagleboard-xM Rev C. and wont to run XBMC. But when I make ./configure --enable-gles --enable-omap-overlay --prefix=/usr --sysconfdir=/etc --cache=config.cache --disable-optical-drive - there is an error occurs:

config.status: creating pyconfig.h
config.status: pyconfig.h is unchanged
creating Setup
creating Setup.local
creating Makefile
in word
mv: cannot stat `config.c': No such file or directory
configure: error: Submodule xbmc/lib/libPython/Python failed to configure

Please, help me to solve this problem.
Regards, Stan88.
find quote
Post Reply