From linux-arch Sun May 03 07:29:20 2009 From: Michael Tokarev Date: Sun, 03 May 2009 07:29:20 +0000 To: linux-arch Subject: Re: [PATCH] driver-core: devtmpfs - driver core maintained /dev tmpfs Message-Id: <49FD47D0.2070802 () msgid ! tls ! msk ! ru> X-MARC-Message: https://marc.info/?l=linux-arch&m=124133576610350 Alan Jenkins wrote: > On 5/2/09, Kay Sievers wrote: [] >>> And it >>> gives a nice clean way for new initramfs' to test for this feature - >>> when they try to mount it, it fails. It would seem to make for a >>> rather smoother migration path. >> I think that is all covered just fine. > > Oh, I see. > > grep "/dev" /proc/mounts > /dev/null Oh no. This one will match all your /dev/sda1 etc too :) What yo want to do is either grep -w /dev /proc/mount or awk '$2 == "/dev" { exit 0; } END { exit 1; }' /proc/mounts or something similar. To distinguish between the following two cases: /dev/sda1 / ext3 rw,noatime,data=ordered 0 0 devfs /dev tmpfs rw,nosuid,size=512k,mode=755 0 0 /mjt -- To unsubscribe from this list: send the line "unsubscribe linux-arch" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html