Re: [U-Boot] [PATCH v3 3/7] gpt:doc: GPT (GUID Partition Table) documentation

2012-10-05 Thread Lukasz Majewski
Hi Stephen, On 09/13/2012 02:10 AM, Lukasz Majewski wrote: Documentation of the GPT format. diff --git a/doc/README.gpt b/doc/README.gpt +Example usage: +== + +To restore GUID partition table one needs to: +1. at ./include/configs/{board}.h + - define

Re: [U-Boot] [PATCH v3 3/7] gpt:doc: GPT (GUID Partition Table) documentation

2012-10-05 Thread Lukasz Majewski
Hi Stephen, On 09/13/2012 02:10 AM, Lukasz Majewski wrote: Documentation of the GPT format. diff --git a/doc/README.gpt b/doc/README.gpt +Example usage: +== + +To restore GUID partition table one needs to: +1. at ./include/configs/{board}.h + -

Re: [U-Boot] [PATCH v3 3/7] gpt:doc: GPT (GUID Partition Table) documentation

2012-10-05 Thread Stephen Warren
On 10/05/2012 04:35 AM, Lukasz Majewski wrote: Hi Stephen, On 09/13/2012 02:10 AM, Lukasz Majewski wrote: ... [patch to implement GPT creation] Then, I wonder if you couldn't define the partitions environment variable as: partitions=\ name=u-boot,size=60M,uuid=${uuid_gpt_u_boot};\

Re: [U-Boot] [PATCH v3 3/7] gpt:doc: GPT (GUID Partition Table) documentation

2012-09-17 Thread Stephen Warren
On 09/13/2012 02:10 AM, Lukasz Majewski wrote: Documentation of the GPT format. diff --git a/doc/README.gpt b/doc/README.gpt +Example usage: +== + +To restore GUID partition table one needs to: +1. at ./include/configs/{board}.h + - define partitions= environment variable

[U-Boot] [PATCH v3 3/7] gpt:doc: GPT (GUID Partition Table) documentation

2012-09-13 Thread Lukasz Majewski
Documentation of the GPT format. Signed-off-by: Lukasz Majewski l.majew...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- Changes for v2: - Typos correction. - Adding guidlines about GPT restoration. - Adding information about GUID generator Changes for v3: - None ---