README 967 B

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