URL: https://www.opennet.me/cgi-bin/openforum/vsluhboard.cgi
Форум: vsluhforumID7
Нить номер: 626
[ Назад ]

Исходное сообщение
"Realtek RTL8168 на Asus a8jc и FreeBSD 6.1"

Отправлено Necron , 18-Сен-06 12:35 
Есть ли возможность подрубить RTL8168 на фряхе?

Содержание

Сообщения в этом обсуждении
"Realtek RTL8168 на Asus a8jc и FreeBSD 6.1"
Отправлено Necron , 18-Сен-06 14:56 
Хм...
Зашел на http://www.realtek.com.tw/downloads/downloads1-3.aspx?lineid...
и нашел дрова с описанием, буду ставить



"Asus a8jc и FreeBSD 6.1"
Отправлено Necron , 09-Окт-06 12:36 
Поставил, загружая как модуль, пашет.
Доп: Из ортов поставил дрова на nvidia go 7300, заработало нормально.
А вот звуковуха молчит ,ich не подходит, да и другие тоже =(((

"Asus a8jc и FreeBSD 6.1"
Отправлено uighur , 09-Окт-06 19:23 
Насколько я понял на realtek.com есть драйвера только под линукс как же вы их на freebsd
поставили?



"Asus a8jc и FreeBSD 6.1"
Отправлено Necron , 10-Окт-06 16:44 
Гм...
Там даны исходники для сборки модуля на Freebsd и описание того, как это сделать:

=================================================================================
= Realtek 8139C/8139C+/8169S/8169SB/8169SC/8168B/8101E Driver for FreeBSD v4.x/5.x/6.0 =
=================================================================================

This driver is modified by Realtek Semiconductor corp. and it has been tested OK
on FreeBSD 4.7, FreeBSD v5.1, FreeBSD v5.4, and FreeBSD v6.0. To update the driver, you may use method 1. If method 1 failed,
you must use method 2 which is more complex.

Method 1:
1.Copy if_rl.ko in "modules" directory to "/modules" directory and overwrite
the existing file.
2.Modify the file "/boot/defaults/loader.conf" and set "if_rl_load" in "Network
drivers" section to "Yes"
3.Reboot.

Method 2:
Because the FreeBSD kernel has default drivers to support RTL8139C and RTL8169S. To use the RTL8139C+, RTL8169SB, RTL8169SC, RTL8168B, and RTL8101E, you need to update your NIC driver by recompiling your FreeBSD kernel.

The main steps you have to do:(FreeBSDSrcDir means the directory of FreeBSD source code
and it may be "/usr/src/sys")

1. keep the orginal driver source code:
# cd /usr/src/sys/pci
# cp if_rl.c if_rl.c.org
# cp if_rlreg.h if_rlreg.h.org

# cd /usr/src/sys/modules
# cp Makefile Makefile.org

# cd /usr/src/sys/modules/rl
# cp Makefile Makefile.org

# cd /usr/src/sys/i386/conf/
# cp GENERIC GENERIC.org

2. recompile your kernel (you must install your FreeBSD source code first !!)
# vim /usr/src/sys/i386/conf/GENERIC and delete rl and re
# vim /usr/src/sys/modules/Makefile and delete rl and re
# cd /usr/src/sys/i386/conf
# /usr/sbin/config GENERIC

(for FreeBSD 5.x/6.x)
# cd ../compile/GENERIC
(for FreeBSD 4.x)
# cd ../../compile/GENERIC

# make depend
# make
# make install
# reboot

3. update the driver source code:
Copy the dirver source code( if_rl.c and if_rlreg.h) into /usr/src/sys/pci
Copy the Makefile into /usr/src/sys/modules/rl

4. build the driver:
# cd /usr/src/sys/modules/rl
# make clean
# make

5. install the driver
# cd /usr/src/sys/modules/rl
# kldload ./if_rl.ko

6. configurate the static IP address
# ifconfig rl0 xxx.xxx.xxx.xxx

7. configurate the IP address by DHCP
# /sbin/dhclient rl0

Question & Answer:
Q:How to compile under FreeBSD v4.x ?
A:Change the definition of "OS_VER" in if_rlreg.h


"Asus a8jc и FreeBSD 6.1"
Отправлено uighur , 17-Окт-06 16:55 
>Гм...
>Там даны исходники для сборки модуля на Freebsd и описание того, как
>это сделать:
>
>=================================================================================
>= Realtek 8139C/8139C+/8169S/8169SB/8169SC/8168B/8101E Driver for FreeBSD v4.x/5.x/6.0 =
>=================================================================================
>
>This driver is modified by Realtek Semiconductor corp. and it has been
>tested OK
>on FreeBSD 4.7, FreeBSD v5.1, FreeBSD v5.4, and FreeBSD v6.0. To update
>the driver, you may use method 1. If method 1 failed,
>
>you must use method 2 which is more complex.
>
>Method 1:
>1.Copy if_rl.ko in "modules" directory to "/modules" directory and overwrite
>the existing file.
>2.Modify the file "/boot/defaults/loader.conf" and set "if_rl_load" in "Network
>drivers" section to "Yes"
>3.Reboot.
>
>Method 2:
>Because the FreeBSD kernel has default drivers to support RTL8139C and RTL8169S.
>To use the RTL8139C+, RTL8169SB, RTL8169SC, RTL8168B, and RTL8101E, you need
>to update your NIC driver by recompiling your FreeBSD kernel.
>
>The main steps you have to do:(FreeBSDSrcDir means the directory of FreeBSD
>source code
>and it may be "/usr/src/sys")
>
>1. keep the orginal driver source code:
># cd /usr/src/sys/pci
># cp if_rl.c if_rl.c.org
># cp if_rlreg.h if_rlreg.h.org
>
># cd /usr/src/sys/modules
># cp Makefile Makefile.org
>
># cd /usr/src/sys/modules/rl
># cp Makefile Makefile.org
>
># cd /usr/src/sys/i386/conf/
># cp GENERIC GENERIC.org
>
>2. recompile your kernel (you must install your FreeBSD source code first
>!!)
># vim /usr/src/sys/i386/conf/GENERIC and delete rl and re
># vim /usr/src/sys/modules/Makefile and delete rl and re
># cd /usr/src/sys/i386/conf
># /usr/sbin/config GENERIC
>
>(for FreeBSD 5.x/6.x)
># cd ../compile/GENERIC
>(for FreeBSD 4.x)
># cd ../../compile/GENERIC
>
># make depend
># make
># make install
># reboot
>
>3. update the driver source code:
>Copy the dirver source code( if_rl.c and if_rlreg.h) into /usr/src/sys/pci
>Copy the Makefile into /usr/src/sys/modules/rl
>
>4. build the driver:
># cd /usr/src/sys/modules/rl
># make clean
># make
>
>5. install the driver
># cd /usr/src/sys/modules/rl
># kldload ./if_rl.ko
>
>6. configurate the static IP address
># ifconfig rl0 xxx.xxx.xxx.xxx
>
>7. configurate the IP address by DHCP
># /sbin/dhclient rl0
>
>Question & Answer:
>Q:How to compile under FreeBSD v4.x ?
>A:Change the definition of "OS_VER" in if_rlreg.h

Сделал всё так как вы писали,но после
# cd /usr/src/sys/modules/rl
# make clean
# make
начинают вылизать ошибки и драйвер не собирается
что мне делать?
когда беру исходный виндовый драйвер пропускаю его через  ndisgen
и загружаю интерфейс создаётся, могу слушать сеть tcpdumpом но dhclien
не работает. У меня FreeBSD 5.5


"Asus a8jc и FreeBSD 6.1"
Отправлено necron , 19-Окт-06 14:26 
а что за ошибки лезут?

"Asus a8jc и FreeBSD 6.1"
Отправлено uighur , 19-Окт-06 17:30 
>а что за ошибки лезут?
Ошибки компиляции такое впечатление что ошибка в исходнике. Восновном сообщения о синтаксических ошибках и ошибках "структура не содержит такого-то члена"
Вышлите пожалуста Ваш исходник (который у Вас скомпилировался) на e-mail shtanislave@ya.ru


"Asus a8jc и FreeBSD 6.1"
Отправлено necron , 20-Окт-06 14:07 
>>а что за ошибки лезут?
>Ошибки компиляции такое впечатление что ошибка в исходнике. Восновном сообщения о синтаксических
>ошибках и ошибках "структура не содержит такого-то члена"
>Вышлите пожалуста Ваш исходник (который у Вас скомпилировался) на e-mail shtanislave@ya.ru
Лови


"Asus a8jc и FreeBSD 6.1"
Отправлено vimo , 28-Окт-06 18:26 
>>>а что за ошибки лезут?
>>Ошибки компиляции такое впечатление что ошибка в исходнике. Восновном сообщения о синтаксических
>>ошибках и ошибках "структура не содержит такого-то члена"
>>Вышлите пожалуста Ваш исходник (который у Вас скомпилировался) на e-mail shtanislave@ya.ru
>Лови
прошу вас и мне вылажить исходник на vimo@i-c.com.ua


"Asus a8jc и FreeBSD 6.1"
Отправлено Necron , 29-Окт-06 17:40 
>>>>а что за ошибки лезут?
>>>Ошибки компиляции такое впечатление что ошибка в исходнике. Восновном сообщения о синтаксических
>>>ошибках и ошибках "структура не содержит такого-то члена"
>>>Вышлите пожалуста Ваш исходник (который у Вас скомпилировался) на e-mail shtanislave@ya.ru
>>Лови
>прошу вас и мне вылажить исходник на vimo@i-c.com.ua
Блин, народ трудно что-ли на сайт реалтека залезть?

"Asus a8jc и FreeBSD 6.1"
Отправлено mag , 09-Ноя-06 14:07 
>>>>>а что за ошибки лезут?
>>>>Ошибки компиляции такое впечатление что ошибка в исходнике. Восновном сообщения о синтаксических
>>>>ошибках и ошибках "структура не содержит такого-то члена"
>>>>Вышлите пожалуста Ваш исходник (который у Вас скомпилировался) на e-mail shtanislave@ya.ru
>>>Лови
>>прошу вас и мне вылажить исходник на vimo@i-c.com.ua

>Блин, народ трудно что-ли на сайт реалтека залезть?

залез, скачал, и те же ошибки лезут

если не трудно и мне вышлите на мыло grigoriy1@yahoo.com


"Asus a8jc и FreeBSD 6.1"
Отправлено Demokrite , 28-Авг-08 17:38 
>>>а что за ошибки лезут?
>>Ошибки компиляции такое впечатление что ошибка в исходнике. Восновном сообщения о синтаксических
>>ошибках и ошибках "структура не содержит такого-то члена"
>>Вышлите пожалуста Ваш исходник (который у Вас скомпилировался) на e-mail shtanislave@ya.ru
>Лови

можно мне тоже кинуть на mustchem@mail.ru


"Asus a8jc и FreeBSD 6.1"
Отправлено Аноним , 29-Авг-08 03:16 
>>>>а что за ошибки лезут?
>>>Ошибки компиляции такое впечатление что ошибка в исходнике. Восновном сообщения о синтаксических
>>>ошибках и ошибках "структура не содержит такого-то члена"
>>>Вышлите пожалуста Ваш исходник (который у Вас скомпилировался) на e-mail shtanislave@ya.ru
>>Лови
>
>можно мне тоже кинуть на mustchem@mail.ru

На bsdportal.ru тема есть
уже мусолили фиг знает скоко
тяжело что ли поисковиком воспользоваться?


"Asus a8jc и FreeBSD 6.1"
Отправлено sergicus , 13-Ноя-09 09:30 
Подскажите пожалуйста как решить эту проблему
Угораздило меня купить карту TP-LINK TG-3468 (в ней чипсет Realtek RTL8168B )

У меня стоит freebsd amd64 (я не знаю поддерживает ли драйер эту архитектуру ???)

Не работает, поискал в инете , нашел драйвер для free bsd на сайте realtek
В драйвере 4 файла
if_rl.c  if_rlreg.h  Makefile  Readme.txt


Читаю инструкцию

Method 1:
    1.Copy if_rl.ko in "modules" directory to "/modules" directory and overwrite
      the existing file.
    2.Modify the file "/boot/defaults/loader.conf" and set "if_rl_load" in "Network
      drivers" section to "Yes"
    3.Reboot.

собираю  драйвер - make

вот в начале

[root@gw2 /usr/home/serge/source/rtl_bsd_drv_v179]# make
Warning: Object directory not changed from original /usr/home/serge/source/rtl_bsd_drv_v179
cc -O2 -fno-strict-aliasing -pipe  -D_KERNEL -DKLD_MODULE -std=c99 -nostdinc   -I. -I@ -I@/contrib/altq -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common  -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone  -mfpmath=387 -mno-sse -mno-sse2 -mno-mmx -mno-3dnow  -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extensions -c if_rl.c
if_rl.c:74:5: warning: "OS_VER" is not defined
if_rl.c:74:14: warning: "VERSION" is not defined
if_rl.c:74:21: error: missing binary operator before token "("
if_rl.c:85:5: warning: "OS_VER" is not defined
if_rl.c:85:14: warning: "VERSION" is not defined
if_rl.c:85:21: error: missing binary operator before token "("
if_rl.c:130: warning: initialization makes integer from pointer without a cast
if_rl.c:130: error: initializer element is not computable at load time
if_rl.c:130: error: (near initialization for 'rl_devs[0].rl_basetype')
if_rl.c:132: warning: initialization makes integer from pointer without a cast
if_rl.c:132: error: initializer element is not computable at load time


чем заканчивается

if_rl.c:3899: error: 'RL_PHY_1000_FULL' undeclared (first use in this function)
if_rl.c:3900: error: 'RL_PHY_1000_HALF' undeclared (first use in this function)
if_rl.c:3900: error: invalid operands to binary |
if_rl.c:3900: warning: assignment makes integer from pointer without a cast
if_rl.c:3902: error: 'RL_PHY_NWAY_EN' undeclared (first use in this function)
if_rl.c:3902: error: 'RL_PHY_RESTART_NWAY' undeclared (first use in this function)
if_rl.c:3902: error: invalid operands to binary |
if_rl.c:3902: warning: assignment makes integer from pointer without a cast
if_rl.c: In function 'MP_WritePhyUshort':
if_rl.c:3918: error: 'PHYAR' undeclared (first use in this function)
if_rl.c:3918: warning: passing argument 3 of 'bus_space_write_4' makes integer from pointer without a cast
if_rl.c:3924: warning: passing argument 3 of 'bus_space_read_4' makes integer from pointer without a cast
if_rl.c:3925: error: 'PHYAR_Flag' undeclared (first use in this function)
if_rl.c:3925: error: invalid operands to binary &
if_rl.c: In function 'MP_ReadPhyUshort':
if_rl.c:3939: error: 'PHYAR' undeclared (first use in this function)
if_rl.c:3939: warning: passing argument 3 of 'bus_space_write_4' makes integer from pointer without a cast
if_rl.c:3945: warning: passing argument 3 of 'bus_space_read_4' makes integer from pointer without a cast
if_rl.c:3946: error: 'PHYAR_Flag' undeclared (first use in this function)
if_rl.c:3946: error: invalid operands to binary &
if_rl.c:3948: warning: passing argument 3 of 'bus_space_read_4' makes integer from pointer without a cast
if_rl.c: In function 'MP_WriteEPhyUshort':
if_rl.c:3961: error: 'RL_EPHYAR' undeclared (first use in this function)
if_rl.c:3961: warning: passing argument 3 of 'bus_space_write_4' makes integer from pointer without a cast
if_rl.c:3967: warning: passing argument 3 of 'bus_space_read_4' makes integer from pointer without a cast
if_rl.c:3968: error: 'PHYAR_Flag' undeclared (first use in this function)
if_rl.c:3968: error: invalid operands to binary &
if_rl.c: In function 'MP_ReadEPhyUshort':
if_rl.c:3979: error: 'RL_EPHYAR' undeclared (first use in this function)
if_rl.c:3979: warning: passing argument 3 of 'bus_space_write_4' makes integer from pointer without a cast
if_rl.c:3985: warning: passing argument 3 of 'bus_space_read_4' makes integer from pointer without a cast
if_rl.c:3986: error: 'PHYAR_Flag' undeclared (first use in this function)
if_rl.c:3986: error: invalid operands to binary &
if_rl.c:3988: warning: passing argument 3 of 'bus_space_read_4' makes integer from pointer without a cast
if_rl.c: In function 'MP_ReadEfuse':
if_rl.c:4009: error: 'PHYAR_Flag' undeclared (first use in this function)
if_rl.c:4009: error: invalid operands to binary &
if_rl.c: In function 'rl_eeprom_getword':
if_rl.c:4157: error: 'RL_RXCFG_RX_9356SEL' undeclared (first use in this function)
if_rl.c:4157: error: invalid operands to binary &
*** Error code 1

В чем проблема - как собрать ??


"Asus a8jc и FreeBSD 6.1"
Отправлено dron_ov1986 , 27-Ноя-11 11:59 
>[оверквотинг удален]
> if_rl.c:3988: warning: passing argument 3 of 'bus_space_read_4' makes integer from pointer
> without a cast
> if_rl.c: In function 'MP_ReadEfuse':
> if_rl.c:4009: error: 'PHYAR_Flag' undeclared (first use in this function)
> if_rl.c:4009: error: invalid operands to binary &
> if_rl.c: In function 'rl_eeprom_getword':
> if_rl.c:4157: error: 'RL_RXCFG_RX_9356SEL' undeclared (first use in this function)
> if_rl.c:4157: error: invalid operands to binary &
> *** Error code 1
> В чем проблема - как собрать ??

тоже самое. Не компилируется и не собирается...


"Asus a8jc и FreeBSD 6.1"
Отправлено dron_ov1986 , 27-Ноя-11 20:09 
>[оверквотинг удален]
> if_rl.c:3988: warning: passing argument 3 of 'bus_space_read_4' makes integer from pointer
> without a cast
> if_rl.c: In function 'MP_ReadEfuse':
> if_rl.c:4009: error: 'PHYAR_Flag' undeclared (first use in this function)
> if_rl.c:4009: error: invalid operands to binary &
> if_rl.c: In function 'rl_eeprom_getword':
> if_rl.c:4157: error: 'RL_RXCFG_RX_9356SEL' undeclared (first use in this function)
> if_rl.c:4157: error: invalid operands to binary &
> *** Error code 1
> В чем проблема - как собрать ??

Действуй строго по инструкции, методу 2 пошагово, выполняй каждый пункт!!