You are not logged in.

#1 2011-02-01 12:20:36

Wyrm88
Member
Registered: 2010-05-05
Posts: 53

[SOLVED] Edimax EW-7811Un wireless adapter and 2.6.36 problem

Hi all!

I haven't been recently on my arch system, but few days before I was last time on (when 2.6.35 was still the recent kernel version), I installed the wireless usb mentioned in the title. After I turned on arch after few months, I succesfully updated to the 2.6.36 kernel version and rebooted, but wireless was not working after the reboot. To initially install the drivers for it, I used this guide. I tried running the same make commands again on 2.6.36, but without any success.

lsusb output:

> lsusb
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 004: ID 7392:7811 Edimax Technology Co., Ltd EW-7811Un 802.11n Wireless Adapter [Realtek RTL8188CUS]
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 002: ID 093a:2510 Pixart Imaging, Inc. Optical Mouse
Bus 002 Device 003: ID 03f0:0024 Hewlett-Packard KU-0316 Keyboard
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub

Trying the make install command yields:

> sudo make install
Password: 
cp: cannot stat `/autoconf_rtl8192c_usb_linux.h': No such file or directory
install -p -m 644 8192cu.ko  /lib/modules/2.6.36-ARCH/kernel/drivers/net/wireless/
/usr/local/bin/install: line 1186: /usr/local/bin/update/install/mapname.sh: No such file or directory
make: *** [install] Error 1

Any help appreciated.

Last edited by Wyrm88 (2011-02-02 14:24:49)

Offline

#2 2011-02-01 15:26:14

Wyrm88
Member
Registered: 2010-05-05
Posts: 53

Re: [SOLVED] Edimax EW-7811Un wireless adapter and 2.6.36 problem

I downloaded the latest RTL8192cu drivers, and made appropriate changes according to http://ubuntuforums.org/showthread.php?t=1640199. I also updated the kernel, to 2.6.37. However, I still get this error (google doesn't help):

┌─[wyrm88 @ 16:15:28]
└─[rtl8192CU_linux_v2.0.1324.20110126] > sudo make install
Password: 
install -p -m 644 8192cu.ko  /lib/modules/2.6.37-ARCH/kernel/drivers/net/wireless/
/usr/local/bin/install: line 1186: /usr/local/bin/update/install/mapname.sh: No such file or directory
make: *** [install] Error 1

I'd really be happy if someone could shed some light on this issue. I personally think my /usr/local/bin/install is broken, because I remember turning my PC off while pacman -Syu-ing a few months ago, maybe this has got something to do with this.

Offline

#3 2011-02-02 09:55:44

ernia
Member
Registered: 2008-03-08
Posts: 27

Re: [SOLVED] Edimax EW-7811Un wireless adapter and 2.6.36 problem

did you made the changes in http://ubuntuforums.org/showthread.php?t=1640199 #7 post?
it worked for me, this is the PKGBUILD i'm using, i'm planning to ask support about it because it's the first one i wrote and probably it's not correct but it builds:

#Contributor ernia 
pkgname=8192cu
pkgver=2.0.1324
pkgrel=1
pkgdesc="Drivers for realtek RTL8188CUS chipset wireless cards"
arch=('i686' 'x86_64')
url="http://218.210.127.131/downloads/downloadsView.aspx?Langid=1&PNid=21&PFid=48&Level=5&Conn=4&DownTypeID=3&Downloads=true"
depends=('kernel26')
makedepends=('kernel26-headers')
license='unknown'
install='install.8192cu'
md5sums=('427bd8a8422b65223feb0198b22eb444')
fileprefix=''
source=("RTL8188CUS_linux_v2.0.1324.zip")

build() {

  cd ${srcdir}/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver
  tar xvf rtl8192CU_linux_v2.0.1324.20110126.tar.gz
  cd rtl8192CU_linux_v2.0.1324.20110126
  sed "s#init_MUTEX(pmutex)#sema_init(pmutex,1)#" -i os_dep/osdep_service.c
  make
}
package() {
  mkdir -p ${pkgdir}/lib/modules/`uname -r`/kernel/drivers/net/wireless/
  cd ${srcdir}/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/
  install -p -m 644 8192cu.ko  ${pkgdir}/lib/modules/`uname -r`/kernel/drivers/net/wireless/
} 

put this in a folder with the tarball from realtek site, cd  in the folder and do makepkg , it should builds up
this would be the install.8192cu file

 # arg 1:  the new package version
 post_install() {
   depmod -a
   echo "This driver is called 8192cu. Use 'modprobe 8192cu' to load it. If wicd does"
   echo "not work out of the box you could try to downgrade wpa_supplicant to 0.6.9"
 }
  
 # arg 1:  the new package version
 # arg 2:  the old package version
 post_upgrade() {
   post_install $1
 }
    
 # arg 1:  the old package version
 post_remove() {
   depmod -a
 }
      
 op=$1
 shift
 $op $*

let me know if it works

EDIT you probably are aware that you are supposed to put the install file in the same folder of the PKGBUILD and the tarball

Last edited by ernia (2011-02-02 09:59:37)

Offline

#4 2011-02-02 11:34:22

Wyrm88
Member
Registered: 2010-05-05
Posts: 53

Re: [SOLVED] Edimax EW-7811Un wireless adapter and 2.6.36 problem

ernia, thx for your reply! I tried to make a pkg.tar.xz, but I get the same error about missing /usr/local/bin/update/install/mapname.sh:

> makepkg
==> Making package: 8192cu 2.0.1324-1 (Wed Feb  2 12:27:00 CET 2011)
==> Checking Runtime Dependencies...
==> Checking Buildtime Dependencies...
==> Retrieving Sources...
  -> Found RTL8188CUS_linux_v2.0.1324.zip
==> Validating source files with md5sums...
    RTL8188CUS_linux_v2.0.1324.zip ... Passed
==> Extracting Sources...
  -> Extracting RTL8188CUS_linux_v2.0.1324.zip with bsdtar
==> Removing existing pkg/ directory...
==> Starting build()...
rtl8192CU_linux_v2.0.1324.20110126/
rtl8192CU_linux_v2.0.1324.20110126/autoconf_rtl8192c_usb_linux.h
rtl8192CU_linux_v2.0.1324.20110126/clean
rtl8192CU_linux_v2.0.1324.20110126/core/
rtl8192CU_linux_v2.0.1324.20110126/core/efuse/
rtl8192CU_linux_v2.0.1324.20110126/core/efuse/rtl8712_efuse.c
rtl8192CU_linux_v2.0.1324.20110126/core/ieee80211.c
rtl8192CU_linux_v2.0.1324.20110126/core/led/
rtl8192CU_linux_v2.0.1324.20110126/core/led/rtl8192c_led.c
rtl8192CU_linux_v2.0.1324.20110126/core/rtw_cmd.c
rtl8192CU_linux_v2.0.1324.20110126/core/rtw_debug.c
rtl8192CU_linux_v2.0.1324.20110126/core/rtw_eeprom.c
rtl8192CU_linux_v2.0.1324.20110126/core/rtw_io.c
rtl8192CU_linux_v2.0.1324.20110126/core/rtw_ioctl_query.c
rtl8192CU_linux_v2.0.1324.20110126/core/rtw_ioctl_rtl.c
rtl8192CU_linux_v2.0.1324.20110126/core/rtw_ioctl_set.c
rtl8192CU_linux_v2.0.1324.20110126/core/rtw_mlme.c
rtl8192CU_linux_v2.0.1324.20110126/core/rtw_mlme_ext.c
rtl8192CU_linux_v2.0.1324.20110126/core/rtw_mp.c
rtl8192CU_linux_v2.0.1324.20110126/core/rtw_mp_ioctl.c
rtl8192CU_linux_v2.0.1324.20110126/core/rtw_pwrctrl.c
rtl8192CU_linux_v2.0.1324.20110126/core/rtw_recv.c
rtl8192CU_linux_v2.0.1324.20110126/core/rtw_rf.c
rtl8192CU_linux_v2.0.1324.20110126/core/rtw_security.c
rtl8192CU_linux_v2.0.1324.20110126/core/rtw_sta_mgt.c
rtl8192CU_linux_v2.0.1324.20110126/core/rtw_wlan_util.c
rtl8192CU_linux_v2.0.1324.20110126/core/rtw_xmit.c
rtl8192CU_linux_v2.0.1324.20110126/hal/
rtl8192CU_linux_v2.0.1324.20110126/hal/hal_init.c
rtl8192CU_linux_v2.0.1324.20110126/hal/rtl8192c/
rtl8192CU_linux_v2.0.1324.20110126/hal/rtl8192c/rtl8192c_dm.c
rtl8192CU_linux_v2.0.1324.20110126/hal/rtl8192c/rtl8192c_phycfg.c
rtl8192CU_linux_v2.0.1324.20110126/hal/rtl8192c/rtl8192c_rf6052.c
rtl8192CU_linux_v2.0.1324.20110126/hal/rtl8192c/rtl8192c_rxdesc.c
rtl8192CU_linux_v2.0.1324.20110126/hal/rtl8192c/usb/
rtl8192CU_linux_v2.0.1324.20110126/hal/rtl8192c/usb/Hal8192CUHWImg.c
rtl8192CU_linux_v2.0.1324.20110126/hal/rtl8192c/usb/rtl8192cu_recv.c
rtl8192CU_linux_v2.0.1324.20110126/hal/rtl8192c/usb/rtl8192cu_xmit.c
rtl8192CU_linux_v2.0.1324.20110126/hal/rtl8192c/usb/rtl8192c_cmd.c
rtl8192CU_linux_v2.0.1324.20110126/hal/rtl8192c/usb/usb_halinit.c
rtl8192CU_linux_v2.0.1324.20110126/hal/rtl8192c/usb/usb_ops_ce.c
rtl8192CU_linux_v2.0.1324.20110126/hal/rtl8192c/usb/usb_ops_linux.c
rtl8192CU_linux_v2.0.1324.20110126/hal/rtl8192c/usb/usb_ops_xp.c
rtl8192CU_linux_v2.0.1324.20110126/hal/rtl8192c_d_hal_init.c
rtl8192CU_linux_v2.0.1324.20110126/ifcfg-wlan0
rtl8192CU_linux_v2.0.1324.20110126/include/
rtl8192CU_linux_v2.0.1324.20110126/include/autoconf.h
rtl8192CU_linux_v2.0.1324.20110126/include/basic_types.h
rtl8192CU_linux_v2.0.1324.20110126/include/byteorder/
rtl8192CU_linux_v2.0.1324.20110126/include/byteorder/big_endian.h
rtl8192CU_linux_v2.0.1324.20110126/include/byteorder/generic.h
rtl8192CU_linux_v2.0.1324.20110126/include/byteorder/little_endian.h
rtl8192CU_linux_v2.0.1324.20110126/include/byteorder/swab.h
rtl8192CU_linux_v2.0.1324.20110126/include/byteorder/swabb.h
rtl8192CU_linux_v2.0.1324.20110126/include/circ_buf.h
rtl8192CU_linux_v2.0.1324.20110126/include/cmd_osdep.h
rtl8192CU_linux_v2.0.1324.20110126/include/drv_conf.h
rtl8192CU_linux_v2.0.1324.20110126/include/drv_types.h
rtl8192CU_linux_v2.0.1324.20110126/include/drv_types_ce.h
rtl8192CU_linux_v2.0.1324.20110126/include/drv_types_linux.h
rtl8192CU_linux_v2.0.1324.20110126/include/drv_types_xp.h
rtl8192CU_linux_v2.0.1324.20110126/include/ethernet.h
rtl8192CU_linux_v2.0.1324.20110126/include/farray.h
rtl8192CU_linux_v2.0.1324.20110126/include/h2clbk.h
rtl8192CU_linux_v2.0.1324.20110126/include/Hal8192CPhyCfg.h
rtl8192CU_linux_v2.0.1324.20110126/include/Hal8192CPhyReg.h
rtl8192CU_linux_v2.0.1324.20110126/include/Hal8192CUHWImg.h
rtl8192CU_linux_v2.0.1324.20110126/include/HalRf.h
rtl8192CU_linux_v2.0.1324.20110126/include/hal_init.h
rtl8192CU_linux_v2.0.1324.20110126/include/ieee80211.h
rtl8192CU_linux_v2.0.1324.20110126/include/ieee80211_ext.h
rtl8192CU_linux_v2.0.1324.20110126/include/if_ether.h
rtl8192CU_linux_v2.0.1324.20110126/include/ip.h
rtl8192CU_linux_v2.0.1324.20110126/include/mlme_osdep.h
rtl8192CU_linux_v2.0.1324.20110126/include/mp_custom_oid.h
rtl8192CU_linux_v2.0.1324.20110126/include/nic_spec.h
rtl8192CU_linux_v2.0.1324.20110126/include/osdep_ce_service.h
rtl8192CU_linux_v2.0.1324.20110126/include/osdep_intf.h
rtl8192CU_linux_v2.0.1324.20110126/include/osdep_service.h
rtl8192CU_linux_v2.0.1324.20110126/include/recv_osdep.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtl8192c_cmd.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtl8192c_dm.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtl8192c_event.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtl8192c_hal.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtl8192c_recv.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtl8192c_spec.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtl8192c_xmit.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtl8712_bitdef.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtl8712_cmd.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtl8712_efuse.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtl8712_event.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtl8712_hal.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtl8712_recv.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtl8712_regdef.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtl8712_rf.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtl8712_spec.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtl8712_xmit.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtw_byteorder.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtw_cmd.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtw_debug.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtw_eeprom.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtw_event.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtw_ht.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtw_io.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtw_ioctl.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtw_ioctl_query.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtw_ioctl_rtl.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtw_ioctl_set.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtw_led.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtw_mlme.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtw_mlme_ext.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtw_mp.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtw_mp_ioctl.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtw_mp_phy_regdef.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtw_pwrctrl.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtw_qos.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtw_recv.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtw_rf.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtw_security.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtw_version.h
rtl8192CU_linux_v2.0.1324.20110126/include/rtw_xmit.h
rtl8192CU_linux_v2.0.1324.20110126/include/sdio_hal.h
rtl8192CU_linux_v2.0.1324.20110126/include/sdio_ops.h
rtl8192CU_linux_v2.0.1324.20110126/include/sdio_ops_ce.h
rtl8192CU_linux_v2.0.1324.20110126/include/sdio_ops_linux.h
rtl8192CU_linux_v2.0.1324.20110126/include/sdio_ops_xp.h
rtl8192CU_linux_v2.0.1324.20110126/include/sdio_osintf.h
rtl8192CU_linux_v2.0.1324.20110126/include/sta_info.h
rtl8192CU_linux_v2.0.1324.20110126/include/usb_hal.h
rtl8192CU_linux_v2.0.1324.20110126/include/usb_ops.h
rtl8192CU_linux_v2.0.1324.20110126/include/usb_osintf.h
rtl8192CU_linux_v2.0.1324.20110126/include/usb_vendor_req.h
rtl8192CU_linux_v2.0.1324.20110126/include/version.h
rtl8192CU_linux_v2.0.1324.20110126/include/wifi.h
rtl8192CU_linux_v2.0.1324.20110126/include/wlan_bssdef.h
rtl8192CU_linux_v2.0.1324.20110126/include/xmit_osdep.h
rtl8192CU_linux_v2.0.1324.20110126/Kconfig
rtl8192CU_linux_v2.0.1324.20110126/Makefile
rtl8192CU_linux_v2.0.1324.20110126/os_dep/
rtl8192CU_linux_v2.0.1324.20110126/os_dep/linux/
rtl8192CU_linux_v2.0.1324.20110126/os_dep/linux/ioctl_linux.c
rtl8192CU_linux_v2.0.1324.20110126/os_dep/linux/mlme_linux.c
rtl8192CU_linux_v2.0.1324.20110126/os_dep/linux/os_intfs.c
rtl8192CU_linux_v2.0.1324.20110126/os_dep/linux/recv_linux.c
rtl8192CU_linux_v2.0.1324.20110126/os_dep/linux/sdio_intf.c
rtl8192CU_linux_v2.0.1324.20110126/os_dep/linux/usb_intf.c
rtl8192CU_linux_v2.0.1324.20110126/os_dep/linux/xmit_linux.c
rtl8192CU_linux_v2.0.1324.20110126/os_dep/osdep_service.c
rtl8192CU_linux_v2.0.1324.20110126/runwpa
rtl8192CU_linux_v2.0.1324.20110126/wlan0dhcp
rtl8192CU_linux_v2.0.1324.20110126/wpa1.conf
make ARCH=i386 CROSS_COMPILE= -C /lib/modules/2.6.37-ARCH/build M=/home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126  modules
make[1]: Entering directory `/usr/src/linux-2.6.37-ARCH'
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/core/rtw_cmd.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/core/rtw_security.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/core/rtw_debug.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/core/rtw_io.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/core/rtw_ioctl_query.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/core/rtw_ioctl_set.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/core/ieee80211.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/core/rtw_mlme.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/core/rtw_mlme_ext.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/core/rtw_wlan_util.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/core/rtw_pwrctrl.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/core/rtw_rf.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/core/rtw_recv.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/core/rtw_sta_mgt.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/core/rtw_xmit.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/core/efuse/rtl8712_efuse.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/core/led/rtl8192c_led.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/hal/hal_init.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/hal/rtl8192c_d_hal_init.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/hal/rtl8192c/rtl8192c_phycfg.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/hal/rtl8192c/rtl8192c_rf6052.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/hal/rtl8192c/rtl8192c_dm.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/hal/rtl8192c/rtl8192c_rxdesc.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/hal/rtl8192c/usb/usb_ops_linux.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/hal/rtl8192c/usb/usb_halinit.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/hal/rtl8192c/usb/Hal8192CUHWImg.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/hal/rtl8192c/usb/rtl8192cu_xmit.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/hal/rtl8192c/usb/rtl8192cu_recv.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/hal/rtl8192c/usb/rtl8192c_cmd.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/os_dep/osdep_service.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/os_dep/linux/os_intfs.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/os_dep/linux/usb_intf.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/os_dep/linux/ioctl_linux.o
/home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/os_dep/linux/ioctl_linux.c: In function ‘rtw_wx_get_scan’:
/home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/os_dep/linux/ioctl_linux.c:1896:1: warning: the frame size of 1044 bytes is larger than 1024 bytes
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/os_dep/linux/xmit_linux.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/os_dep/linux/mlme_linux.o
  CC [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/os_dep/linux/recv_linux.o
  LD [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/8192cu.o
  Building modules, stage 2.
  MODPOST 1 modules
  CC      /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/8192cu.mod.o
  LD [M]  /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/8192cu.ko
make[1]: Leaving directory `/usr/src/linux-2.6.37-ARCH'
==> Entering fakeroot environment...
==> Starting package()...
/usr/local/bin/install: line 1186: /usr/local/bin/update/install/mapname.sh: No such file or directory
    Aborting...

Offline

#5 2011-02-02 12:24:54

ernia
Member
Registered: 2008-03-08
Posts: 27

Re: [SOLVED] Edimax EW-7811Un wireless adapter and 2.6.36 problem

I don't have /usr/local/bin/install, where does it come from? do pacman -Qo to find out where it comes from and remove that package or remove /usr/local/bin from your PATH variable to let /bin/install do its job.
in my system:

[fabio@s10 8192cu]$ which install
/bin/install
[fabio@s10 8192cu]$ pacman -Qo /bin/install
/bin/install è contenuto in coreutils 8.9-1

and all works well. my /usr/local/bin folder is empty.
maybe /usr/local/bin/install comes from something manually installed?

Offline

#6 2011-02-02 12:55:29

ernia
Member
Registered: 2008-03-08
Posts: 27

Re: [SOLVED] Edimax EW-7811Un wireless adapter and 2.6.36 problem

said that you should solve the install problem you are facing because it will come up again in the future, you already have your kernel module in /home/wyrm88/src/RTL8192CU_8188CUS_8188CE-VAU_linux_v2.0.1324.20110126/driver/rtl8192CU_linux_v2.0.1324.20110126/8192cu.ko , so you could cp it in /lib/modules/2.6.37-ARCH/kernel/drivers/net/wireless/ and do depmod -a .

Offline

#7 2011-02-02 14:24:28

Wyrm88
Member
Registered: 2010-05-05
Posts: 53

Re: [SOLVED] Edimax EW-7811Un wireless adapter and 2.6.36 problem

Finally got it working, thx for all your help ernia! I removed /usr/local/bin from $PATH, it seems /usr/local/bin/install was a leftover from the time I tried to install Matlab and failed (due to some 64-bit library). I deleted the entire folder, installed the drivers, did bump into some "obtaining IP address" problems in wicd, but installed networkmanager instead and finally got wireless to work again.

Offline

#8 2011-02-02 14:32:36

ernia
Member
Registered: 2008-03-08
Posts: 27

Re: [SOLVED] Edimax EW-7811Un wireless adapter and 2.6.36 problem

if you want to use wicd you should downgrade to wpa_supplicant 6.9 , as stated in the install file ;-)
i'm a wicd addict and i did that :-)
remember this if you have problem with wpa

Last edited by ernia (2011-02-02 14:39:18)

Offline

#9 2011-02-08 17:00:19

naguz
Member
Registered: 2008-11-05
Posts: 98

Re: [SOLVED] Edimax EW-7811Un wireless adapter and 2.6.36 problem

ernia: Have you posted the PKGbuil/gotten any help with it? non-krnel driver are always a good asset to the AUR. And have anyone reported this problem to Realtek? They (an others using the chipset) advertise with linux suport. Then it's pretty hopeless that they don't even have drivers that build without modifications to the source.

Offline

#10 2011-02-08 19:13:02

ernia
Member
Registered: 2008-03-08
Posts: 27

Re: [SOLVED] Edimax EW-7811Un wireless adapter and 2.6.36 problem

No, I have been a little busy (and a little bit lazy :-) ) these days. I read a lot about archlinux and my new laptop, and I made some try with yad so i have not do so much.
I am going to try to make it better right now  and I will post it to the forum dedicated to aur for suggestion.
I did not contact Realtek, don't know about someone else.
The first question that would arise about the PKGBUILD is about the src tarball download: they let you download the src tarball from an ftp server which does not let you authenticate as anonymous user but requires you to have an account that get created from the web site http://218.210.127.131/downloads/downlo … loads=true . This account expires so you are supposed to visit the site before you are allowed to download. Where should i (if allowed by licence which i did not find out yet)  make the tarball available? a dropbox account would be ok?

Offline

#11 2011-02-08 20:33:54

ernia
Member
Registered: 2008-03-08
Posts: 27

Re: [SOLVED] Edimax EW-7811Un wireless adapter and 2.6.36 problem

Offline

Board footer

Powered by FluxBB