README 967 B

1234567891011121314151617181920212223242526272829303132333435
  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 or clang
  7. - g++ or clang++
  8. - binutils
  9. - GNU make
  10. - GNU sed
  11. - tar
  12. - gzip
  13. - wget
  14. - libc headers
  15. - ncurses5 headers
  16. - zlib headers
  17. - perl
  18. There is a check for the required versions of these tools in advance, though.
  19. (to re-issue the checks, use "make prereq").
  20. Please use "make menuconfig" to choose your target architecture and
  21. embedded system and configure like you want to.
  22. Simply running 'make' will build the firmware for your embedded system. The
  23. buildsystem will download all sources, build the toolchain, the kernel and all
  24. applications.
  25. To switch to another target configuration, simply run "make switch". This will
  26. backup your existing configuration and will start with an empty one.
  27. Sunshine!
  28. Waldemar Brodkorb <wbx@openadk.org>