Forum
  • Search
  • Member List
  • Calendar
Hello There, Guest! Login Register — Login with Facebook

boot text
Thank you for your donation

Pages (2): 1 2 Next »
Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Threaded Mode | Linear Mode
boot text
15th Jan, 2013, 01:41 AM
Post: #1
julius02 Offline
Registered
Posts: 25
Joined: Jan 2013
Reputation: 0
boot text
Is there any way of hiding the boot text that appears on the left upon initial switch on. Ideally i would like a full screen raspberry logo instead of the text. Just makes it look more professional if it is going in a living room rather than a commodore 64 hooked up to the tv lol
Find all posts by this user
Quote this message in a reply
15th Jan, 2013, 02:13 AM
Post: #2
Koenkk Offline
Registered
Posts: 1,238
Joined: Dec 2012
Reputation: 112
RE: boot text
XBian 1.0 Alpha 5 will (probably) include a XBian boot splash screen. See https://github.com/xbianonpi/xbian/issues/125

Please read rules and do a search before you post! . FAQs . How to post log file? . Looking for answers? Please start here
Find all posts by this user
Quote this message in a reply
15th Jan, 2013, 04:15 PM
Post: #3
namtih Offline
Tester
Posts: 269
Joined: Dec 2012
Reputation: 28
RE: boot text
Like stated in the link:
Quote:Please use a file on /boot/ to check if it should show verbose output.

Can you please add such function to xbian-config?
Find all posts by this user
Quote this message in a reply
15th Jan, 2013, 07:35 PM
Post: #4
julius02 Offline
Registered
Posts: 25
Joined: Jan 2013
Reputation: 0
RE: boot text
(15th Jan, 2013 04:15 PM)namtih Wrote:  Like stated in the link:
Quote:Please use a file on /boot/ to check if it should show verbose output.

Can you please add such function to xbian-config?

would be good if you could do this without having to wait for a software update.
Find all posts by this user
Quote this message in a reply
15th Jan, 2013, 08:00 PM
Post: #5
CurlyMo Offline
Registered
Posts: 3,501
Joined: Dec 2012
Reputation: 202
RE: boot text
You can just edit /boot/cmdline.txt to enable or disable the splash screen.

pilight - modular domotica solution
Visit this user's website Find all posts by this user
Quote this message in a reply
15th Jan, 2013, 08:03 PM
Post: #6
julius02 Offline
Registered
Posts: 25
Joined: Jan 2013
Reputation: 0
RE: boot text
(15th Jan, 2013 08:00 PM)CurlyMo Wrote:  You can just edit /boot/cmdline.txt to enable or disable the splash screen.

Just to confirm this isn't referring to the xbian splash logo?
I am talking about the text that appears on the left on first boot. I am trying to hide that.
Find all posts by this user
Quote this message in a reply
15th Jan, 2013, 08:59 PM
Post: #7
CurlyMo Offline
Registered
Posts: 3,501
Joined: Dec 2012
Reputation: 202
RE: boot text
Aha, just add:
Code:
logo.nologo
To the end of your /boot/cmdline.txt

pilight - modular domotica solution
Visit this user's website Find all posts by this user
Quote this message in a reply
16th Jan, 2013, 04:49 PM
Post: #8
namtih Offline
Tester
Posts: 269
Joined: Dec 2012
Reputation: 28
RE: boot text
Do you also have the right command to store the debug start messages to a file?
Find all posts by this user
Quote this message in a reply
16th Jan, 2013, 07:59 PM
Post: #9
CurlyMo Offline
Registered
Posts: 3,501
Joined: Dec 2012
Reputation: 202
RE: boot text
@namtih, can you carify this a little bit?

pilight - modular domotica solution
Visit this user's website Find all posts by this user
Quote this message in a reply
17th Jan, 2013, 12:09 AM
Post: #10
namtih Offline
Tester
Posts: 269
Joined: Dec 2012
Reputation: 28
RE: boot text
When the Raspberry/xbian is starting you see a debug log before the xbian logo is shown. I wasn't able to find those messages on the filesystem or dmesg. So I was wondering if it needs any boot parameter so that the log is written to a file on the filesystem.
Find all posts by this user
Quote this message in a reply
17th Jan, 2013, 12:14 AM
Post: #11
CurlyMo Offline
Registered
Posts: 3,501
Joined: Dec 2012
Reputation: 202
RE: boot text
Those messages should just be in your dmesg (/var/log/dmesg)

pilight - modular domotica solution
Visit this user's website Find all posts by this user
Quote this message in a reply
17th Jan, 2013, 11:36 AM
Post: #12
raspberry_pd Offline
Registered
Posts: 97
Joined: Dec 2012
Reputation: 6
RE: boot text
(17th Jan, 2013 12:14 AM)CurlyMo Wrote:  Those messages should just be in your dmesg (/var/log/dmesg)
I have found that not all boot messages are saved in dmesg or syslog . In fact most error messages are not in dmesg. Hence I felt the need for a better solution and found bootlogd which I mentioned here:

http://forum.xbian.org/thread-182-post-1876.html#pid1876

I installed it and it works but there was a strange problem whereby the last third of characters on each line were obfuscated. If we can solve this buggy character issue, bootlogd might be the best way to trap boot errors and debug a whole bunch of problems.

(17th Jan, 2013 12:09 AM)namtih Wrote:  When the Raspberry/xbian is starting you see a debug log before the xbian logo is shown. I wasn't able to find those messages on the filesystem or dmesg. So I was wondering if it needs any boot parameter so that the log is written to a file on the filesystem.

Please try this:

Code:
sudo apt-get install bootlogd

then add

Code:
BOOTLOGD_ENABLE=yes

to

Code:
/etc/default/bootlogd

and reboot. Then see if ...

Code:
/var/log/boot

contains helpful boot messages.

I'd be very interested to read your results. Do you see the scrambled or obfuscated characters near the end of lines?
Find all posts by this user
Quote this message in a reply
17th Jan, 2013, 11:42 AM
Post: #13
CurlyMo Offline
Registered
Posts: 3,501
Joined: Dec 2012
Reputation: 202
RE: boot text
I've tried various solutions to properly screen boot messages (while developing the animated splash) but haven't found one that was satisfying. But indeed, bootlogd can help screen boot messages.

pilight - modular domotica solution
Visit this user's website Find all posts by this user
Quote this message in a reply
17th Jan, 2013, 06:20 PM
Post: #14
raspberry_pd Offline
Registered
Posts: 97
Joined: Dec 2012
Reputation: 6
RE: boot text
What sort of animated splash did you have in mind Curlymo? I'd prefer something meaningful as well as attractive looking. Something that actually demonstrates how much of the boot process has completed, a progress indicator, would be ideal.
Find all posts by this user
Quote this message in a reply
17th Jan, 2013, 08:10 PM
Post: #15
CurlyMo Offline
Registered
Posts: 3,501
Joined: Dec 2012
Reputation: 202
RE: boot text
The splash is already done. Will be released with Alpha 5. And then, you will be one of the first people to see it Wink

pilight - modular domotica solution
Visit this user's website Find all posts by this user
Quote this message in a reply
« Next Oldest | Next Newest »
Pages (2): 1 2 Next »
Post Reply 


  • View a Printable Version
  • Send this Thread to a Friend
  • Subscribe to this thread
Forum Jump:

Current time: 19th May, 2025, 02:59 AM Powered By MyBB, © 2002-2025 MyBB Group.