1#!/bin/sh
2# Copyright (C) 2010 OpenWrt.org
3
4ttyS1_noecho() {
5	stty -echo < /dev/ttyO1
6}
7
8boot_hook_add preinit_main ttyS1_noecho
9
10