Contenu | Rechercher | Menus

Annonce

Si vous avez des soucis pour rester connecté, déconnectez-vous puis reconnectez-vous depuis ce lien en cochant la case
Me connecter automatiquement lors de mes prochaines visites.

À propos de l'équipe du forum.

#1 Le 24/02/2015, à 11:40

razor08350

[TUTO] Installation Mediatek MT7630E Ubuntu 14.04.

Bonjour tout le monde,
Ayant eux des problèmes avec l'installation de ma carte wifi de mon PC portable Asus R510CC sous Ubuntu 14.04, je tiens à partager mon expérience et faire partager ce petit tuto pour l'installer correctement. On trouve bien-sur, les solutions un peu partout sur le net et sur ce forum, mais souvent incomplet pour moi.

N'hésiter pas à me donner votre retour OU si j'ai fais une petite erreur :
Merci par avance.

1. Ouvrir un terminal avec et taper << lspci >> et verifier qu'il s'agit bien de la Mediatek MT7630E.

03:00.0 Network controller: MEDIATEK Corp. MT7630e 802.11bgn Wireless Network Adapter
04:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. Device 5289 (rev 01)
04:00.2 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 0a)

2. Verifier son Kernel utilisé par ubuntu : (Dans mon cas) taper << uname -r >>

-X550CC:~$ uname -r
3.13.0-32-generic

Attention, si vous avez la version précédente, le drivers est fonctionnel du kernel 3.13 à 3.14.

3. Télécharger le fichier zip contenant le driver de la carte :
https://github.com/mdjahidulhamid/MT763 … master.zip

4. Ouvrir l'archive, et décompresser tous les fichiers dans téléchargement :

btloader  firmware  install.sh  LICENSE  README.md  rt2x00

sont les fichiers et dossiers que vous devez avoir dans téléchargement après la décompression.

5. Ouvrir un nouveau Terminal, et aller dans le dossier téléchargement :

cd /home/votrenom/Téléchargements/

6. Taper << ls >> pour verifier que tous les fichiers et dossiers sont présents comme à l'étape 4.

7. Taper

sudo chmod +x ./install.sh 

dans le terminal et entrer votre mot de passe.

8. Pour terminer

sh ./install.sh

Vous pouvez alors redémarrer votre ordinateur, pour terminer l'installation, dans mon cas, après le redémarrage, j'avais ce message :

 "Le wifi est désactivé par un commutateur matériel"

donc le wifi toujours non fonctionnel.
Pour le résoudre, il suffit d'ouvrir de nouveau un terminal et taper les lignes suivantes :

1/  sudo gedit /etc/modprobe.d/blacklist.conf
2/ Ajouter cette ligne en fin de fichier :  blacklist asus-nb-wmi
3/ Redémarrer

Dernière modification par razor08350 (Le 25/02/2015, à 23:00)

Hors ligne

#2 Le 23/10/2015, à 17:51

SYLLAB

Re : [TUTO] Installation Mediatek MT7630E Ubuntu 14.04.

Bonjour Razor j'ai suivi ton tuto mais ca ne fonctionne pas pour moi
voici le retour des commandes :

incompatible pointer type [enabled by default]
  pRxWI =entry->skb->data;
        ^
/home/syllab/Téléchargements/rt2x00/rt2800lib.c: In function ‘rt2800_txdone_entry’:
/home/syllab/Téléchargements/rt2x00/rt2800lib.c:2085:9: warning: assignment from incompatible pointer type [enabled by default]
   pTxWI = txwi;
         ^
/home/syllab/Téléchargements/rt2x00/rt2800lib.c: In function ‘rt2800_config_channel_rf7630’:
/home/syllab/Téléchargements/rt2x00/rt2800lib.c:4163:22: warning: assignment discards ‘const’ qualifier from pointer target type [enabled by default]
    pMT76x0_freq_item = &MT76x0_Frequency_Plan[i];
                      ^
/home/syllab/Téléchargements/rt2x00/rt2800lib.c:4107:6: warning: unused variable ‘eeprom’ [-Wunused-variable]
  u16 eeprom;
      ^
/home/syllab/Téléchargements/rt2x00/rt2800lib.c:4104:16: warning: unused variable ‘bbp_ch_idx’ [-Wunused-variable]
  unsigned char bbp_ch_idx;
                ^
