Changes between Version 19 and Version 20 of Debian gen8

Show
Ignore:
Timestamp:
05/22/11 06:42:21 (2 years ago)
Author:
divx118
Comment:

added info to wifi, how to get the user to access the internet instead of only root

Legend:

Unmodified
Added
Removed
Modified
  • Debian gen8

    v19 v20  
    235235I compiled that from [http://omappedia.com/index.php?title=Wilink_Linux&redirect=no] If someone knows a way to build it from archos sources please add the info to the wiki. 
    236236The firmware.bin is obtainable from TI. 
     237 
     238Also if you are using the driver from archos, only root has access to the internet. This is because of CONFIG_ANDROID_PARANOID_NETWORK see the following bug report for angstrom gen7 http://dev.openaos.org/ticket/59 
     239To get the user to access the internet, we have to add a few groups to debian and make the user a member of it. 
     240 
     241 
     242{{{ 
     243$ sudo addgroup --gid 3001 bt 
     244$ sudo addgroup --gid 3002 bt-net 
     245$ sudo addgroup --gid 3003 inet 
     246$ sudo addgroup --gid 3004 net_raw 
     247}}} 
     248 
     249And now adding the user to the groups supposing your user is "debian": 
     250 
     251{{{ 
     252$ sudo adduser debian bt 
     253$ sudo adduser debian bt-net 
     254$ sudo adduser debian inet 
     255$ sudo adduser debian net_raw 
     256}}} 
     257 
     258  
    237259 
    238260We are going to add a folder in the root of the rootfs where we will copy our needed files for the wlan. To succesfully load the firmware we will also need the tiwlan.ini and wlanconf.nvs (calibration file). However we will use a shortcut and copy them over from archos android on startup. We could do that for the rest of the files too, but it is more fun building stuff yourself :).