Forum Discussion
Altera_Forum
Honored Contributor
20 years agoHi Alex,
Good work. Please try out the new kernel. And let me know. You can use subversion to help tracking your works. Try "which svn", if you don't have it, install it with "yum install subversion". (for fedora core) 1. create the svn store, and check your original as rev1.cd ~
mkdir mysvn
svnadmin create mysvn/webs
tar xzvf webs218.tar.gz
svn import ws031202 file:///home/alex/mysvn/webs/ws031202 -m="initial"
rm -rf ws031202
svn co file:///home/alex/mysvn/webs/ws031202 2. make your change to Makefile, misc.c .... build and test.... 3. after you finished, or when you want to save your change to store, as rev2 cd ws031202
svn commit -m="update for nios2 uclinux"
svn diff -r1:2 >webs.diff Then you can send webs.diff to others 4. when other get your diff file, he can apply the patch and get the same update from yours. tar xzvf webs218.tar.gz
cd ws031202
patch -p0 <webs.diff The subversion is very helpful. You can find more usages from the subversion guide on their web.