/home/syllab/Téléchargements/rt2x00/rt2800lib.c: In function ‘rt2800_vco_calibration’:
/home/syllab/Téléchargements/rt2x00/rt2800lib.c:5090:3: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
   u32 reg;
   ^
/home/syllab/Téléchargements/rt2x00/rt2800lib.c: In function ‘rt2800_link_tuner’:
/home/syllab/Téléchargements/rt2x00/rt2800lib.c:5311:15: warning: unused variable ‘i’ [-Wunused-variable]
  unsigned int i;
               ^
/home/syllab/Téléchargements/rt2x00/rt2800lib.c: In function ‘rt2800_init_rfcsr’:
/home/syllab/Téléchargements/rt2x00/rt2800lib.c:7381:3: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
   unsigned char BBPCurrentBW = BW_20;
   ^
/home/syllab/Téléchargements/rt2x00/rt2800lib.c:7432:3: warning: ‘return’ with a value, in function returning void [enabled by default]
   return 0;
   ^
/home/syllab/Téléchargements/rt2x00/rt2800lib.c: In function ‘rt2800lib_init_queues’:
/home/syllab/Téléchargements/rt2x00/rt2800lib.c:7487:4: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 2 has type ‘dma_addr_t’ [-Wformat=]
    printk("-->TX_RING: Base=0x%x, Cnt=%d\n", entry_priv->desc_dma,rt2x00dev->tx[i].limit);
    ^
/home/syllab/Téléchargements/rt2x00/rt2800lib.c:7506:3: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 2 has type ‘dma_addr_t’ [-Wformat=]
   printk("-->RX_RING: Base=0x%x, Cnt=%d\n", entry_priv->desc_dma,rt2x00dev->rx[0].limit);
   ^
/home/syllab/Téléchargements/rt2x00/rt2800lib.c: In function ‘rt2800_enable_radio’:
/home/syllab/Téléchargements/rt2x00/rt2800lib.c:7743:16: warning: unused variable ‘csr3’ [-Wunused-variable]
  MAC_DW1_STRUC csr3;
                ^
/home/syllab/Téléchargements/rt2x00/rt2800lib.c:7742:16: warning: unused variable ‘csr2’ [-Wunused-variable]
  MAC_DW0_STRUC csr2;
                ^
/home/syllab/Téléchargements/rt2x00/rt2800lib.c: In function ‘mt7630_show_rf’:
/home/syllab/Téléchargements/rt2x00/rt2800lib.c:9121:28: warning: unused variable ‘rf_bank’ [-Wunused-variable]
   unsigned char regRF = 0, rf_bank = 0;
                            ^
/home/syllab/Téléchargements/rt2x00/rt2800lib.c: At top level:
/home/syllab/Téléchargements/rt2x00/rt2800lib.c:1373:12: warning: ‘rt2800_enable_wlan_mt7630’ defined but not used [-Wunused-function]
 static int rt2800_enable_wlan_mt7630(struct rt2x00_dev *rt2x00dev)
            ^
/home/syllab/Téléchargements/rt2x00/rt2800lib.c:5954:12: warning: ‘rt2800_wait_bbp_rf_MT7630_ready’ defined but not used [-Wunused-function]
 static int rt2800_wait_bbp_rf_MT7630_ready(struct rt2x00_dev *rt2x00dev)
            ^
/home/syllab/Téléchargements/rt2x00/rt2800lib.c:7547:13: warning: ‘MT76x0_CalculateTxpower’ defined but not used [-Wunused-function]
 static void MT76x0_CalculateTxpower(
             ^
In file included from /home/syllab/Téléchargements/rt2x00/rt2x00.h:48:0,
                 from /home/syllab/Téléchargements/rt2x00/rt2800lib.c:42:
/home/syllab/Téléchargements/rt2x00/rt2800lib.c: In function ‘rt2800_rf_init_calibration’:
/home/syllab/Téléchargements/rt2x00/rt2x00reg.h:251:11: warning: ‘rfcsr’ may be used uninitialized in this function [-Wmaybe-uninitialized]
  *(__reg) &= ~((__field).bit_mask); \
           ^
/home/syllab/Téléchargements/rt2x00/rt2800lib.c:6622:5: note: ‘rfcsr’ was declared here
  u8 rfcsr;
     ^
In file included from /home/syllab/Téléchargements/rt2x00/rt2x00.h:48:0,
                 from /home/syllab/Téléchargements/rt2x00/rt2800lib.c:42:
/home/syllab/Téléchargements/rt2x00/rt2800lib.c: In function ‘rt2800_normal_mode_setup_3xxx’:
/home/syllab/Téléchargements/rt2x00/rt2x00reg.h:251:11: warning: ‘rfcsr’ may be used uninitialized in this function [-Wmaybe-uninitialized]
  *(__reg) &= ~((__field).bit_mask); \
           ^
/home/syllab/Téléchargements/rt2x00/rt2800lib.c:6681:15: note: ‘rfcsr’ was declared here
  u8 min_gain, rfcsr, bbp;
               ^
/home/syllab/Téléchargements/rt2x00/rt2800lib.c: In function ‘rt2800_config’:
/home/syllab/Téléchargements/rt2x00/rt2800lib.c:4290:30: warning: array subscript is above array bounds [-Warray-bounds]
    if (MT76x0_RF_INT_PA_RegTb[i].BwBand & RfBand)
                              ^
/home/syllab/Téléchargements/rt2x00/rt2800lib.c:4295:30: warning: array subscript is above array bounds [-Warray-bounds]
        MT76x0_RF_INT_PA_RegTb[i].Bank);
                              ^
