GUF-Yocto-jethro-9.0-r7707-0
i.MX6
User Manual
Figure 7: Custom image of the full bar
Example 3
shows how the progress bar looks in boot process with the initial images from
Example 2
Figure 8: Progress bar while booting at 30%
Figure 9: Progress bar while booting at 70%
Example 4
shows how to disable the progress bar completely:
root@santaro:~# update-rc.d -f psplash.sh remove
Example 5
shows how to enable the progress bar again:
root@santaro:~# update-rc.d psplash.sh start 04 S . stop 20 0 1 6 .
4.2.8 Sendmail
The
sendmail
tool can be used to send emails from the device. The sendmail tool is based on busybox and has
no configuration files. Everything is passed via command line.
The mail is passed using stdin. For a simple test, the following can be put to into mail.txt
From: <[email protected]>
To: <[email protected]>
Subject: Mail Header
Hello,
This is the mail body text.
Note that the empty line between subject and email text is part of the mail format and needs to be preserved!
This mail can be sent with:
sendmail
-f <[email protected]> -S <smtpserver>
,!
< mail.txt
The example requires an SMTP server at <smtpserver> on port 25 without authentication. For enabling authen-
tication and encryption read the manuals for sendmail/busybox sendmail.
31