Version 1, changed by guest. 07/21/2006. Show version history
Generally it takes quite a while (time) to configure, recompile, and create the zImage in order to upload a change to the NIOS II processor. This is especially true when developing a user application. The CompileHello example gives you a simple method for testing out user applications by simply copying the compiled binary executable to the romfs or the rootfs. While this method works OK, make linux will not update the zImage every single time and this leaves you in a bit of frustration. You have two choices, either you can put your user program into the user applications in the uClinux source tree or you can force the zImage file to be updated. Adding your user application to the source tree is the "proper" thing to do however it requires that you clean the whole project and make the whole uClinux project. This takes about 5 - 10 minutes. Very very slow.
When I began my quest to have the zImage update I would::
make} // Extracted from the BuildrootGuide
This works. The key being the makefile checking to see if the initramfs_list file has been changed/modified/or missing.Now it takes only 1 minute or less to compile my user application and test it on the NIOS II processor.
guest said, 09/15/2006:
Where is this page being linked from ?