diff options
author | Aloisio Almeida Jr <aloisio.almeida@openbosssa.org> | 2008-10-23 18:03:06 -0300 |
---|---|---|
committer | Rodrigo Vivi <rodrigo.vivi@openbossa.org> | 2008-10-23 18:03:14 -0300 |
commit | be4896c302aff240686aa37c8717cfa1b2b348a4 (patch) | |
tree | 933bcfffda8d16babf3ba312d3851df37aacb370 /packages/mamona/cx3110x-770he-0.8.1/fix_ssid_data_length.patch | |
parent | 0dd26a606bc966979bc6b2cebc163f9ce1838a11 (diff) |
cx3110x: Rearranging completely the cx3110x driver build
1. Different package names to each kernel. Now we can provide packages to more than one kernel at the same repository.
2. Creating inc file.
3. Including init.d script to configure the right module.
4. Adapting task-mamona to these changes
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@openbossa.org>
Diffstat (limited to 'packages/mamona/cx3110x-770he-0.8.1/fix_ssid_data_length.patch')
-rw-r--r-- | packages/mamona/cx3110x-770he-0.8.1/fix_ssid_data_length.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/packages/mamona/cx3110x-770he-0.8.1/fix_ssid_data_length.patch b/packages/mamona/cx3110x-770he-0.8.1/fix_ssid_data_length.patch new file mode 100644 index 0000000000..a9e36ce6dd --- /dev/null +++ b/packages/mamona/cx3110x-770he-0.8.1/fix_ssid_data_length.patch @@ -0,0 +1,13 @@ +Index: cx3110x-0.8.1/src/sm_drv_ioctl_umac.c +=================================================================== +--- cx3110x-0.8.1.orig/src/sm_drv_ioctl_umac.c 2008-04-28 15:59:37.000000000 -0300 ++++ cx3110x-0.8.1/src/sm_drv_ioctl_umac.c 2008-04-28 15:59:57.000000000 -0300 +@@ -171,7 +171,7 @@ + /* The following entries will be displayed in the same order we give them */ + + /* The ESSID. */ +- iwe.u.data.length = strlen(bss->ssid); ++ iwe.u.data.length = strlen(bss->ssid + 1); + iwe.u.data.flags = 1; + iwe.cmd = SIOCGIWESSID; + current_ev = iwe_stream_add_point(current_ev, end_buf, |