README 816 B

123456789101112131415161718192021222324252627282930313233343536373839
  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 tar
  10. - GNU awk
  11. - GNU sed
  12. - patch
  13. - gzip
  14. - bzip2
  15. - cpio
  16. - wget
  17. - flex
  18. - bison
  19. - file
  20. - unzip
  21. - autoconf
  22. - automake
  23. - zlib-dev / libz-dev
  24. - libncurses5-dev
  25. - libc-dev
  26. There is a check for the required versions of these tools in advance, though
  27. (to re-issue the checks, use "make prereq").
  28. Please use "make menuconfig" to choose your embedded system and configure like you
  29. want to.
  30. Simply running 'make' will build the firmware for your embedded system. The
  31. buildsystem will download all sources, build the toolchain, the kernel and all
  32. applications.
  33. Sunshine!