ba49a155b5
This patch introduces a framebuffer to Minix. It's written for the ARM port of Minix, but has an architectural split that separates the hardware dependent part from the non-hardware dependent part. Futhermore, this driver was developed using a screen that has a native resolution of 1024x600 pixels and having lack of support for obtaining EDID from the screen. Consequently, it uses a hardcoded resolution of 1024x600. The driver uses an interface based on the Linux ioctl API, but supports only a very limited subset.
18 lines
359 B
Bash
Executable file
18 lines
359 B
Bash
Executable file
#!/bin/sh
|
|
# LSC FIXME quick hack, we should retink the rc script so we do not
|
|
# get two different script
|
|
set -e
|
|
|
|
|
|
exec >/dev/log
|
|
exec 2>/dev/log
|
|
exec </dev/null
|
|
|
|
#XXX
|
|
#/bin/service -c up /sbin/mmc -dev /dev/c0d0
|
|
#/bin/fsck.mfs -p /dev/c0d0p1
|
|
#/bin/mount /dev/c0d0p1 /mnt
|
|
#gpio
|
|
#mount -t gpio none /gpio
|
|
#service up /sbin/fb -dev /dev/fb0 -period 2HZ
|
|
exit
|