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