From mboxrd@z Thu Jan  1 00:00:00 1970
Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org)
	by finch.gentoo.org with esmtp (Exim 4.60)
	(envelope-from <gentoo-dev+bounces-50444-garchives=archives.gentoo.org@lists.gentoo.org>)
	id 1S8FzD-0005Pc-Hn
	for garchives@archives.gentoo.org; Thu, 15 Mar 2012 19:05:19 +0000
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 6C199E07EB;
	Thu, 15 Mar 2012 19:05:10 +0000 (UTC)
Received: from mail-bk0-f53.google.com (mail-bk0-f53.google.com [209.85.214.53])
	by pigeon.gentoo.org (Postfix) with ESMTP id AB361E0740
	for <gentoo-dev@lists.gentoo.org>; Thu, 15 Mar 2012 19:04:37 +0000 (UTC)
Received: by bkwj4 with SMTP id j4so2862393bkw.40
        for <gentoo-dev@lists.gentoo.org>; Thu, 15 Mar 2012 12:04:36 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
        d=gmail.com; s=20120113;
        h=mime-version:sender:in-reply-to:references:date
         :x-google-sender-auth:message-id:subject:from:to:content-type;
        bh=s9dmcVoeWuL+44NVlDpGAffyeeLxWnEcofLPDe3XWTY=;
        b=x9cW+Fih1Eytub3OM4D6b6eFQI8yJzP7JqbolwCsTak1graD+vk4854XNjlydkr8dE
         hJGRZRrhZF1V8wFCRRAMne5eCPMTM4OXiLuUz2+LekTTszxqD6rhlH78xa/IQ1ee5Phr
         jkNmfaiPXGGRzvM8eG7QUQtHKK8Yt5f2zXyyOwqkBnSeixJK2IMYCOvk6fa2iOlsDvkM
         xkhX5A3QdBZDvJzzcodpKNImE7jKi9UWpw70JpnxpULJK4pWA/g4KbgpWvjQ4X6p8HVE
         HsWt5fxjYTIq3fMQiDnY+m+mMI7Hndnns4NWhdah0ct8PzHV1FjogAb4+HLvFoKPtQ37
         s0qA==
Precedence: bulk
List-Post: <mailto:gentoo-dev@lists.gentoo.org>
List-Help: <mailto:gentoo-dev+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-dev+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-dev+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-dev.gentoo.org>
X-BeenThere: gentoo-dev@lists.gentoo.org
Reply-to: gentoo-dev@lists.gentoo.org
MIME-Version: 1.0
Received: by 10.204.130.150 with SMTP id t22mr2866964bks.1.1331838276706; Thu,
 15 Mar 2012 12:04:36 -0700 (PDT)
Sender: freemanrich@gmail.com
Received: by 10.205.32.194 with HTTP; Thu, 15 Mar 2012 12:04:36 -0700 (PDT)
In-Reply-To: <20120315144251.GB7777@kroah.com>
References: <4F5EA152.80604@gentoo.org>
	<CA+hid6GeAjwOKzQo7FQDjnzC+EkMisGF3sQGGUKfu=OCTD8BdA@mail.gmail.com>
	<4F5FE34A.4030609@gentoo.org>
	<pan.2012.03.14.08.39.20@cox.net>
	<4F6091CE.1050009@gentoo.org>
	<20120314144115.GA30606@kroah.com>
	<20120314145144.GC3200@ca.inter.net>
	<20120314150431.GA2033@kroah.com>
	<4F61CCD4.9000002@gentoo.org>
	<CAGfcS_kHn88h7_c57-s3gm4UKYoBpFOtSmCtU2yvUJDYnMg3Zg@mail.gmail.com>
	<20120315144251.GB7777@kroah.com>
Date: Thu, 15 Mar 2012 15:04:36 -0400
X-Google-Sender-Auth: s_TYdbkdHjoVxu364bO0S9XlJ9o
Message-ID: <CAGfcS_ns9Aj3bcJsS6C9EjSPHgtKzHwVASW-em2BxFL8=i2DgA@mail.gmail.com>
Subject: Re: [gentoo-dev] Re: Let's redesign the entire filesystem!
From: Rich Freeman <rich0@gentoo.org>
To: gentoo-dev@lists.gentoo.org
Content-Type: text/plain; charset=ISO-8859-1
X-Archives-Salt: 9f6c700d-6f17-4031-8711-7a02db4a8b84
X-Archives-Hash: e57de8a9529b6bd42acdfe17b0d036bb

On Thu, Mar 15, 2012 at 10:42 AM, Greg KH <gregkh@gentoo.org> wrote:
>
> Why not use the links in /dev/serial/ which are there for this specific
> reason?
>

# ls -l /dev/serial
ls: cannot access /dev/serial: No such file or directory

Something in a newer version of udev perhaps?  Or would my defining my
own symlinks end up overriding some rule elsewhere.  I just added
these lines to /etc/udev/rules.d:
SUBSYSTEM=="tty", DRIVERS=="pl2303", KERNELS=="4-1:1.0",
KERNEL=="ttyUSB*", SYMLINK="mythser/rca1"
SUBSYSTEM=="tty", DRIVERS=="pl2303", KERNELS=="3-3:1.0",
KERNEL=="ttyUSB*", SYMLINK="mythser/rca2"

Rich