diff options
| author | Dagg Stompler <daggs@gmx.com> | 2016-11-25 09:48:46 +0200 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-11-25 22:02:02 +0100 |
| commit | 3fdb3af6316278400446511a7e6c53cde43f4a09 (patch) | |
| tree | dccf1fe7abe8925382037894b1d976f9701e6971 /package/odroid-scripts/S02odroidc2_fb | |
| parent | d634d9dda7f3c328d63469cb628c79da49a09e89 (diff) | |
| download | buildroot-3fdb3af6316278400446511a7e6c53cde43f4a09.tar.gz buildroot-3fdb3af6316278400446511a7e6c53cde43f4a09.zip | |
odroid-scripts: init display as early as possible
this commit will init the display as early as possible so the user can
see on screen the boot process.
the displey init will be called after the logging init to provide some
logging of the init.
Signed-off-by: Dagg Stompler <daggs@gmx.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/odroid-scripts/S02odroidc2_fb')
| -rw-r--r-- | package/odroid-scripts/S02odroidc2_fb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/package/odroid-scripts/S02odroidc2_fb b/package/odroid-scripts/S02odroidc2_fb new file mode 100644 index 0000000000..2aae59db98 --- /dev/null +++ b/package/odroid-scripts/S02odroidc2_fb @@ -0,0 +1,20 @@ +#!/bin/sh +# +# Set up frame buffer +# + +case "$1" in + start) + echo "Setting up display..." + /usr/sbin/odroidc2_init_fb.sh + ;; + stop) + ;; + restart|reload) + ;; + *) + echo "Usage: $0 {start|stop|restart}" + exit 1 +esac + +exit $? |

