Crystal HD Driver Error: Update script exited with status: 3

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
positive Offline
Junior Member
Posts: 5
Joined: Mar 2009
Reputation: 0
Location: Siberia, Russia
Sad  Crystal HD Driver Error: Update script exited with status: 3 Post: #1
Angry What?
find quote
Elbert Offline
Senior Member
Posts: 131
Joined: Oct 2009
Reputation: 4
Location: Netherlands
Post: #2
Indeed, what? Providing a little bit more information and actually posing a question would make it easier for us to help you Wink
find quote
positive Offline
Junior Member
Posts: 5
Joined: Mar 2009
Reputation: 0
Location: Siberia, Russia
Post: #3
Install XBMC svn r28256
Code:
ssh frontrow@appletv.local
defaults write com.teamxbmc.xbmclauncher XBMCAdditionalDownloadPlistURLs -array-add http://crystalhd.sartori.at/files/crystalhd.plist

xbmc/downloads/CrystalHD Driver r26 - tap, write: download 1.0mb(100%) running crystalhd installer - Error: Update script exited with status: 3
find quote
davilla Offline
Team-XBMC Developer
Posts: 10,397
Joined: Feb 2008
Reputation: 58
Post: #4
positive Wrote:Install XBMC svn r28256
Code:
ssh frontrow@appletv.local
defaults write com.teamxbmc.xbmclauncher XBMCAdditionalDownloadPlistURLs -array-add http://crystalhd.sartori.at/files/crystalhd.plist

xbmc/downloads/CrystalHD Driver r26 - tap, write: download 1.0mb(100%) running crystalhd installer - Error: Update script exited with status: 3

Can you manually retrieve the plist ?

"wget http://crystalhd.sartori.at/files/crystalhd.plist"


MediaInfo : http://mediainfo.sourceforge.net/
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
find quote
tcroak Offline
Member
Posts: 64
Joined: Mar 2010
Reputation: 0
Post: #5
davilla Wrote:Can you manually retrieve the plist ?

"wget http://crystalhd.sartori.at/files/crystalhd.plist"

Is 28256 the most recent stable version that's out there?

I've noticed that I don't get any stutter at the 1 hr mark. Has this been fixed?
find quote
davilla Offline
Team-XBMC Developer
Posts: 10,397
Joined: Feb 2008
Reputation: 58
Post: #6
tcroak Wrote:Is 28256 the most recent stable version that's out there?

I've noticed that I don't get any stutter at the 1 hr mark. Has this been fixed?

28256 is the current nightly release.


MediaInfo : http://mediainfo.sourceforge.net/
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
find quote
tcroak Offline
Member
Posts: 64
Joined: Mar 2010
Reputation: 0
Post: #7
davilla Wrote:28256 is the current nightly release.

Davilla, you're just awesome. I don't know if I would have the fortitude that you do! Thank you for all you've done.

What's the URL for contribs?
find quote
davilla Offline
Team-XBMC Developer
Posts: 10,397
Joined: Feb 2008
Reputation: 58
Post: #8
tcroak Wrote:Davilla, you're just awesome. I don't know if I would have the fortitude that you do! Thank you for all you've done.

What's the URL for contribs?

http://xbmc.org/contribute/donate/


MediaInfo : http://mediainfo.sourceforge.net/
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
find quote
pantherman007 Offline
Member
Posts: 87
Joined: Apr 2007
Reputation: 0
Location: Houston, TX
Post: #9
I just popped a Crystal HD card into my ATV and am getting this same error. I have:

- ATV running 2.2
- Launcher 3.2.4 (ran it again just to be sure)
- Run andy204's script to add the Driver install into the Downloads section. My Launcher shows options for XBM9.11, XBMC SVN, CrystalHD r26, Boxee, and Launcher options.
- When I run the "CrystalHD Driver r26" application I see:
1) It downloads a 1MB crystalhd.tar.gz file (apparently successfully)
2) Screen flash, then "Downloading Update: CrystalHD Driver r26"
3) Another screen flash, the "Running crystalhd_install.sh..."
4) Then get "Error: Update script exited with status: 3"

I looked for the original (non Launcher) install script out on the sartori website in hopes I could get that to work, but it looks like it's been pulled down in favor of the newer, integrated option.

Can someone point me in the right direction, here? I'm not sure where the Launcher app is storing these files to look for logs. Many thanks -
find quote
andy204 Offline
Senior Member
Posts: 215
Joined: Jan 2010
Reputation: 0
Location: Austria
Post: #10
hello,

exit code 3 means that the install script could not find a crystalhd card.
from the script:
Code:
#!/bin/sh
# andreas sartori andreas@sartori.at
# last modified: 2010-02-14
# exit codes
# 2: driver package does not exist
# 3: no crystalhd card installed
# 4: cant find turbo download

this is the code checking for the crystalhd card.
Code:
check_load()
{
    kextstat -b com.broadcom.crystalhd.driver |grep crystalhd > /dev/null 2>&1
    if [ $? -eq 0 ]; then
        echo $PW | sudo -S kextunload /System/Library/Extensions/BroadcomCrystalHD.kext > /dev/null 2>&1
        sleep 2
    fi
    echo $PW | sudo -S kextload /System/Library/Extensions/BroadcomCrystalHD.kext > /dev/null 2>&1
    if [ $? -eq 0 ]; then
        echo "crystalhd loaded"
      else
        echo "error loading crystalhd, exiting..."
        exit 3
      fi
}

this piece of code worked for several months now.

please check if the card has been installed the right way. where did you buy this card? ebay or logicsupply?

thanks for the information.

-andy

CrystalHD Installer XBMC Community Forum Thread -
Apple TV CrystalHD Installer Announcement - Broadcom CrystalHD Installer
http://www.sartori.at/ - my weblog

Sync your MAC and Google Account (+ Google Apps) - Click here for 5$ Discout

Living Room: HFX Micro black - Zotac IONITX G - Intel X25V - Hama remote
Bedroom: Linux AppleTV - CrystalHD
find quote
Post Reply