README 986 B

12345678910111213141516171819202122232425262728293031323334353637
  1. OpenADK - A GNU/Linux construction kit
  2. ======================================
  3. This is a menu based buildsystem for your home made embedded Linux system.
  4. Before you can start you need to install some tools:
  5. - bash
  6. - gcc
  7. - binutils
  8. - GNU make
  9. - GNU awk
  10. - GNU sed
  11. - findutils (find, xargs)
  12. - tar
  13. - patch
  14. - gzip
  15. - wget
  16. - libc headers
  17. - ncurses5 headers
  18. - zlib headers
  19. - perl
  20. There is a check for the required versions of these tools in advance, though.
  21. (to re-issue the checks, use "make prereq").
  22. Please use "make menuconfig" to choose your target architecture and
  23. embedded system and configure like you want to.
  24. Simply running 'make' will build the firmware for your embedded system. The
  25. buildsystem will download all sources, build the toolchain, the kernel and all
  26. applications.
  27. To switch to another target configuration, simply run "make switch". This will
  28. backup your existing configuration and will start with an empty one.
  29. Sunshine!
  30. Waldemar Brodkorb <wbx@openadk.org>