Am Samstag 25 April 2009 04:54:59 schrieb Lim, Vincent:
Hi All:
I would like to add the family10h Rev C0-C2 support to coreboot and I just wanted to make sure I've got the procedure right.
Here are my simple chances:
Index: src/cpu/amd/model_10xxx/model_10xxx_init.c
--- src/cpu/amd/model_10xxx/model_10xxx_init.c (revision 4206) +++ src/cpu/amd/model_10xxx/model_10xxx_init.c (working copy) @@ -142,6 +142,10 @@ { X86_VENDOR_AMD, 0x100f2A }, { X86_VENDOR_AMD, 0x100f22 }, { X86_VENDOR_AMD, 0x100f23 },
{ X86_VENDOR_AMD, 0x100f40 }, /* RB-C0 */
{ X86_VENDOR_AMD, 0x100F42 }, /* RB-C2 */
{ X86_VENDOR_AMD, 0x100F52 }, /* BL-C2 */
};{ X86_VENDOR_AMD, 0x100F62 }, /* DA-C2 */ { 0, 0 },
Since I checkout the source as developer, I just have to do a 'svn ci .../model_10xxx_init.c', and someone will ack my commit ?
First, you'll have to provide a Signed-off-by (see http://www.coreboot.org/Development_Guidelines#Sign-off_Procedure, especially the "Developer's Certificate of Origin". Basically, it states that you're allowed to release this change.
Then, someone reviews it, and - if good enough - ACKs it. I know what this change does, and know that it's fine, so I can do it:
Acked-by: Patrick Georgi patrick.georgi@coresystems.de
Now you can "svn ci" that change, with a commit message stating 1) what that commit does 2) your Signed-off-by line 3) my (or someone elses) Acked-By line(s)
That way, we have a record that you state that you are allowed to release that change under the terms of coreboot (in this case: GPLv2), that you employer approves (if he has any say), and that someone (in this case: I) approved of that change.
Btw, does this mean that the microcode for those CPUs will be released, too?
Regards, Patrick Georgi