diff options
Diffstat (limited to 'hacks')
-rw-r--r-- | hacks/Makefile | 7 | ||||
-rw-r--r-- | hacks/startup_hacks.sh | 9 |
2 files changed, 16 insertions, 0 deletions
diff --git a/hacks/Makefile b/hacks/Makefile new file mode 100644 index 0000000..abb4ed3 --- /dev/null +++ b/hacks/Makefile @@ -0,0 +1,7 @@ +all: + +install: + mkdir -p $(DESTDIR)/usr/sbin + install startup_hacks.sh $(DESTDIR)/usr/sbin + +clean: diff --git a/hacks/startup_hacks.sh b/hacks/startup_hacks.sh new file mode 100644 index 0000000..3a93e90 --- /dev/null +++ b/hacks/startup_hacks.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +systemctl stop serial-getty@ttyS0 + +# Setup VUART +VUART=/sys/devices/platform/ahb/ahb:apb/1e787000.vuart +echo 4 > $VUART/sirq +echo 0x3f8 > $VUART/lpc_address +echo 1 > $VUART/enabled |