3

I want to install a module (bcm4329.ko) in my nexus one phone. I have rooted the phone and installed Cyanogenmod too.

In Terminal emulator, I tried various commands but everything resulted in failure

$ insmod /system/lib/modules/bcm4329.ko //[Operation Not Permitted]
$ su insmod /system/lib/modules/bcm4329.ko //[throw the syntax/man page of su]
$ cd /system/lib/modules
$ chmod 777 bcm4329.ko //[Read only file system]

The error messages I received are enclosed within '[ ]' after every command. How can I install this module in my android phone. Any help please.

Izzy
  • 91,166
  • 73
  • 343
  • 943
SyncMaster
  • 431
  • 4
  • 8
  • 17

1 Answers1

3

You need to remount the system partition as read-write, it's read-only by default.

mount -o remount,rw /dev/block/mtdblock3 /system
Matthew Read
  • 50,567
  • 30
  • 145
  • 273