Giter Site home page Giter Site logo

build-asuswrt-merlin's Introduction

build-asuswrt-merlin

Helper scripts to build RMerl/asuswrt-merlin without much extra typing.

Summary

Last tested on master from RMerl/asuswrt-merlin as of 2015-02-11. The script takes care of the steps mentioned above for Ubuntu 13.10 and newer. In addition it does fixups to the source tree which ensure that it can run without superuser rights as long as the user makes sure all the packages are installed. It will also check for the packages being installed and bail out with a meaningful error message if not.

It can be run in two modes: with or without sudo involved. With sudo it will use the symbolic link method inside /opt, whereas without it will modify the files in the source tree to adjust hardcoded paths.

If you are running inside a tmux pane, this will also pipe the output into a log file (see Environment variables).

Supported distributions

  • Debian 7.x (tested on 7.8)
  • Ubuntu 12.04 and above (tested on 12.04 and 14.04)
  • Linux Mint 13 and above (experimental, untested)

All were amd64 (x86_64).

Syntax

  • Unprivileged: ./debian-build-image <router-model> [path-to-asuswrt-merlin]
  • With sudo: USE_SUDO=1 ./debian-build-image <router-model> [path-to-asuswrt-merlin]

You can leave out the path-to-asuswrt-merlin argument and the script will check the folder it resides in for a marker file (README-merlin.txt) to see whether this is the expected source tree.

Supported router models

The *R and *W variants of the routers are also supported. R is for retail versions and W for white models. The firmware is the same. The router name can be given in upper or lower case and you can leave out the trailing U, R or W.

MIPS-based routers

  • RT-N16
  • RT-N66U
  • RT-AC66U

ARM-based routers

  • RT-AC56U
  • RT-AC68U & RT-AC68U_V2
  • RT-AC69U
  • RT-AC87U

Environment variables

Some environment variables influence how the script behaves:

  • Any non-empty value for USE_SUDO will cause the image creation process to assume that sudo is available to symlink the toolchain into /opt. This is useful if for some reason the unprivileged method fails or if you simply prefer to stick closer to the process explained on the RMerl/asuswrt-merlin wiki.
  • Any non-empty value for FORCE_UNSUPPORTED can be used to run the script on otherwise not explicitly supported Debian flavors.
  • TMUX_PANE is used to sense the presence of a tmux session and will turn on logging. To inhibit this behavior, make sure to either unset this variable or to give it an empty value during invocation (i.e. TMUX_PANE= ./debian-build-image ...).

You can either set the environment variable globally by exporting it prior to the invocation, e.g.:

export USE_SUDO=1
./debian-build-image RT-N66U

... or by passing it on the command line like so:

USE_SUDO=1 ./debian-build-image RT-N66U

Special syntax for prerequisites

In order to have the script install all the prerequisites using apt-get, use the following method:

  • ./debian-build-image -p <router-model> (or --prereq instead of -p)

Please note that this requires you to be a sudoer. Usually that means you need to be a member of the group sudo on .deb-based distros or wheel on .rpm-based distros.

NOTE: Strictly speaking the command should also work without the router model given, but it may miss some model-specific prerequisites in such a case. As an example: ARM routers require libelf1:i386 because the gcc of the ARM toolchain depends on it.

Usage on Debian, Linux Mint and Ubuntu

Preparation

  • Verify you have git installed, otherwise do sudo apt-get --no-install-recommends install git git-man.
  • Change into a folder inside of which you'd like the repository to reside (e.g. ~).
  • Clone the RMerl/asuswrt-merlin source:
    • via SSH: git clone [email protected]:RMerl/asuswrt-merlin.git
    • via HTTPS: git clone https://github.com/RMerl/asuswrt-merlin.git
  • Clone this repository or download the raw debian-build-image script:
    • via SSH: git clone [email protected]:assarbad/build-asuswrt-merlin.git
    • via HTTPS: git clone https://github.com/assarbad/build-asuswrt-merlin.git
    • Download wget https://raw.githubusercontent.com/assarbad/build-asuswrt-merlin/master/debian-build-image && chmod +x debian-build-image
  • Copy debian-build-image into the clone of RMerl/asuswrt-merlin (e.g. ~/asuswrt-merlin).
  • Change into the RMerl/asuswrt-merlin directory (e.g. ~/asuswrt-merlin) and invoke ./debian-build-image --prereq there.
    • This will prompt you to execute a sudo command to install all prerequisites. This command does not check before whether some packages are missing, though. Remember that this requires you to be a sudoer!

Building an image

Well, the syntax has been explained above. Running the script is as easy as invoking (from our previous example):

~/asuswrt-merlin/debian-build-image RT-N66U

The name of the router is case-insensitive. Also, it handles the models with their U, R, and W prefixes.

At this point you'll probably want to take a break and come back later. This will take quite a while.

Starting over

  • Change into the clone directory
  • You'll want to issue a git reset --hard inside the cloned repository to undo all the changes debian-build-image does
  • And then start over after the preparation steps above

Usage with Vagrant

It should be easiest way to build firmware in virtual machine using Vagrant.

First run a virtual machine:

vagrant up

Second look for some firmware release version on releases page and build an image for desired router model:

vagrant ssh -- compile-image -m RT-N66U -r 378.55

Then wait for cloning sources from GitHub into VM, building an image and copying it to release/ directory.

You can build firmware from any Git branch, for example 'master':

vagrant ssh -- compile-image -m RT-N66U -r master

At the end, stop VM:

vagrant halt

or remove it completely:

vagrant destroy

Contribute

Please contribute by reporting issues and sending pull requests.

Oh and feel free to fork or embed this into your repository.

License

This work is released into the public domain. See LICENSE. If public domain is not a recognized legal concept in your jurisdiction, treat as CC0; which should have the proper wording for many jurisdictions. The disclaimer from LICENSE (second to last paragraph) still applies.

If neither of these suite your needs, please ask by opening a ticket.

Contact

You can get in touch with me via my contact form (or one of the listed contact options there).

build-asuswrt-merlin's People

Contributors

assarbad avatar generalov avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.