/home/syllab/Téléchargements/rt2x00/rt2800lib.c:4294:30: warning: array subscript is above array bounds [-Warray-bounds]
        MT76x0_RF_INT_PA_RegTb[i].Value,
                              ^
/home/syllab/Téléchargements/rt2x00/rt2800lib.c:4293:30: warning: array subscript is above array bounds [-Warray-bounds]
        MT76x0_RF_INT_PA_RegTb[i].Register,
                              ^
In file included from /home/syllab/Téléchargements/rt2x00/rt2800lib.c:44:0:
/home/syllab/Téléchargements/rt2x00/rt2800.h:1787:0: warning: "TX_STA_CNT0" redefined [enabled by default]
 #define TX_STA_CNT0   0x170c
 ^
In file included from /home/syllab/Téléchargements/rt2x00/rt2800lib.c:42:0:
/home/syllab/Téléchargements/rt2x00/rt2x00.h:703:0: note: this is the location of the previous definition
 #define TX_STA_CNT0  0x170C
 ^
  CC [M]  /home/syllab/Téléchargements/rt2x00/rt2400pci.o
/home/syllab/Téléchargements/rt2x00/rt2400pci.c:1726:2: warning: initialization from incompatible pointer type [enabled by default]
  .sw_scan_start  = rt2x00mac_sw_scan_start,
  ^
/home/syllab/Téléchargements/rt2x00/rt2400pci.c:1726:2: warning: (near initialization for ‘rt2400pci_mac80211_ops.sw_scan_start’) [enabled by default]
/home/syllab/Téléchargements/rt2x00/rt2400pci.c:1727:2: warning: initialization from incompatible pointer type [enabled by default]
  .sw_scan_complete = rt2x00mac_sw_scan_complete,
  ^
/home/syllab/Téléchargements/rt2x00/rt2400pci.c:1727:2: warning: (near initialization for ‘rt2400pci_mac80211_ops.sw_scan_complete’) [enabled by default]
/home/syllab/Téléchargements/rt2x00/rt2400pci.c:1734:2: warning: initialization from incompatible pointer type [enabled by default]
  .flush   = rt2x00mac_flush,
  ^
/home/syllab/Téléchargements/rt2x00/rt2400pci.c:1734:2: warning: (near initialization for ‘rt2400pci_mac80211_ops.flush’) [enabled by default]
  CC [M]  /home/syllab/Téléchargements/rt2x00/rt2500pci.o
/home/syllab/Téléchargements/rt2x00/rt2500pci.c:2015:2: warning: initialization from incompatible pointer type [enabled by default]
  .sw_scan_start  = rt2x00mac_sw_scan_start,
  ^
/home/syllab/Téléchargements/rt2x00/rt2500pci.c:2015:2: warning: (near initialization for ‘rt2500pci_mac80211_ops.sw_scan_start’) [enabled by default]
/home/syllab/Téléchargements/rt2x00/rt2500pci.c:2016:2: warning: initialization from incompatible pointer type [enabled by default]
  .sw_scan_complete = rt2x00mac_sw_scan_complete,
  ^
/home/syllab/Téléchargements/rt2x00/rt2500pci.c:2016:2: warning: (near initialization for ‘rt2500pci_mac80211_ops.sw_scan_complete’) [enabled by default]
/home/syllab/Téléchargements/rt2x00/rt2500pci.c:2023:2: warning: initialization from incompatible pointer type [enabled by default]
  .flush   = rt2x00mac_flush,
  ^
