Switch of echo on ttyS1 (required for bluetooth to function correctly)
[openwrt/openwrt.git] / target / linux / omap35xx / gumstix / base-files / lib / preinit / 95_ttyS1_noecho
1 #!/bin/sh
2 # Copyright (C) 2010 OpenWrt.org
3
4 ttyS1_noecho() {
5 stty -echo < /dev/ttyS1
6 }
7
8 boot_hook_add preinit_main ttyS1_noecho
9