/etc ディレクトリ の pcmcia 関連を 削除します。
# cd ../etc/
# pwd
/home/oboot/003_final_root/a_files/qmt/etc
# ls
HOSTNAME group ld.so.cache networks rc.d/ syslog.conf
catme host.conf ld.so.conf nsswitch.conf securetty termcap
cis/ hosts login.defs passwd services
custom/ inittab motd pcmcia/ shadow
fstab issue mtab profile shells
# rm -r pcmcia/
# ls
HOSTNAME group ld.so.cache networks securetty termcap
catme host.conf ld.so.conf nsswitch.conf services
cis/ hosts login.defs passwd shadow
custom/ inittab motd profile shells
fstab issue mtab rc.d/ syslog.conf
# cd rc.d/ # pwd /home/oboot/003_final_root/a_files/qmt/etc/rc.d # ls pcmcia* rc.S* rc.inet1* # rm pcmcia # ls rc.S* rc.inet1* # cp rc.S rc.S_org # vi rc.S # diff -s rc.S rc.S_org 12,17c12,17 < ##### chk_pcmcia=`lspci -n | grep "Class 060[57]"` < ##### if [ -n "$chk_pcmcia" ] ; then < ##### echo "found PCMCIA bridge. starting PCMCIA-CS" < ##### /etc/rc.d/pcmcia start < ##### sleep 5 < ##### fi --- > chk_pcmcia=`lspci -n | grep "Class 060[57]"` > if [ -n "$chk_pcmcia" ] ; then > echo "found PCMCIA bridge. starting PCMCIA-CS" > /etc/rc.d/pcmcia start > sleep 5 > fi # rm rc.S_org
残しておきたいのですが 容量の関係で 削除します。
にゃんたろう 拝!
2010年 5月 2日 (日) 21:04:51 JST 作成