/home/syllab/Téléchargements/rt2x00/rt2500pci.c:2023:2: warning: (near initialization for ‘rt2500pci_mac80211_ops.flush’) [enabled by default]
  CC [M]  /home/syllab/Téléchargements/rt2x00/rt61pci.o
In file included from /home/syllab/Téléchargements/rt2x00/rt61pci.c:40:0:
/home/syllab/Téléchargements/rt2x00/rt61pci.h:168:0: warning: "HW_NULL_BASE" redefined [enabled by default]
 #define HW_NULL_BASE   0x2b00
 ^
In file included from /home/syllab/Téléchargements/rt2x00/rt61pci.c:37:0:
/home/syllab/Téléchargements/rt2x00/rt2x00.h:380:0: note: this is the location of the previous definition
 #define HW_NULL_BASE            0x7700
 ^
In file included from /home/syllab/Téléchargements/rt2x00/rt61pci.c:40:0:
/home/syllab/Téléchargements/rt2x00/rt61pci.h:1293:0: warning: "TXINFO_SIZE" redefined [enabled by default]
 #define TXINFO_SIZE   ( 6 * sizeof(__le32) )
 ^
In file included from /home/syllab/Téléchargements/rt2x00/rt61pci.c:37:0:
/home/syllab/Téléchargements/rt2x00/rt2x00.h:1207:0: note: this is the location of the previous definition
 #define TXINFO_SIZE   4
 ^
/home/syllab/Téléchargements/rt2x00/rt61pci.c:2979:2: warning: initialization from incompatible pointer type [enabled by default]
  .sw_scan_start  = rt2x00mac_sw_scan_start,
  ^
/home/syllab/Téléchargements/rt2x00/rt61pci.c:2979:2: warning: (near initialization for ‘rt61pci_mac80211_ops.sw_scan_start’) [enabled by default]
/home/syllab/Téléchargements/rt2x00/rt61pci.c:2980:2: warning: initialization from incompatible pointer type [enabled by default]
  .sw_scan_complete = rt2x00mac_sw_scan_complete,
  ^
/home/syllab/Téléchargements/rt2x00/rt61pci.c:2980:2: warning: (near initialization for ‘rt61pci_mac80211_ops.sw_scan_complete’) [enabled by default]
/home/syllab/Téléchargements/rt2x00/rt61pci.c:2986:2: warning: initialization from incompatible pointer type [enabled by default]
  .flush   = rt2x00mac_flush,
  ^
/home/syllab/Téléchargements/rt2x00/rt61pci.c:2986:2: warning: (near initialization for ‘rt61pci_mac80211_ops.flush’) [enabled by default]
  CC [M]  /home/syllab/Téléchargements/rt2x00/rt2800pci.o
In file included from /home/syllab/Téléchargements/rt2x00/rt2800pci.c:48:0:
/home/syllab/Téléchargements/rt2x00/rt2800.h:1787:0: warning: "TX_STA_CNT0" redefined [enabled by default]
 #define TX_STA_CNT0   0x170c
 ^
In file included from /home/syllab/Téléchargements/rt2x00/rt2800pci.c:43:0:
/home/syllab/Téléchargements/rt2x00/rt2x00.h:703:0: note: this is the location of the previous definition
 #define TX_STA_CNT0  0x170C
 ^
