SECBULK

Mike
do i have to install SECBULK.sys in my mini2440 with VGA board in order to
use USB mouse? how do i install it?

Roger
What OS are you using?

SECBULK.sys is the FriendlyARM dowload driver for the host pc.

Chris
I use Ubuntu, but by compile of secbulk module, get a failure.
With:
make -C /lib/modules/`uname -r`/build M=`pwd` modules

I want to compile and these are the failures:
make: Gehe in Verzeichnis '/usr/src/linux-headers-2.6.31-22-generic'
  CC [M]  /witech/dnw_linux/secbulk/secbulk.o
/witech/dnw_linux/secbulk/secbulk.c: In function ‘secbulk_write’:
/witech/dnw_linux/secbulk/secbulk.c:58: warning: comparison of distinct
pointer types lacks a cast
  Building modules, stage 2.
  MODPOST 1 modules
  CC      /witech/dnw_linux/secbulk/secbulk.mod.o
  LD [M]  /witech/dnw_linux/secbulk/secbulk.ko
make: Verlasse Verzeichnis '/usr/src/linux-headers-2.6.31-22-generic'

I can load this module with "insmod ./secbulk.ko", but when I connect all I
get a failure that dnw cannot open /dev/secbulk0.
In dmesg is all loaded.
Do you have an idea how I can fix this?

cirus
HELP, URGENT.secbulk.sys
grazie cirus italia

davef
http://www.friendlyarm.net/dl.php?file=dnw.zip

I think they are in here.

melih
if you are getting this error;
"Can not open /dev/secbulk0: No such file or directory"

First;
$ cd /dev/
$ ls

and find the "secbulkX" and note the "X" number

You can modify the sourcefile usbpush/dnw-linux/src/dnw.c

this lines will change


$nano dnw.c

const char* dev = "/dev/secbulk0";
#define BLOCK_SIZE  (1*1024*1024)

with this

const char* dev = "/dev/secbulk1";   // "1" is my X number
#define BLOCK_SIZE  (1*1024*1024)

save and remake.
cheers.