diff options
author | Rob Landley <rob@landley.net> | 2020-05-05 13:56:29 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2020-05-05 13:56:29 -0500 |
commit | 99dfb770358781d41c056aaf3569437002aa9e76 (patch) | |
tree | 84be9f57d9b7824a6cfe0b274d27a3554aa04aba /Makefile | |
parent | eae46378f7bfe5f39c717da8eac2a50230509342 (diff) | |
download | toybox-99dfb770358781d41c056aaf3569437002aa9e76.tar.gz |
Teach mkroot to cross compile additional packages, with dropbear as example.
scripts/mkroot.sh CROSS=sh4 LINUX=~/linux dropbear
No, I'm not going down the rathole of adding lots of packages, but this
shows _how_ to do it if you want to. The hooks are there. They don't have
to be in scripts/root, that's just a default search location, you can provide
a path on the command line or have them be in the $PATH.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -70,7 +70,7 @@ clean:: # If singlemake was in generated/ "make clean; make test_ls" wouldn't work. distclean: clean root_clean - @rm -f toybox* .config* .singlemake + @rm -f toybox* .config* .singlemake root_download @echo removed .config tests: |