From: Manish R. <reg...@gm...> - 2005-09-16 17:36:41
|
hi all, i woulld like to share some idea on submitting bug reports, patches, coding= =20 style etc. If you find any kind of bugs, feel free to discuss it on the list. You can= =20 either fix it yourself or ask others to have it fixed. If you want it add features, fix bugs etc. you are free to do so. And you= =20 will also get credit for your work. You can post a patch to the list. Feel= =20 free to write your copyright info (Must be GPL), Name , Mailing address etc= . In order to create a patch, you can use the diff utility. Create two source= =20 trees, the original one and the modified one. Also do not patch the whole= =20 system. For example if you like to patch microkernel, create another=20 microkernel tree with your modifications. call the original one=20 "microkernel" and the other one "mymicro"(or whatever you like). then type diff -urN microkernel/ mymicro/ > mycro.patch For eg. for fsiomngr, go to servers folder. create a modified tree of=20 fsiomngr and call it "myfsmngr". then type. diff -urN fsiomngr/ myfsmngr/ > myfsmngr.patch To apply the patch, go to the root of subsystem, say microkernel folder and= =20 type cat mycro.patch | patch -p1 For now there is no fixed coding style but GNU or linux like coding style i= s=20 good. Regards Manish Regmi |