you could temporarily place something along the lines of the below
into your rc.local file so it runs at startup.
version=`uname -r`
major=`echo ${version} | awk -F. '{print $1}'`
minor=`wcho ${version} | awk -F. '{print $2}'`
patch=`echo ${version} | awk -F. '{print $3}'`
if [ ${major} -eq 2 -a ${minor} -eq 1 -a ${patch} -ge 115 ]
then
(cd /dev; ./MAKEDEV pty)
else
(cd /dev; ./MAKEDEV old_pty)
fi
Then you just need to modify /dev/MAKEDEV to understand creating
both the new pty and the old pty.
>
> david parsons
-- Terry L. Ridder Blue Danube Software (Blaue Donau Software) "We do not write software, we compose it."When the toast is burnt and all the milk has turned and Captain Crunch is waving farewell when the Big One finds you may this song remind you that they don't serve breakfast in hell ==Breakfast==Newsboys
- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.rutgers.edu Please read the FAQ at http://www.altern.org/andrebalsa/doc/lkml-faq.html