In file included from /home/syllab/Téléchargements/rt2x00/rt2800pci.c:49:0:
/home/syllab/Téléchargements/rt2x00/rt2800pci.h:55:1: warning: "/*" within comment [-Wcomment]
 /*
 ^
/home/syllab/Téléchargements/rt2x00/rt2800pci.c: In function ‘rt2800pci_init_queues’:
/home/syllab/Téléchargements/rt2x00/rt2800pci.c:594:4: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 2 has type ‘dma_addr_t’ [-Wformat=]
    printk("-->TX_RING: Base=0x%x, Cnt=%d\n", entry_priv->desc_dma,rt2x00dev->tx[i].limit);
    ^
/home/syllab/Téléchargements/rt2x00/rt2800pci.c:614:3: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 2 has type ‘dma_addr_t’ [-Wformat=]
   printk("-->RX_RING: Base=0x%x, Cnt=%d\n", entry_priv->desc_dma,rt2x00dev->rx[0].limit);
   ^
/home/syllab/Téléchargements/rt2x00/rt2800pci.c: In function ‘rt2800pci_write_tx_desc’:
/home/syllab/Téléchargements/rt2x00/rt2800pci.c:929:7: warning: assignment from incompatible pointer type [enabled by default]
  pTxD = entry_priv->desc;
       ^
/home/syllab/Téléchargements/rt2x00/rt2800pci.c:953:3: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
   struct _TXINFO_NMAC_PKT *nmac_info;
   ^
/home/syllab/Téléchargements/rt2x00/rt2800pci.c: In function ‘rt2800pci_fill_rxdone’:
/home/syllab/Téléchargements/rt2x00/rt2800pci.c:1040:15: warning: assignment from incompatible pointer type [enabled by default]
    pRxFceInfo = &hw_rx_info[12];
               ^
/home/syllab/Téléchargements/rt2x00/rt2800pci.c:1043:12: warning: assignment from incompatible pointer type [enabled by default]
    pRxInfo = entry->skb->data;
            ^
/home/syllab/Téléchargements/rt2x00/rt2800pci.c:1035:12: warning: unused variable ‘destrxd’ [-Wunused-variable]
    __le32 *destrxd = NULL;
            ^
/home/syllab/Téléchargements/rt2x00/rt2800pci.c:1034:18: warning: unused variable ‘hw_fce’ [-Wunused-variable]
    unsigned char hw_fce[4];
                  ^
/home/syllab/Téléchargements/rt2x00/rt2800pci.c: At top level:
/home/syllab/Téléchargements/rt2x00/rt2800pci.c:1262:182: warning: backslash and newline separated by space [enabled by default]
                  printk("((typeof(__tmp->type))__kfifo->data)[%d]=0x%x\n",__kfifo->out & __tmp->kfifo.mask, ((typeof(__tmp->type))__kfifo->data)[__kfifo->out & __tmp->kfifo.mask]); \      
 ^
/home/syllab/Téléchargements/rt2x00/rt2800pci.c:1263:35: warning: backslash and newline separated by space [enabled by default]
     *(typeof(__tmp->type))__val = \   
 ^
/home/syllab/Téléchargements/rt2x00/rt2800pci.c:1270:19: warning: backslash and newline separated by space [enabled by default]
                 } \ 
 ^
/home/syllab/Téléchargements/rt2x00/rt2800pci.c:1271:17: warning: backslash and newline separated by space [enabled by default]
               } \    
 ^
/home/syllab/Téléchargements/rt2x00/rt2800pci.c: In function ‘rt2800pci_tx8damdone_tasklet’:
/home/syllab/Téléchargements/rt2x00/rt2800pci.c:1389:10: warning: unused variable ‘bReschedule’ [-Wunused-variable]
  BOOLEAN bReschedule = 0;
          ^
/home/syllab/Téléchargements/rt2x00/rt2800pci.c:1388:23: warning: unused variable ‘IntSource’ [-Wunused-variable]
  INT_SOURCE_CSR_STRUC IntSource;
                       ^
/home/syllab/Téléchargements/rt2x00/rt2800pci.c:1387:16: warning: unused variable ‘flags’ [-Wunused-variable]
  unsigned long flags;
                ^
/home/syllab/Téléchargements/rt2x00/rt2800pci.c: At top level:
/home/syllab/Téléchargements/rt2x00/rt2800pci.c:1490:98: warning: backslash and newline separated by space [enabled by default]
    printk("value=0x%x, (typeof(*__tmp->type))__val = 0x%x\n", val, (typeof(*__tmp->type))__val); \    
 ^
/home/syllab/Téléchargements/rt2x00/rt2800pci.c:1498:163: warning: backslash and newline separated by space [enabled by default]
 printk("((typeof(__tmp->type))__kfifo->data)[%d]=0x%x\n",__kfifo->in & __tmp->kfifo.mask, ((typeof(__tmp->type))__kfifo->data)[__kfifo->in & __tmp->kfifo.mask]); \                       
 ^
/home/syllab/Téléchargements/rt2x00/rt2800pci.c:1500:19: warning: backslash and newline separated by space [enabled by default]
                 } \ 
 ^
/home/syllab/Téléchargements/rt2x00/rt2800pci.c:1501:17: warning: backslash and newline separated by space [enabled by default]
               } \    
 ^
/home/syllab/Téléchargements/rt2x00/rt2800pci.c: In function ‘rt2800pci_txstatus_interrupt’:
/home/syllab/Téléchargements/rt2x00/rt2800pci.c:1529:3: warning: passing argument 3 of ‘rt2x00mmio_register_read’ from incompatible pointer type [enabled by default]
   rt2x00mmio_register_read(rt2x00dev, TX_STA_FIFO_EXT, &Fifi_Status_ext.word);
   ^
In file included from /home/syllab/Téléchargements/rt2x00/rt2800pci.c:44:0:
/home/syllab/Téléchargements/rt2x00/rt2x00mmio.h:34:20: note: expected ‘u32 *’ but argument is of type ‘ULONG *’
 static inline void rt2x00mmio_register_read(struct rt2x00_dev *rt2x00dev,
                    ^
/home/syllab/Téléchargements/rt2x00/rt2800pci.c: At top level:
/home/syllab/Téléchargements/rt2x00/rt2800pci.c:1666:2: warning: initialization from incompatible pointer type [enabled by default]
  .sw_scan_start  = rt2x00mac_sw_scan_start,
  ^
/home/syllab/Téléchargements/rt2x00/rt2800pci.c:1666:2: warning: (near initialization for ‘rt2800pci_mac80211_ops.sw_scan_start’) [enabled by default]
/home/syllab/Téléchargements/rt2x00/rt2800pci.c:1667:2: warning: initialization from incompatible pointer type [enabled by default]
  .sw_scan_complete = rt2x00mac_sw_scan_complete,
  ^
/home/syllab/Téléchargements/rt2x00/rt2800pci.c:1667:2: warning: (near initialization for ‘rt2800pci_mac80211_ops.sw_scan_complete’) [enabled by default]
/home/syllab/Téléchargements/rt2x00/rt2800pci.c:1678:2: warning: initialization from incompatible pointer type [enabled by default]
  .flush   = rt2x00mac_flush,
  ^
/home/syllab/Téléchargements/rt2x00/rt2800pci.c:1678:2: warning: (near initialization for ‘rt2800pci_mac80211_ops.flush’) [enabled by default]
/home/syllab/Téléchargements/rt2x00/rt2800pci.c:55:13: warning: ‘rt2860_int_disable’ defined but not used [-Wunused-function]
 static void rt2860_int_disable(struct rt2x00_dev *rt2x00dev, unsigned int mode)
             ^
/home/syllab/Téléchargements/rt2x00/rt2800pci.c:64:13: warning: ‘rt2860_int_enable’ defined but not used [-Wunused-function]
 static void rt2860_int_enable(struct rt2x00_dev *rt2x00dev, unsigned int mode)
             ^
  CC [M]  /home/syllab/Téléchargements/rt2x00/rt2500usb.o
/home/syllab/Téléchargements/rt2x00/rt2500usb.c:1830:2: warning: initialization from incompatible pointer type [enabled by default]
  .sw_scan_start  = rt2x00mac_sw_scan_start,
  ^
/home/syllab/Téléchargements/rt2x00/rt2500usb.c:1830:2: warning: (near initialization for ‘rt2500usb_mac80211_ops.sw_scan_start’) [enabled by default]
/home/syllab/Téléchargements/rt2x00/rt2500usb.c:1831:2: warning: initialization from incompatible pointer type [enabled by default]
  .sw_scan_complete = rt2x00mac_sw_scan_complete,
  ^
/home/syllab/Téléchargements/rt2x00/rt2500usb.c:1831:2: warning: (near initialization for ‘rt2500usb_mac80211_ops.sw_scan_complete’) [enabled by default]
/home/syllab/Téléchargements/rt2x00/rt2500usb.c:1836:2: warning: initialization from incompatible pointer type [enabled by default]
  .flush   = rt2x00mac_flush,
  ^
/home/syllab/Téléchargements/rt2x00/rt2500usb.c:1836:2: warning: (near initialization for ‘rt2500usb_mac80211_ops.flush’) [enabled by default]
  CC [M]  /home/syllab/Téléchargements/rt2x00/rt73usb.o
In file included from /home/syllab/Téléchargements/rt2x00/rt73usb.c:38:0:
/home/syllab/Téléchargements/rt2x00/rt73usb.h:925:0: warning: "TXINFO_SIZE" redefined [enabled by default]
 #define TXINFO_SIZE   ( 6 * sizeof(__le32) )
 ^
In file included from /home/syllab/Téléchargements/rt2x00/rt73usb.c:36:0:
/home/syllab/Téléchargements/rt2x00/rt2x00.h:1207:0: note: this is the location of the previous definition
 #define TXINFO_SIZE   4
 ^
/home/syllab/Téléchargements/rt2x00/rt73usb.c:2317:2: warning: initialization from incompatible pointer type [enabled by default]
  .sw_scan_start  = rt2x00mac_sw_scan_start,
  ^
/home/syllab/Téléchargements/rt2x00/rt73usb.c:2317:2: warning: (near initialization for ‘rt73usb_mac80211_ops.sw_scan_start’) [enabled by default]
/home/syllab/Téléchargements/rt2x00/rt73usb.c:2318:2: warning: initialization from incompatible pointer type [enabled by default]
  .sw_scan_complete = rt2x00mac_sw_scan_complete,
  ^
/home/syllab/Téléchargements/rt2x00/rt73usb.c:2318:2: warning: (near initialization for ‘rt73usb_mac80211_ops.sw_scan_complete’) [enabled by default]
/home/syllab/Téléchargements/rt2x00/rt73usb.c:2324:2: warning: initialization from incompatible pointer type [enabled by default]
  .flush   = rt2x00mac_flush,
  ^
/home/syllab/Téléchargements/rt2x00/rt73usb.c:2324:2: warning: (near initialization for ‘rt73usb_mac80211_ops.flush’) [enabled by default]
  CC [M]  /home/syllab/Téléchargements/rt2x00/rt2800usb.o
In file included from /home/syllab/Téléchargements/rt2x00/rt2800usb.c:42:0:
/home/syllab/Téléchargements/rt2x00/rt2800.h:1787:0: warning: "TX_STA_CNT0" redefined [enabled by default]
 #define TX_STA_CNT0   0x170c
 ^
In file included from /home/syllab/Téléchargements/rt2x00/rt2800usb.c:39:0:
/home/syllab/Téléchargements/rt2x00/rt2x00.h:703:0: note: this is the location of the previous definition
 #define TX_STA_CNT0  0x170C
 ^
In file included from /home/syllab/Téléchargements/rt2x00/rt2800usb.c:43:0:
/home/syllab/Téléchargements/rt2x00/rt2800usb.h:44:0: warning: "RXINFO_DESC_SIZE" redefined [enabled by default]
 #define RXINFO_DESC_SIZE  (1 * sizeof(__le32))
 ^
In file included from /home/syllab/Téléchargements/rt2x00/rt2800usb.c:42:0:
/home/syllab/Téléchargements/rt2x00/rt2800.h:3151:0: note: this is the location of the previous definition
 #define RXINFO_DESC_SIZE  (4 * sizeof(__le32))
 ^
In file included from /home/syllab/Téléchargements/rt2x00/rt2x00.h:40:0,
                 from /home/syllab/Téléchargements/rt2x00/rt2800usb.c:39:
/home/syllab/Téléchargements/rt2x00/rt2800usb.c: In function ‘rt2800usb_tx_sta_fifo_read_completed’:
include/linux/kfifo.h:390:37: warning: initialization makes integer from pointer without a cast [enabled by default]
  typeof(*__tmp->const_type) __val = (val); \
                                     ^
/home/syllab/Téléchargements/rt2x00/rt2800usb.c:165:8: note: in expansion of macro ‘kfifo_put’
   if (!kfifo_put(&rt2x00dev->txstatus_fifo, &tx_status))
        ^
/home/syllab/Téléchargements/rt2x00/rt2800usb.c: In function ‘rt2800usb_probe_hw’:
/home/syllab/Téléchargements/rt2x00/rt2800usb.c:766:2: error: implicit declaration of function ‘PREPARE_WORK’ [-Werror=implicit-function-declaration]
  PREPARE_WORK(&rt2x00dev->txdone_work, rt2800usb_work_txdone);
  ^
/home/syllab/Téléchargements/rt2x00/rt2800usb.c: At top level:
/home/syllab/Téléchargements/rt2x00/rt2800usb.c:781:2: warning: initialization from incompatible pointer type [enabled by default]
  .sw_scan_start  = rt2x00mac_sw_scan_start,
  ^
/home/syllab/Téléchargements/rt2x00/rt2800usb.c:781:2: warning: (near initialization for ‘rt2800usb_mac80211_ops.sw_scan_start’) [enabled by default]
/home/syllab/Téléchargements/rt2x00/rt2800usb.c:782:2: warning: initialization from incompatible pointer type [enabled by default]
  .sw_scan_complete = rt2x00mac_sw_scan_complete,
  ^
/home/syllab/Téléchargements/rt2x00/rt2800usb.c:782:2: warning: (near initialization for ‘rt2800usb_mac80211_ops.sw_scan_complete’) [enabled by default]
/home/syllab/Téléchargements/rt2x00/rt2800usb.c:793:2: warning: initialization from incompatible pointer type [enabled by default]
  .flush   = rt2x00mac_flush,
  ^
/home/syllab/Téléchargements/rt2x00/rt2800usb.c:793:2: warning: (near initialization for ‘rt2800usb_mac80211_ops.flush’) [enabled by default]
cc1: some warnings being treated as errors
make[2]: *** [/home/syllab/Téléchargements/rt2x00/rt2800usb.o] Erreur 1
make[1]: *** [_module_/home/syllab/Téléchargements/rt2x00] Erreur 2
make[1]: quittant le répertoire « /usr/src/linux-headers-3.19.0-31-generic »
make: *** [all] Erreur 2
make -C /lib/modules/3.19.0-31-generic/build M=/home/syllab/Téléchargements/btloader clean
make[1]: entrant dans le répertoire « /usr/src/linux-headers-3.19.0-31-generic »
  CLEAN   /home/syllab/Téléchargements/btloader/.tmp_versions
  CLEAN   /home/syllab/Téléchargements/btloader/Module.symvers
make[1]: quittant le répertoire « /usr/src/linux-headers-3.19.0-31-generic »
make -C /lib/modules/3.19.0-31-generic/build M=/home/syllab/Téléchargements/btloader modules
make[1]: entrant dans le répertoire « /usr/src/linux-headers-3.19.0-31-generic »
  CC [M]  /home/syllab/Téléchargements/btloader/mt76xx.o
  Building modules, stage 2.
  MODPOST 1 modules
  CC      /home/syllab/Téléchargements/btloader/mt76xx.mod.o
  LD [M]  /home/syllab/Téléchargements/btloader/mt76xx.ko
make[1]: quittant le répertoire « /usr/src/linux-headers-3.19.0-31-generic »
cp: impossible d'évaluer «rt2x00/*.ko»: Aucun fichier ou dossier de ce type
update-rc.d: warning: /etc/init.d/load.sh missing LSB information
update-rc.d: see <http://wiki.debian.org/LSBInitScripts>
 System start/stop links for /etc/init.d/load.sh already exist.
insmod: ERROR: could not insert module /lib/modules/3.19.0-31-generic/kernel/drivers/misc/eeprom/eeprom.ko: File exists
insmod: ERROR: could not insert module /lib/modules/3.19.0-31-generic/kernel/drivers/misc/eeprom/eeprom_93cx6.ko: File exists
insmod: ERROR: could not insert module /lib/modules/3.19.0-31-generic/kernel/lib/crc-ccitt.ko: File exists
insmod: ERROR: could not insert module /lib/modules/3.19.0-31-generic/kernel/net/wireless/cfg80211.ko: File exists
insmod: ERROR: could not insert module /lib/modules/3.19.0-31-generic/kernel/net/mac80211/mac80211.ko: File exists
insmod: ERROR: could not load module ./rt2x00lib.ko: No such file or directory
insmod: ERROR: could not load module ./rt2x00pci.ko: No such file or directory
insmod: ERROR: could not load module ./rt2x00mmio.ko: No such file or directory
insmod: ERROR: could not load module ./rt2800lib.ko: No such file or directory
insmod: ERROR: could not load module ./rt2800pci.ko: No such file or directory
insmod: ERROR: could not insert module ./mt76xx.ko: File exists

qu'est-ce que vous en dit?
Merci
Syllab

Hors ligne

#3 Le 23/10/2015, à 20:55

SYLLAB

Re : [TUTO] Installation Mediatek MT7630E Ubuntu 14.04.

Bonjour je comprends qu'avec mon kernel 3.19 je dois trouver les pilotes à jour...si je trouve je posterai le lien ici pour ceux qui comme moi sont sur un kernel plus récent.
A bientôt j'espère avec cette solution.

Hors ligne

#4 Le 24/10/2015, à 17:06

malbo

Re : [TUTO] Installation Mediatek MT7630E Ubuntu 14.04.

A noter que SYLLAB a réussi en suivant un autre Tuto : http://forum.ubuntu-fr.org/viewtopic.ph … #p20849721

Hors ligne