i bought s3c2440a arm9 board. what are the required steps to make it working with linux?please details the steps from starting to ending.
kernel configuration
Hello, what are you interested in? Building your own kernel or just getting it into a usable state? I have prepared some files and descriptions which should be useful to get started: http://labs.kernelconcepts.de/Projects/Micro2440/ http://labs.kernelconcepts.de/Publications/Micro24401/ Greetings Florian
I want to configure my own kernel. So how to configure my own kernel using existing kernel to my s3c2440a board.
Hello venkat, You could download latest tree of the git: http://repo.or.cz/w/linux-2.6/mini2440.git then cd to the kernel source dir. export CROSS_COMPILE=(compile toolchain name with stripe) export CC=$CROSS_COMPILE"gcc" export ARCH=arm then: mkdir build make O=build mrproper make O=build mini2440_defconfig make O=build -j4 make O=build modules modules_install You should then have a kernel. But please look at these minimal bootstrap script: http://mini2440.googlecode.com/files/mini2440-bootstrap-v2.sh