b1c4ba4ab6
Due to the ABI we are using we have to use the earm architecture moniker for the build system to behave correctly. This involves then some headers to move around. There is also a few related Makefile updates as well as minor source code corrections.
16 lines
281 B
Bash
Executable file
16 lines
281 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
|
|
|
|
exit
|