亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? e1000e.spec

?? DELL755 Intel 網卡驅動
?? SPEC
字號:
Name: e1000eSummary: Intel(R) Gigabit Ethernet ConnectionVersion: 0.4.1.7Release: 1Source: %{name}-%{version}.tar.gzVendor: Intel CorporationLicense: GPLExclusiveOS: linuxGroup: System Environment/KernelProvides: %{name}URL: http://support.intel.com/support/go/linux/e1000e.htmBuildRoot: %{_tmppath}/%{name}-%{version}-root# do not generate debugging packages by default - newer versions of rpmbuild# may instead need:#%define debug_package %{nil}%debug_package %{nil}# macros for finding system files to update at install time (pci.ids, pcitable)%define find() %(for f in %*; do if [ -e $f ]; then echo $f; break; fi; done)%define _pciids   /usr/share/pci.ids        /usr/share/hwdata/pci.ids%define _pcitable /usr/share/kudzu/pcitable /usr/share/hwdata/pcitable /dev/null%define pciids    %find %{_pciids}%define pcitable  %find %{_pcitable}Requires: kernel, fileutils, findutils, gawk, bash%descriptionThis package contains the Linux driver for the Intel(R) Gigabit Family of Server Adapters.%prep%setup%buildmkdir -p %{buildroot}KV=$(uname -r)KA=%{_arch}KV_BASE=$(echo $KV | sed '{ s/hugemem//g; s/smp//g; s/enterprise//g; }' )if [ -e /usr/src/kernels ] && [ $(echo $KV_BASE | grep "^2.6") ]; then	if [ -e /etc/redhat-release ]; then		KSP=$(ls /lib/modules | grep $KV_BASE)		for K in $KSP ; do			if [ $KA == "x86_64" ] && \			   [ $(echo $K | grep hugemem) ]; then				# Include path for x86_64 hugemem is broken				# on RHEL4				continue			fi			make -C src clean			make -C src KSP=/lib/modules/$K/build \				INSTALL_MOD_PATH=%{buildroot} \				KVERSION=$k \				MANDIR=%{_mandir} \				CFLAGS_EXTRA="$CFLAGS_EXTRA" install		done	else		make -C src clean		make -C src INSTALL_MOD_PATH=%{buildroot} \			MANDIR=%{_mandir} install	fielse	SwitchRHKernel () {		CFLAGS_EXTRA=""		for K in $2 ; do			if [ $K == $1 ] ; then				CFLAGS_EXTRA="$CFLAGS_EXTRA -D__BOOT_KERNEL_$K=1"			else				CFLAGS_EXTRA="$CFLAGS_EXTRA -D__BOOT_KERNEL_$K=0"			fi		done	}	KSP="/lib/modules/$KV/build	     /usr/src/linux-$KV	     /usr/src/linux-$(echo $KV | sed 's/-.*//')	     /usr/src/kernel-headers-$KV	     /usr/src/kernel-source-$KV	     /usr/src/linux-$(echo $KV | sed 's/\([0-9]*\.[0-9]*\)\..*/\1/')	     /usr/src/linux"	KSRC=$(for d in $KSP ; do [ -e $d/include/linux ] && echo $d; echo;  done)	KSRC=$(echo $KSRC | awk '{ print $1 }')	if [ -e $KSRC/include/linux/rhconfig.h ] ; then		RHKL=$(grep 'BOOT_KERNEL_.* [01]' /boot/kernel.h |		       sed 's/.*BOOT_KERNEL_\(.*\) [01]/\1/')		if echo $RHKL | grep BIGMEM		then			RHKL=$(echo $RHKL | sed 's/ENTERPRISE//')		fi		if echo $RHKL | grep HUGEMEM		then			RHKL=$(echo $RHKL | sed 's/BIGMEM//')		fi		for K in $RHKL ; do			SwitchRHKernel $K "$RHKL"			make -C src clean			if [ $KA == "x86_64" ] ; then				CFLAGS_EXTRA="$CFLAGS_EXTRA -D__MODULE_KERNEL_x86_64=0 -D__MODULE_KERNEL_ia32e=1"			fi			make -C src INSTALL_MOD_PATH=%{buildroot} \				MANDIR=%{_mandir} CFLAGS_EXTRA="$CFLAGS_EXTRA" install		done	else		make -C src clean		make -C src INSTALL_MOD_PATH=%{buildroot} MANDIR=%{_mandir} install	fifi%install# Append .new to driver name to avoid conflict with kernel RPMcd %{buildroot}find lib -name "e1000e.*o" -exec mv {} {}.new \; \         -fprintf %{_builddir}/%{name}-%{version}/file.list "/%p.new\n"%cleanrm -rf %{buildroot}%files -f %{_builddir}/%{name}-%{version}/file.list%defattr(-,root,root)%{_mandir}/man7/e1000e.7.gz%doc COPYING%doc README%doc file.list%doc pci.updates%postFL="%{_docdir}/%{name}-%{version}/file.list    %{_docdir}/%{name}/file.list"FL=$(for d in $FL ; do if [ -e $d ]; then echo $d; break; fi;  done)if [ -d /usr/local/lib/%{name} ]; then	rm -rf /usr/local/lib/%{name}fiif [ -d /usr/local/share/%{name} ]; then	rm -rf /usr/local/share/%{name}fi# Save old drivers (aka .o and .o.gz)echo "original pci.ids saved in /usr/local/share/%{name}";if [ "%{pcitable}" != "/dev/null" ]; then	echo "original pcitable saved in /usr/local/share/%{name}";fifor k in $(sed 's/\/lib\/modules\/\([0-9a-zA-Z_\.\-]*\).*/\1/' $FL) ; do	d_drivers=/lib/modules/$k	d_usr=/usr/local/share/%{name}/$k	mkdir -p $d_usr	cd $d_drivers; find . -name %{name}.*o -exec cp --parents {} $d_usr \; -exec rm -f {} \;	cd $d_drivers; find . -name %{name}_*.*o -exec cp --parents {} $d_usr \; -exec rm -f {} \;	cd $d_drivers; find . -name %{name}.*o.gz -exec cp --parents {} $d_usr \; -exec rm -f {} \;	cd $d_drivers; find . -name %{name}_*.*o.gz -exec cp --parents {} $d_usr \; -exec rm -f {} \;	cp --parents %{pciids} /usr/local/share/%{name}/	if [ "%{pcitable}" != "/dev/null" ]; then		cp --parents %{pcitable} /usr/local/share/%{name}/	fidone# Add driver linkfor f in $(sed 's/\.new$//' $FL) ; do	ln -f $f.new $f done# Check if kernel version rpm was built on IS the same as running kernelBK_LIST=$(sed 's/\/lib\/modules\/\([0-9a-zA-Z_\.\-]*\).*/\1/' $FL)MATCH=nofor i in $BK_LISTdo	if [ $(uname -r) == $i ] ; then		MATCH=yes		break	fidoneif [ $MATCH == no ] ; then	echo -n "WARNING: Running kernel is $(uname -r).  "	echo -n "RPM supports kernels (  "	for i in $BK_LIST	do		echo -n "$i  "	done	echo ")"fiLD="%{_docdir}/%{name}";if [ -d %{_docdir}/%{name}-%{version} ]; then	LD="%{_docdir}/%{name}-%{version}";fi#Yes, this really needs bashbash -s %{pciids} \	%{pcitable} \	$LD/pci.updates \	$LD/pci.ids.new \	$LD/pcitable.new \	%{name} \<<"END"#! /bin/bash# $1 = system pci.ids file to update# $2 = system pcitable file to update# $3 = file with new entries in pci.ids file format# $4 = pci.ids output file# $5 = pcitable output file# $6 = driver name for use in pcitable fileexec 3<$1exec 4<$2exec 5<$3exec 6>$4exec 7>$5driver=$6IFS=# pattern matching stringsID="[[:xdigit:]][[:xdigit:]][[:xdigit:]][[:xdigit:]]"VEN="${ID}*"DEV="	${ID}*"SUB="		${ID}*"TABLE_DEV="0x${ID}	0x${ID}	\"*"TABLE_SUB="0x${ID}	0x${ID}	0x${ID}	0x${ID}	\"*"line=table_line=ids_in=table_in=vendor=device=ids_device=table_device=subven=ids_subven=table_subven=subdev=ids_subdev=table_subdev=ven_str=dev_str=sub_str=# force a sub-shell to fork with a new stdin# this is needed if the shell is reading these instructions from stdinwhile truedo	# get the first line of each data file to jump start things	exec 0<&3	read -r ids_in	if [ "$2" != "/dev/null" ];then	exec 0<&4	read -r table_in	fi	# outer loop reads lines from the updates file	exec 0<&5	while read -r line	do		# vendor entry		if [[ $line == $VEN ]]		then			vendor=0x${line:0:4}			ven_str=${line#${line:0:6}}			# add entry to pci.ids			exec 0<&3			exec 1>&6			while [[ $ids_in != $VEN ||				 0x${ids_in:0:4} < $vendor ]]			do				echo "$ids_in"				read -r ids_in			done			echo "$line"			if [[ 0x${ids_in:0:4} == $vendor ]]			then				read -r ids_in			fi		# device entry		elif [[ $line == $DEV ]]		then			device=`echo ${line:1:4} | tr [:upper:] [:lower:]`			table_device=0x${line:1:4}			dev_str=${line#${line:0:7}}			ids_device=`echo ${ids_in:1:4} | tr [:upper:] [:lower:]`			table_line="$vendor	$table_device	\"$driver\"	\"$ven_str|$dev_str\""			# add entry to pci.ids			exec 0<&3			exec 1>&6			while [[ $ids_in != $DEV ||				 $ids_device < $device ]]			do				if [[ $ids_in == $VEN ]]				then					break				fi				if [[ $ids_device != ${ids_in:1:4} ]]				then					echo "${ids_in:0:1}$ids_device${ids_in#${ids_in:0:5}}"				else					echo "$ids_in"				fi				read -r ids_in				ids_device=`echo ${ids_in:1:4} | tr [:upper:] [:lower:]`			done			if [[ $device != ${line:1:4} ]]			then				echo "${line:0:1}$device${line#${line:0:5}}"			else				echo "$line"			fi			if [[ $ids_device == $device ]]			then				read -r ids_in			fi			# add entry to pcitable			if [ "$2" != "/dev/null" ];then			exec 0<&4			exec 1>&7			while [[ $table_in != $TABLE_DEV ||				 ${table_in:0:6} < $vendor ||				 ( ${table_in:0:6} == $vendor &&				   ${table_in:7:6} < $table_device ) ]]			do				echo "$table_in"				read -r table_in			done			echo "$table_line"			if [[ ${table_in:0:6} == $vendor &&			      ${table_in:7:6} == $table_device ]]			then				read -r table_in			fi			fi		# subsystem entry		elif [[ $line == $SUB ]]		then			subven=`echo ${line:2:4} | tr [:upper:] [:lower:]`			subdev=`echo ${line:7:4} | tr [:upper:] [:lower:]`			table_subven=0x${line:2:4}			table_subdev=0x${line:7:4}			sub_str=${line#${line:0:13}}			ids_subven=`echo ${ids_in:2:4} | tr [:upper:] [:lower:]`			ids_subdev=`echo ${ids_in:7:4} | tr [:upper:] [:lower:]`			table_line="$vendor	$table_device	$table_subven	$table_subdev	\"$driver\"	\"$ven_str|$sub_str\""			# add entry to pci.ids			exec 0<&3			exec 1>&6			while [[ $ids_in != $SUB ||				 $ids_subven < $subven ||				 ( $ids_subven == $subven && 				   $ids_subdev < $subdev ) ]]			do				if [[ $ids_in == $VEN ||				      $ids_in == $DEV ]]				then					break				fi				if [[ ! (${ids_in:2:4} == "1014" &&					 ${ids_in:7:4} == "052C") ]]				then					if [[ $ids_subven != ${ids_in:2:4} || $ids_subdev != ${ids_in:7:4} ]]					then						echo "${ids_in:0:2}$ids_subven $ids_subdev${ids_in#${ids_in:0:11}}"					else						echo "$ids_in"					fi				fi				read -r ids_in				ids_subven=`echo ${ids_in:2:4} | tr [:upper:] [:lower:]`				ids_subdev=`echo ${ids_in:7:4} | tr [:upper:] [:lower:]`			done			if [[ $subven != ${line:2:4} || $subdev != ${line:7:4} ]]			then				echo "${line:0:2}$subven $subdev${line#${line:0:11}}"			else				echo "$line"			fi			if [[ $ids_subven == $subven  &&			      $ids_subdev == $subdev ]]			then				read -r ids_in			fi			# add entry to pcitable			if [ "$2" != "/dev/null" ];then			exec 0<&4			exec 1>&7			while [[ $table_in != $TABLE_SUB ||				 ${table_in:14:6} < $table_subven ||				 ( ${table_in:14:6} == $table_subven &&				   ${table_in:21:6} < $table_subdev ) ]]			do				if [[ $table_in == $TABLE_DEV ]]				then					break				fi				if [[ ! (${table_in:14:6} == "0x1014" &&					 ${table_in:21:6} == "0x052C") ]]				then					echo "$table_in"				fi				read -r table_in			done			echo "$table_line"			if [[ ${table_in:14:6} == $table_subven &&			      ${table_in:21:6} == $table_subdev ]]			then				read -r table_in			fi			fi		fi		exec 0<&5	done	# print the remainder of the original files	exec 0<&3	exec 1>&6	echo "$ids_in"	while read -r ids_in	do		echo "$ids_in"	done	if [ "$2" != "/dev/null" ];then	exec 0>&4	exec 1>&7	echo "$table_in"	while read -r table_in	do		echo "$table_in"	done	fi	breakdone <&5exec 3<&-exec 4<&-exec 5<&-exec 6>&-exec 7>&-ENDmv -f $LD/pci.ids.new  %{pciids}if [ "%{pcitable}" != "/dev/null" ]; thenmv -f $LD/pcitable.new %{pcitable}fiuname -r | grep BOOT || /sbin/depmod -a > /dev/null 2>&1 || true%preun# If doing RPM un-installif [ $1 -eq 0 ] ; then	FL="%{_docdir}/%{name}-%{version}/file.list    		%{_docdir}/%{name}/file.list"	FL=$(for d in $FL ; do if [ -e $d ]; then echo $d; break; fi;  done)	# Remove driver link	for f in $(sed 's/\.new$//' $FL) ; do		rm -f $f	done	# Restore old drivers	if [ -d /usr/local/share/%{name} ]; then		cd /usr/local/share/%{name}; find . -name '%{name}.*o*' -exec cp --parents {} /lib/modules/ \;		cd /usr/local/share/%{name}; find . -name '%{name}_*.*o*' -exec cp --parents {} /lib/modules/ \;		rm -rf /usr/local/share/%{name}	fifi%postununame -r | grep BOOT || /sbin/depmod -a > /dev/null 2>&1 || true

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品久久久久婷婷| 在线观看欧美精品| 国产欧美日韩另类一区| 国产精品自拍网站| 国产欧美一区二区精品性| 成人一区二区在线观看| 最新日韩在线视频| 欧美在线综合视频| 日本成人在线不卡视频| www精品美女久久久tv| 国产一区二区在线视频| 久久久久成人黄色影片| 91香蕉视频mp4| 爽爽淫人综合网网站| 精品久久久久av影院| 国产精品香蕉一区二区三区| 国产精品久久一卡二卡| 欧美亚洲一区二区在线观看| 奇米影视一区二区三区小说| 国产网站一区二区三区| 91国偷自产一区二区三区成为亚洲经典| 亚洲成人福利片| 精品久久久久99| 色综合久久久久网| 麻豆精品在线观看| 亚洲色图欧美在线| 日韩欧美亚洲另类制服综合在线| 国产成人免费视频网站| 亚洲一区免费视频| 久久精品视频在线看| 色婷婷av一区二区三区软件| 久久不见久久见中文字幕免费| 国产精品免费久久久久| 3atv一区二区三区| 97精品视频在线观看自产线路二| 秋霞av亚洲一区二区三| 另类综合日韩欧美亚洲| 亚洲精品大片www| 精品国产一区二区三区av性色| 99这里只有精品| 老司机午夜精品99久久| 亚洲理论在线观看| 久久久青草青青国产亚洲免观| 色屁屁一区二区| 国产不卡一区视频| 麻豆精品视频在线| 亚洲精品你懂的| 国产婷婷色一区二区三区四区| 精品视频在线视频| 99视频精品全部免费在线| 男女性色大片免费观看一区二区| 亚洲人一二三区| 国产偷v国产偷v亚洲高清| 日韩限制级电影在线观看| 91久久人澡人人添人人爽欧美| 国产麻豆成人传媒免费观看| 日韩制服丝袜先锋影音| 亚洲综合丝袜美腿| 一区二区在线观看免费| 日本一区二区三区免费乱视频| 日韩午夜在线观看| 欧美日本在线看| 欧美图区在线视频| 91日韩一区二区三区| 99久久免费精品| 成人精品亚洲人成在线| 国产美女av一区二区三区| 美女视频黄a大片欧美| 天天色图综合网| 亚洲制服丝袜在线| 亚洲激情在线播放| 亚洲精品国产品国语在线app| 国产精品二三区| 国产精品天天看| 中文字幕高清不卡| 国产精品嫩草影院av蜜臀| 久久精品日韩一区二区三区| 日韩精品中文字幕一区 | 中文字幕佐山爱一区二区免费| 欧美本精品男人aⅴ天堂| 欧美一区二区三区在线观看| 欧美日韩高清一区| 欧美日韩一区二区欧美激情| 欧美日韩激情在线| 欧美一区二区三级| 欧美一区二区国产| 精品国产一区二区三区四区四 | 成人短视频下载| av一二三不卡影片| 日本精品视频一区二区三区| 一本一道波多野结衣一区二区| 色综合久久中文综合久久97| 欧美在线观看你懂的| 欧美精品久久天天躁| 欧美一区二区精品在线| 精品国精品自拍自在线| 91极品视觉盛宴| 日本精品免费观看高清观看| 欧美性一级生活| 日韩一区二区在线看片| 久久精品亚洲乱码伦伦中文| 中文字幕欧美一| 亚洲午夜影视影院在线观看| 免费观看91视频大全| 精品午夜久久福利影院| 国产91在线|亚洲| 91精品1区2区| 精品久久一区二区三区| 中文字幕一区二区三区精华液| 亚洲男同1069视频| 日韩精品免费专区| 国产毛片精品一区| 在线视频综合导航| 欧美tickle裸体挠脚心vk| 中文字幕一区二区三区在线播放 | 91最新地址在线播放| 欧美日韩精品欧美日韩精品| 欧美r级电影在线观看| 国产精品成人免费精品自在线观看| 一区二区免费看| 国产在线视频一区二区| 日本高清成人免费播放| 精品国产髙清在线看国产毛片| 中文字幕在线视频一区| 日本免费新一区视频| 成人高清视频在线观看| 91精品国产色综合久久不卡电影| 久久女同精品一区二区| 亚洲成人av一区二区三区| 国产精品资源网| 欧美另类z0zxhd电影| 国产精品视频yy9299一区| 日韩高清在线电影| 91丨porny丨首页| 欧美精品一区二区精品网| 亚洲伊人色欲综合网| 成人开心网精品视频| 日韩三级中文字幕| 亚洲一级二级三级在线免费观看| 国产成人精品一区二区三区四区| 精品视频免费看| 亚洲天堂2016| 国产精品一二三四五| 91精品国产乱| 一区二区三区中文字幕电影| 成人夜色视频网站在线观看| 欧美电影精品一区二区| 午夜精品久久一牛影视| 91黄色免费版| 国产精品短视频| 国产精品18久久久久久vr| 欧美一级理论片| 日韩一区精品字幕| 欧美精品在欧美一区二区少妇| 自拍偷拍欧美精品| 99视频精品在线| 亚洲欧洲日韩女同| 成人免费高清在线观看| 久久精品人人做人人综合| 国内精品久久久久影院一蜜桃| 欧美卡1卡2卡| 五月综合激情网| 欧美日本在线播放| 亚洲香蕉伊在人在线观| 欧美日韩中文字幕一区二区| 一区二区三区精品在线| 99久久婷婷国产综合精品| 中文字幕一区二区5566日韩| 成人激情小说网站| 国产精品久久久久一区二区三区共| 国产一区二区三区日韩 | 欧美日韩一区三区| 亚洲一区二区三区美女| 欧美日韩一卡二卡三卡 | 一二三四区精品视频| 一本一本大道香蕉久在线精品| 亚洲日本青草视频在线怡红院 | 欧美一区二区大片| 9i看片成人免费高清| 秋霞午夜av一区二区三区| 欧美高清dvd| 精品国产一区久久| 精品一区二区三区免费视频| 久久亚洲捆绑美女| 成人爱爱电影网址| 亚洲欧洲精品成人久久奇米网| 91视频一区二区| 亚洲综合色视频| 91精品国产色综合久久| 国产精品自拍在线| 亚洲欧美日本在线| 欧美三级欧美一级| 久久精品国产精品亚洲综合| 国产欧美日本一区视频| 日本精品视频一区二区三区| 日韩影院精彩在线| 日本一区二区三区免费乱视频| 色妞www精品视频| 免费观看91视频大全| 国产欧美视频一区二区三区|