Files
hackpi/dwc2
2017-03-02 18:47:00 -05:00
..
2017-03-02 18:47:00 -05:00
2017-03-02 18:47:00 -05:00
2017-03-02 18:47:00 -05:00
2017-03-02 18:47:00 -05:00

Build your own kernel module

If your Raspberry Pi kernel is of a different version that the prebuilt modules present in this repository, here's how you can build your own.

  1. Use this program to download the correct Raspberry Pi kernel source:
    sudo wget https://raw.githubusercontent.com/notro/rpi-source/master/rpi-source -O /usr/bin/rpi-source && sudo chmod +x /usr/bin/rpi-source && /usr/bin/rpi-source -q --tag-update
  2. Get the kernel source:
    rpi-source
    If there are errors, be sure to check rpi-source's wiki for help
  3. Patch the kernel module using the patch file from my repository:
    cd ~/linux/drivers/usb/dwc2 patch -i ~/HackPi/gadget.patch
  4. Build the module:
    cd ~/linux
    make M=drivers/usb/dwc2 CONFIG_USB_DWC2=m
  5. Your module dwc2.ko should now be present in ~/linux/drivers/usb/dwc2