mrhaav / openwrt

21 stars 5 forks source link

Compile other packages? #6

Open 4920441 opened 1 year ago

4920441 commented 1 year ago

Hi, maybe I am not seeing it, but do you provide the whole build tree with all the adaptions you made (thank you very much for that, I really appreciate them!) so I can build some more packages I want to use the easy way?
Or is the standard ralink package mirror of the official openwrt repository useaeble out of the box?

Thanks a lot for everything!

Cheers

4920441

mrhaav commented 1 year ago

Hi The source code is available at https://github.com/mrhaav/openwrt-packages You can compile your self with the SDK-package.

  1. Download SDK-file for your device and OpenWrt version.
  2. Unpack with: tar -xf <SDK-file>
  3. cd to your unpacked <SDK-directory>
  4. Add src-git mrhaav https://github.com/mrhaav/openwrt-packages.git to feeds.conf.default
  5. Update ./scripts/feeds update -a and install ./scripts/feeds install -a all
  6. Uninstall official uqmi ./scripts/feeds uninstall uqmi
  7. Install my customized uqmi ./scripts/feeds install -p mrhaav uqmi
  8. Run make menuconfig and check in Network - WWAN that uqmi is "mod by mrhaav" and marked with {M}, save and exit menuconfig
  9. Start compiling: make package/uqmi/download make package/uqmi/prepare make package/uqmi/compile
  10. The compiled IPK-file is available in /bin/targets/<target>/<subtarget>/packages

Or if you need help, tell me your OpenWrt version and target and I can compile for you.