All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1] btrfs-tools: upgrade to upstream revision.
@ 2013-08-02 19:41 Yevhen Kyriukha
  2013-08-02 20:56 ` Saul Wold
  0 siblings, 1 reply; 5+ messages in thread
From: Yevhen Kyriukha @ 2013-08-02 19:41 UTC (permalink / raw)
  To: openembedded-core; +Cc: Yevhen Kyriukha

---
 ...ix_race_condition_with_multithreaded_make.patch | 36 ----------------------
 .../btrfs-tools/btrfs-tools/fix_use_of_gcc.patch   | 31 -------------------
 .../btrfs-tools/btrfs-tools_git.bb                 | 13 +++-----
 3 files changed, 4 insertions(+), 76 deletions(-)
 delete mode 100644 meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_race_condition_with_multithreaded_make.patch
 delete mode 100644 meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_use_of_gcc.patch

diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_race_condition_with_multithreaded_make.patch b/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_race_condition_with_multithreaded_make.patch
deleted file mode 100644
index 40175b8..0000000
--- a/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_race_condition_with_multithreaded_make.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-Upstream-Status: Pending
-
-Fix makefile for multithreaded (make -j ) building.
-
-btrfsctl.c
-| i586-poky-linux-gcc  -m32   -march=i586 --sysroot=/intel/poky/builds/world/tmp/sysroots/qemux86 -Wp,-MMD,./.btrfsctl.o.d,-MT,btrfsctl.o -Wall -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2 -O2 -pipe -g -feliminate-unused-debug-types -c btrfsctl.c
-| btrfsctl.c:37:21: fatal error: version.h: No such file or directory
-| compilation terminated.
-| btrfslabel.c:40:21: fatal error: version.h: No such file or directory
-| compilation terminated.
-
-Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
-2012/01/02
-
-Index: git/Makefile
-===================================================================
---- git.orig/Makefile
-+++ git/Makefile
-@@ -26,14 +26,13 @@ else
- 	check = ls
- endif
- 
--.c.o:
-+%.o: %.c version.h
- 	$(check) $<
- 	$(CC) $(DEPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c $<
- 
-+all: $(progs) manpages
- 
--all: version $(progs) manpages
--
--version:
-+version.h: version.sh
- 	bash version.sh
- 
- btrfs: $(objects) btrfs.o btrfs_cmds.o scrub.o
diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_use_of_gcc.patch b/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_use_of_gcc.patch
deleted file mode 100644
index 7f6594a..0000000
--- a/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_use_of_gcc.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-Nitin A Kamble <nitin.a.kamble@intel.com> 2011/06/09
-Upstream-Status: Pending
-
-Avoid these kinds of errors while doing cross build:
-
-| ccache i586-poky-linux-gcc -march=i586 --sysroot=/disk0/pokybuild/build0/tmp/sysroots/qemux86 -Wp,-MMD,./.btrfsctl.o.d,-MT,btrfsctl.o -Wall -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2 -O2 -pipe -g -feliminate-unused-debug-types -c btrfsctl.c
-| gcc -O2 -pipe -g -feliminate-unused-debug-types -o btrfsctl btrfsctl.o ctree.o disk-io.o radix-tree.o extent-tree.o print-tree.o root-tree.o dir-item.o file-item.o inode-item.o inode-map.o crc32c.o rbtree.o extent-cache.o extent_io.o volumes.o utils.o btrfs-list.o -Wl,-O1  -Wl,--as-needed -luuid
-| /usr/bin/ld: i386 architecture of input file `btrfsctl.o' is incompatible with i386:x86-64 output
-| /usr/bin/ld: i386 architecture of input file `ctree.o' is incompatible with i386:x86-64 output
-
-Index: git/Makefile
-===================================================================
---- git.orig/Makefile
-+++ git/Makefile
-@@ -41,13 +41,13 @@ btrfs: $(objects) btrfs.o btrfs_cmds.o s
- 		$(objects) $(LDFLAGS) $(LIBS)
- 
- calc-size: $(objects) calc-size.o
--	gcc $(CFLAGS) -o calc-size calc-size.o $(objects) $(LDFLAGS) $(LIBS)
-+	$(CC) $(CFLAGS) -o calc-size calc-size.o $(objects) $(LDFLAGS) $(LIBS)
- 
- find-root: $(objects) find-root.o
--	gcc $(CFLAGS) -o find-root find-root.o $(objects) $(LDFLAGS) $(LIBS)
-+	$(CC) $(CFLAGS) -o find-root find-root.o $(objects) $(LDFLAGS) $(LIBS)
- 
- restore: $(objects) restore.o
--	gcc $(CFLAGS) -o restore restore.o $(objects) $(LDFLAGS) $(LIBS) $(RESTORE_LIBS)
-+	$(CC) $(CFLAGS) -o restore restore.o $(objects) $(LDFLAGS) $(LIBS) $(RESTORE_LIBS)
- 
- btrfsctl: $(objects) btrfsctl.o
- 	$(CC) $(CFLAGS) -o btrfsctl btrfsctl.o $(objects) $(LDFLAGS) $(LIBS)
diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb b/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb
index ef575ae..d63f1e0 100644
--- a/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb
+++ b/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb
@@ -12,21 +12,16 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=fcb02dc552a041dee27e4b85c7396067"
 SECTION = "base"
 DEPENDS = "util-linux attr"
 
-SRCREV = "fdb6c0402337d9607c7a39155088eaf033742752"
+SRCREV = "194aa4a1bd6447bb545286d0bcb0b0be8204d79f"
 SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-progs.git;protocol=git"
 
 S = "${WORKDIR}/git"
 
-PV = "0.19+git${SRCPV}"
+PV = "0.20+git${SRCPV}"
 
-PR = "r6"
+PR = "r7"
 
-SRC_URI += " file://fix_use_of_gcc.patch \
-	 file://weak-defaults.patch \
-	 file://fix_race_condition_with_multithreaded_make.patch "
-
-SRC_URI[md5sum] = "78b1700d318de8518abfaab71f99a885"
-SRC_URI[sha256sum] = "1285774e0cb72984fac158dd046c8d405324754febd30320cd31e459253e4b65"
+SRC_URI += "file://weak-defaults.patch"
 
 do_install () {
 	oe_runmake 'DESTDIR=${D}' install
-- 
1.8.1.2



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH v1] btrfs-tools: upgrade to upstream revision.
  2013-08-02 19:41 [PATCH v1] btrfs-tools: upgrade to upstream revision Yevhen Kyriukha
@ 2013-08-02 20:56 ` Saul Wold
  2013-08-03 15:30   ` Yevhen Kyriukha
  0 siblings, 1 reply; 5+ messages in thread
From: Saul Wold @ 2013-08-02 20:56 UTC (permalink / raw)
  To: Yevhen Kyriukha; +Cc: openembedded-core


Please add an explanation of why the patches are removed and a 
Signed-off-by: in the commit message.

Thanks
	Sau!


On 08/02/2013 12:41 PM, Yevhen Kyriukha wrote:
> ---
>   ...ix_race_condition_with_multithreaded_make.patch | 36 ----------------------
>   .../btrfs-tools/btrfs-tools/fix_use_of_gcc.patch   | 31 -------------------
>   .../btrfs-tools/btrfs-tools_git.bb                 | 13 +++-----
>   3 files changed, 4 insertions(+), 76 deletions(-)
>   delete mode 100644 meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_race_condition_with_multithreaded_make.patch
>   delete mode 100644 meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_use_of_gcc.patch
>
> diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_race_condition_with_multithreaded_make.patch b/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_race_condition_with_multithreaded_make.patch
> deleted file mode 100644
> index 40175b8..0000000
> --- a/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_race_condition_with_multithreaded_make.patch
> +++ /dev/null
> @@ -1,36 +0,0 @@
> -Upstream-Status: Pending
> -
> -Fix makefile for multithreaded (make -j ) building.
> -
> -btrfsctl.c
> -| i586-poky-linux-gcc  -m32   -march=i586 --sysroot=/intel/poky/builds/world/tmp/sysroots/qemux86 -Wp,-MMD,./.btrfsctl.o.d,-MT,btrfsctl.o -Wall -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2 -O2 -pipe -g -feliminate-unused-debug-types -c btrfsctl.c
> -| btrfsctl.c:37:21: fatal error: version.h: No such file or directory
> -| compilation terminated.
> -| btrfslabel.c:40:21: fatal error: version.h: No such file or directory
> -| compilation terminated.
> -
> -Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
> -2012/01/02
> -
> -Index: git/Makefile
> -===================================================================
> ---- git.orig/Makefile
> -+++ git/Makefile
> -@@ -26,14 +26,13 @@ else
> - 	check = ls
> - endif
> -
> --.c.o:
> -+%.o: %.c version.h
> - 	$(check) $<
> - 	$(CC) $(DEPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c $<
> -
> -+all: $(progs) manpages
> -
> --all: version $(progs) manpages
> --
> --version:
> -+version.h: version.sh
> - 	bash version.sh
> -
> - btrfs: $(objects) btrfs.o btrfs_cmds.o scrub.o
> diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_use_of_gcc.patch b/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_use_of_gcc.patch
> deleted file mode 100644
> index 7f6594a..0000000
> --- a/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_use_of_gcc.patch
> +++ /dev/null
> @@ -1,31 +0,0 @@
> -Nitin A Kamble <nitin.a.kamble@intel.com> 2011/06/09
> -Upstream-Status: Pending
> -
> -Avoid these kinds of errors while doing cross build:
> -
> -| ccache i586-poky-linux-gcc -march=i586 --sysroot=/disk0/pokybuild/build0/tmp/sysroots/qemux86 -Wp,-MMD,./.btrfsctl.o.d,-MT,btrfsctl.o -Wall -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2 -O2 -pipe -g -feliminate-unused-debug-types -c btrfsctl.c
> -| gcc -O2 -pipe -g -feliminate-unused-debug-types -o btrfsctl btrfsctl.o ctree.o disk-io.o radix-tree.o extent-tree.o print-tree.o root-tree.o dir-item.o file-item.o inode-item.o inode-map.o crc32c.o rbtree.o extent-cache.o extent_io.o volumes.o utils.o btrfs-list.o -Wl,-O1  -Wl,--as-needed -luuid
> -| /usr/bin/ld: i386 architecture of input file `btrfsctl.o' is incompatible with i386:x86-64 output
> -| /usr/bin/ld: i386 architecture of input file `ctree.o' is incompatible with i386:x86-64 output
> -
> -Index: git/Makefile
> -===================================================================
> ---- git.orig/Makefile
> -+++ git/Makefile
> -@@ -41,13 +41,13 @@ btrfs: $(objects) btrfs.o btrfs_cmds.o s
> - 		$(objects) $(LDFLAGS) $(LIBS)
> -
> - calc-size: $(objects) calc-size.o
> --	gcc $(CFLAGS) -o calc-size calc-size.o $(objects) $(LDFLAGS) $(LIBS)
> -+	$(CC) $(CFLAGS) -o calc-size calc-size.o $(objects) $(LDFLAGS) $(LIBS)
> -
> - find-root: $(objects) find-root.o
> --	gcc $(CFLAGS) -o find-root find-root.o $(objects) $(LDFLAGS) $(LIBS)
> -+	$(CC) $(CFLAGS) -o find-root find-root.o $(objects) $(LDFLAGS) $(LIBS)
> -
> - restore: $(objects) restore.o
> --	gcc $(CFLAGS) -o restore restore.o $(objects) $(LDFLAGS) $(LIBS) $(RESTORE_LIBS)
> -+	$(CC) $(CFLAGS) -o restore restore.o $(objects) $(LDFLAGS) $(LIBS) $(RESTORE_LIBS)
> -
> - btrfsctl: $(objects) btrfsctl.o
> - 	$(CC) $(CFLAGS) -o btrfsctl btrfsctl.o $(objects) $(LDFLAGS) $(LIBS)
> diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb b/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb
> index ef575ae..d63f1e0 100644
> --- a/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb
> +++ b/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb
> @@ -12,21 +12,16 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=fcb02dc552a041dee27e4b85c7396067"
>   SECTION = "base"
>   DEPENDS = "util-linux attr"
>
> -SRCREV = "fdb6c0402337d9607c7a39155088eaf033742752"
> +SRCREV = "194aa4a1bd6447bb545286d0bcb0b0be8204d79f"
>   SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-progs.git;protocol=git"
>
>   S = "${WORKDIR}/git"
>
> -PV = "0.19+git${SRCPV}"
> +PV = "0.20+git${SRCPV}"
>
> -PR = "r6"
> +PR = "r7"
>
We do not need PR Bumps any more, so it can just be removed as you are 
incrementing the PV.

> -SRC_URI += " file://fix_use_of_gcc.patch \
> -	 file://weak-defaults.patch \
> -	 file://fix_race_condition_with_multithreaded_make.patch "
> -
> -SRC_URI[md5sum] = "78b1700d318de8518abfaab71f99a885"
> -SRC_URI[sha256sum] = "1285774e0cb72984fac158dd046c8d405324754febd30320cd31e459253e4b65"
> +SRC_URI += "file://weak-defaults.patch"
>
>   do_install () {
>   	oe_runmake 'DESTDIR=${D}' install
>


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v1] btrfs-tools: upgrade to upstream revision.
  2013-08-02 20:56 ` Saul Wold
@ 2013-08-03 15:30   ` Yevhen Kyriukha
  2013-08-03 19:32     ` Saul Wold
  0 siblings, 1 reply; 5+ messages in thread
From: Yevhen Kyriukha @ 2013-08-03 15:30 UTC (permalink / raw)
  To: Saul Wold; +Cc: Patches and discussions about the oe-core layer

2013/8/2 Saul Wold <sgw@linux.intel.com>:
>
> Please add an explanation of why the patches are removed and a
> Signed-off-by: in the commit message.
>
> Thanks
>         Sau!
>
>
>
> On 08/02/2013 12:41 PM, Yevhen Kyriukha wrote:
>>
>> ---
>>   ...ix_race_condition_with_multithreaded_make.patch | 36
>> ----------------------
>>   .../btrfs-tools/btrfs-tools/fix_use_of_gcc.patch   | 31
>> -------------------
>>   .../btrfs-tools/btrfs-tools_git.bb                 | 13 +++-----
>>   3 files changed, 4 insertions(+), 76 deletions(-)
>>   delete mode 100644
>> meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_race_condition_with_multithreaded_make.patch
>>   delete mode 100644
>> meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_use_of_gcc.patch
>>
>> diff --git
>> a/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_race_condition_with_multithreaded_make.patch
>> b/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_race_condition_with_multithreaded_make.patch
>> deleted file mode 100644
>> index 40175b8..0000000
>> ---
>> a/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_race_condition_with_multithreaded_make.patch
>> +++ /dev/null
>> @@ -1,36 +0,0 @@
>> -Upstream-Status: Pending
>> -
>> -Fix makefile for multithreaded (make -j ) building.
>> -
>> -btrfsctl.c
>> -| i586-poky-linux-gcc  -m32   -march=i586
>> --sysroot=/intel/poky/builds/world/tmp/sysroots/qemux86
>> -Wp,-MMD,./.btrfsctl.o.d,-MT,btrfsctl.o -Wall -D_FILE_OFFSET_BITS=64
>> -D_FORTIFY_SOURCE=2 -O2 -pipe -g -feliminate-unused-debug-types -c
>> btrfsctl.c
>> -| btrfsctl.c:37:21: fatal error: version.h: No such file or directory
>> -| compilation terminated.
>> -| btrfslabel.c:40:21: fatal error: version.h: No such file or directory
>> -| compilation terminated.
>> -
>> -Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
>> -2012/01/02
>> -
>> -Index: git/Makefile
>> -===================================================================
>> ---- git.orig/Makefile
>> -+++ git/Makefile
>> -@@ -26,14 +26,13 @@ else
>> -       check = ls
>> - endif
>> -
>> --.c.o:
>> -+%.o: %.c version.h
>> -       $(check) $<
>> -       $(CC) $(DEPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c $<
>> -
>> -+all: $(progs) manpages
>> -
>> --all: version $(progs) manpages
>> --
>> --version:
>> -+version.h: version.sh
>> -       bash version.sh
>> -
>> - btrfs: $(objects) btrfs.o btrfs_cmds.o scrub.o
>> diff --git
>> a/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_use_of_gcc.patch
>> b/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_use_of_gcc.patch
>> deleted file mode 100644
>> index 7f6594a..0000000
>> --- a/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_use_of_gcc.patch
>> +++ /dev/null
>> @@ -1,31 +0,0 @@
>> -Nitin A Kamble <nitin.a.kamble@intel.com> 2011/06/09
>> -Upstream-Status: Pending
>> -
>> -Avoid these kinds of errors while doing cross build:
>> -
>> -| ccache i586-poky-linux-gcc -march=i586
>> --sysroot=/disk0/pokybuild/build0/tmp/sysroots/qemux86
>> -Wp,-MMD,./.btrfsctl.o.d,-MT,btrfsctl.o -Wall -D_FILE_OFFSET_BITS=64
>> -D_FORTIFY_SOURCE=2 -O2 -pipe -g -feliminate-unused-debug-types -c
>> btrfsctl.c
>> -| gcc -O2 -pipe -g -feliminate-unused-debug-types -o btrfsctl btrfsctl.o
>> ctree.o disk-io.o radix-tree.o extent-tree.o print-tree.o root-tree.o
>> dir-item.o file-item.o inode-item.o inode-map.o crc32c.o rbtree.o
>> extent-cache.o extent_io.o volumes.o utils.o btrfs-list.o -Wl,-O1
>> -Wl,--as-needed -luuid
>> -| /usr/bin/ld: i386 architecture of input file `btrfsctl.o' is
>> incompatible with i386:x86-64 output
>> -| /usr/bin/ld: i386 architecture of input file `ctree.o' is incompatible
>> with i386:x86-64 output
>> -
>> -Index: git/Makefile
>> -===================================================================
>> ---- git.orig/Makefile
>> -+++ git/Makefile
>> -@@ -41,13 +41,13 @@ btrfs: $(objects) btrfs.o btrfs_cmds.o s
>> -               $(objects) $(LDFLAGS) $(LIBS)
>> -
>> - calc-size: $(objects) calc-size.o
>> --      gcc $(CFLAGS) -o calc-size calc-size.o $(objects) $(LDFLAGS)
>> $(LIBS)
>> -+      $(CC) $(CFLAGS) -o calc-size calc-size.o $(objects) $(LDFLAGS)
>> $(LIBS)
>> -
>> - find-root: $(objects) find-root.o
>> --      gcc $(CFLAGS) -o find-root find-root.o $(objects) $(LDFLAGS)
>> $(LIBS)
>> -+      $(CC) $(CFLAGS) -o find-root find-root.o $(objects) $(LDFLAGS)
>> $(LIBS)
>> -
>> - restore: $(objects) restore.o
>> --      gcc $(CFLAGS) -o restore restore.o $(objects) $(LDFLAGS) $(LIBS)
>> $(RESTORE_LIBS)
>> -+      $(CC) $(CFLAGS) -o restore restore.o $(objects) $(LDFLAGS) $(LIBS)
>> $(RESTORE_LIBS)
>> -
>> - btrfsctl: $(objects) btrfsctl.o
>> -       $(CC) $(CFLAGS) -o btrfsctl btrfsctl.o $(objects) $(LDFLAGS)
>> $(LIBS)
>> diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb
>> b/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb
>> index ef575ae..d63f1e0 100644
>> --- a/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb
>> +++ b/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb
>> @@ -12,21 +12,16 @@ LIC_FILES_CHKSUM =
>> "file://COPYING;md5=fcb02dc552a041dee27e4b85c7396067"
>>   SECTION = "base"
>>   DEPENDS = "util-linux attr"
>>
>> -SRCREV = "fdb6c0402337d9607c7a39155088eaf033742752"
>> +SRCREV = "194aa4a1bd6447bb545286d0bcb0b0be8204d79f"
>>   SRC_URI =
>> "git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-progs.git;protocol=git"
>>
>>   S = "${WORKDIR}/git"
>>
>> -PV = "0.19+git${SRCPV}"
>> +PV = "0.20+git${SRCPV}"
>>
>> -PR = "r6"
>> +PR = "r7"
>>
> We do not need PR Bumps any more, so it can just be removed as you are
> incrementing the PV.
>

So what do I need to do with existing PR? Just don't change it or
remove it from recipe?


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v1] btrfs-tools: upgrade to upstream revision.
  2013-08-03 15:30   ` Yevhen Kyriukha
@ 2013-08-03 19:32     ` Saul Wold
  2013-08-04 15:53       ` Yevhen Kyriukha
  0 siblings, 1 reply; 5+ messages in thread
From: Saul Wold @ 2013-08-03 19:32 UTC (permalink / raw)
  To: Yevhen Kyriukha; +Cc: Patches and discussions about the oe-core layer

On 08/03/2013 08:30 AM, Yevhen Kyriukha wrote:
> 2013/8/2 Saul Wold <sgw@linux.intel.com>:
>>
>> Please add an explanation of why the patches are removed and a
>> Signed-off-by: in the commit message.
>>
>> Thanks
>>          Sau!
>>
>>
>>
>> On 08/02/2013 12:41 PM, Yevhen Kyriukha wrote:
>>>
>>> ---
>>>    ...ix_race_condition_with_multithreaded_make.patch | 36
>>> ----------------------
>>>    .../btrfs-tools/btrfs-tools/fix_use_of_gcc.patch   | 31
>>> -------------------
>>>    .../btrfs-tools/btrfs-tools_git.bb                 | 13 +++-----
>>>    3 files changed, 4 insertions(+), 76 deletions(-)
>>>    delete mode 100644
>>> meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_race_condition_with_multithreaded_make.patch
>>>    delete mode 100644
>>> meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_use_of_gcc.patch
>>>
>>> diff --git
>>> a/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_race_condition_with_multithreaded_make.patch
>>> b/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_race_condition_with_multithreaded_make.patch
>>> deleted file mode 100644
>>> index 40175b8..0000000
>>> ---
>>> a/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_race_condition_with_multithreaded_make.patch
>>> +++ /dev/null
>>> @@ -1,36 +0,0 @@
>>> -Upstream-Status: Pending
>>> -
>>> -Fix makefile for multithreaded (make -j ) building.
>>> -
>>> -btrfsctl.c
>>> -| i586-poky-linux-gcc  -m32   -march=i586
>>> --sysroot=/intel/poky/builds/world/tmp/sysroots/qemux86
>>> -Wp,-MMD,./.btrfsctl.o.d,-MT,btrfsctl.o -Wall -D_FILE_OFFSET_BITS=64
>>> -D_FORTIFY_SOURCE=2 -O2 -pipe -g -feliminate-unused-debug-types -c
>>> btrfsctl.c
>>> -| btrfsctl.c:37:21: fatal error: version.h: No such file or directory
>>> -| compilation terminated.
>>> -| btrfslabel.c:40:21: fatal error: version.h: No such file or directory
>>> -| compilation terminated.
>>> -
>>> -Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
>>> -2012/01/02
>>> -
>>> -Index: git/Makefile
>>> -===================================================================
>>> ---- git.orig/Makefile
>>> -+++ git/Makefile
>>> -@@ -26,14 +26,13 @@ else
>>> -       check = ls
>>> - endif
>>> -
>>> --.c.o:
>>> -+%.o: %.c version.h
>>> -       $(check) $<
>>> -       $(CC) $(DEPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c $<
>>> -
>>> -+all: $(progs) manpages
>>> -
>>> --all: version $(progs) manpages
>>> --
>>> --version:
>>> -+version.h: version.sh
>>> -       bash version.sh
>>> -
>>> - btrfs: $(objects) btrfs.o btrfs_cmds.o scrub.o
>>> diff --git
>>> a/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_use_of_gcc.patch
>>> b/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_use_of_gcc.patch
>>> deleted file mode 100644
>>> index 7f6594a..0000000
>>> --- a/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_use_of_gcc.patch
>>> +++ /dev/null
>>> @@ -1,31 +0,0 @@
>>> -Nitin A Kamble <nitin.a.kamble@intel.com> 2011/06/09
>>> -Upstream-Status: Pending
>>> -
>>> -Avoid these kinds of errors while doing cross build:
>>> -
>>> -| ccache i586-poky-linux-gcc -march=i586
>>> --sysroot=/disk0/pokybuild/build0/tmp/sysroots/qemux86
>>> -Wp,-MMD,./.btrfsctl.o.d,-MT,btrfsctl.o -Wall -D_FILE_OFFSET_BITS=64
>>> -D_FORTIFY_SOURCE=2 -O2 -pipe -g -feliminate-unused-debug-types -c
>>> btrfsctl.c
>>> -| gcc -O2 -pipe -g -feliminate-unused-debug-types -o btrfsctl btrfsctl.o
>>> ctree.o disk-io.o radix-tree.o extent-tree.o print-tree.o root-tree.o
>>> dir-item.o file-item.o inode-item.o inode-map.o crc32c.o rbtree.o
>>> extent-cache.o extent_io.o volumes.o utils.o btrfs-list.o -Wl,-O1
>>> -Wl,--as-needed -luuid
>>> -| /usr/bin/ld: i386 architecture of input file `btrfsctl.o' is
>>> incompatible with i386:x86-64 output
>>> -| /usr/bin/ld: i386 architecture of input file `ctree.o' is incompatible
>>> with i386:x86-64 output
>>> -
>>> -Index: git/Makefile
>>> -===================================================================
>>> ---- git.orig/Makefile
>>> -+++ git/Makefile
>>> -@@ -41,13 +41,13 @@ btrfs: $(objects) btrfs.o btrfs_cmds.o s
>>> -               $(objects) $(LDFLAGS) $(LIBS)
>>> -
>>> - calc-size: $(objects) calc-size.o
>>> --      gcc $(CFLAGS) -o calc-size calc-size.o $(objects) $(LDFLAGS)
>>> $(LIBS)
>>> -+      $(CC) $(CFLAGS) -o calc-size calc-size.o $(objects) $(LDFLAGS)
>>> $(LIBS)
>>> -
>>> - find-root: $(objects) find-root.o
>>> --      gcc $(CFLAGS) -o find-root find-root.o $(objects) $(LDFLAGS)
>>> $(LIBS)
>>> -+      $(CC) $(CFLAGS) -o find-root find-root.o $(objects) $(LDFLAGS)
>>> $(LIBS)
>>> -
>>> - restore: $(objects) restore.o
>>> --      gcc $(CFLAGS) -o restore restore.o $(objects) $(LDFLAGS) $(LIBS)
>>> $(RESTORE_LIBS)
>>> -+      $(CC) $(CFLAGS) -o restore restore.o $(objects) $(LDFLAGS) $(LIBS)
>>> $(RESTORE_LIBS)
>>> -
>>> - btrfsctl: $(objects) btrfsctl.o
>>> -       $(CC) $(CFLAGS) -o btrfsctl btrfsctl.o $(objects) $(LDFLAGS)
>>> $(LIBS)
>>> diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb
>>> b/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb
>>> index ef575ae..d63f1e0 100644
>>> --- a/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb
>>> +++ b/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb
>>> @@ -12,21 +12,16 @@ LIC_FILES_CHKSUM =
>>> "file://COPYING;md5=fcb02dc552a041dee27e4b85c7396067"
>>>    SECTION = "base"
>>>    DEPENDS = "util-linux attr"
>>>
>>> -SRCREV = "fdb6c0402337d9607c7a39155088eaf033742752"
>>> +SRCREV = "194aa4a1bd6447bb545286d0bcb0b0be8204d79f"
>>>    SRC_URI =
>>> "git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-progs.git;protocol=git"
>>>
>>>    S = "${WORKDIR}/git"
>>>
>>> -PV = "0.19+git${SRCPV}"
>>> +PV = "0.20+git${SRCPV}"
>>>
>>> -PR = "r6"
>>> +PR = "r7"
>>>
>> We do not need PR Bumps any more, so it can just be removed as you are
>> incrementing the PV.
>>
>
> So what do I need to do with existing PR? Just don't change it or
> remove it from recipe?
>
>
Sorry for being unclear since you have incremented the PV, you can 
completely remove the PR entry.

Sau!



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v1] btrfs-tools: upgrade to upstream revision.
  2013-08-03 19:32     ` Saul Wold
@ 2013-08-04 15:53       ` Yevhen Kyriukha
  0 siblings, 0 replies; 5+ messages in thread
From: Yevhen Kyriukha @ 2013-08-04 15:53 UTC (permalink / raw)
  To: Saul Wold; +Cc: Patches and discussions about the oe-core layer

OK, I'll fix it and send v3 of this patch.
Best regards,
Yevhen


2013/8/3 Saul Wold <sgw@linux.intel.com>:
> On 08/03/2013 08:30 AM, Yevhen Kyriukha wrote:
>>
>> 2013/8/2 Saul Wold <sgw@linux.intel.com>:
>>>
>>>
>>> Please add an explanation of why the patches are removed and a
>>> Signed-off-by: in the commit message.
>>>
>>> Thanks
>>>          Sau!
>>>
>>>
>>>
>>> On 08/02/2013 12:41 PM, Yevhen Kyriukha wrote:
>>>>
>>>>
>>>> ---
>>>>    ...ix_race_condition_with_multithreaded_make.patch | 36
>>>> ----------------------
>>>>    .../btrfs-tools/btrfs-tools/fix_use_of_gcc.patch   | 31
>>>> -------------------
>>>>    .../btrfs-tools/btrfs-tools_git.bb                 | 13 +++-----
>>>>    3 files changed, 4 insertions(+), 76 deletions(-)
>>>>    delete mode 100644
>>>>
>>>> meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_race_condition_with_multithreaded_make.patch
>>>>    delete mode 100644
>>>> meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_use_of_gcc.patch
>>>>
>>>> diff --git
>>>>
>>>> a/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_race_condition_with_multithreaded_make.patch
>>>>
>>>> b/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_race_condition_with_multithreaded_make.patch
>>>> deleted file mode 100644
>>>> index 40175b8..0000000
>>>> ---
>>>>
>>>> a/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_race_condition_with_multithreaded_make.patch
>>>> +++ /dev/null
>>>> @@ -1,36 +0,0 @@
>>>> -Upstream-Status: Pending
>>>> -
>>>> -Fix makefile for multithreaded (make -j ) building.
>>>> -
>>>> -btrfsctl.c
>>>> -| i586-poky-linux-gcc  -m32   -march=i586
>>>> --sysroot=/intel/poky/builds/world/tmp/sysroots/qemux86
>>>> -Wp,-MMD,./.btrfsctl.o.d,-MT,btrfsctl.o -Wall -D_FILE_OFFSET_BITS=64
>>>> -D_FORTIFY_SOURCE=2 -O2 -pipe -g -feliminate-unused-debug-types -c
>>>> btrfsctl.c
>>>> -| btrfsctl.c:37:21: fatal error: version.h: No such file or directory
>>>> -| compilation terminated.
>>>> -| btrfslabel.c:40:21: fatal error: version.h: No such file or directory
>>>> -| compilation terminated.
>>>> -
>>>> -Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
>>>> -2012/01/02
>>>> -
>>>> -Index: git/Makefile
>>>> -===================================================================
>>>> ---- git.orig/Makefile
>>>> -+++ git/Makefile
>>>> -@@ -26,14 +26,13 @@ else
>>>> -       check = ls
>>>> - endif
>>>> -
>>>> --.c.o:
>>>> -+%.o: %.c version.h
>>>> -       $(check) $<
>>>> -       $(CC) $(DEPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c $<
>>>> -
>>>> -+all: $(progs) manpages
>>>> -
>>>> --all: version $(progs) manpages
>>>> --
>>>> --version:
>>>> -+version.h: version.sh
>>>> -       bash version.sh
>>>> -
>>>> - btrfs: $(objects) btrfs.o btrfs_cmds.o scrub.o
>>>> diff --git
>>>> a/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_use_of_gcc.patch
>>>> b/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_use_of_gcc.patch
>>>> deleted file mode 100644
>>>> index 7f6594a..0000000
>>>> --- a/meta/recipes-devtools/btrfs-tools/btrfs-tools/fix_use_of_gcc.patch
>>>> +++ /dev/null
>>>> @@ -1,31 +0,0 @@
>>>> -Nitin A Kamble <nitin.a.kamble@intel.com> 2011/06/09
>>>> -Upstream-Status: Pending
>>>> -
>>>> -Avoid these kinds of errors while doing cross build:
>>>> -
>>>> -| ccache i586-poky-linux-gcc -march=i586
>>>> --sysroot=/disk0/pokybuild/build0/tmp/sysroots/qemux86
>>>> -Wp,-MMD,./.btrfsctl.o.d,-MT,btrfsctl.o -Wall -D_FILE_OFFSET_BITS=64
>>>> -D_FORTIFY_SOURCE=2 -O2 -pipe -g -feliminate-unused-debug-types -c
>>>> btrfsctl.c
>>>> -| gcc -O2 -pipe -g -feliminate-unused-debug-types -o btrfsctl
>>>> btrfsctl.o
>>>> ctree.o disk-io.o radix-tree.o extent-tree.o print-tree.o root-tree.o
>>>> dir-item.o file-item.o inode-item.o inode-map.o crc32c.o rbtree.o
>>>> extent-cache.o extent_io.o volumes.o utils.o btrfs-list.o -Wl,-O1
>>>> -Wl,--as-needed -luuid
>>>> -| /usr/bin/ld: i386 architecture of input file `btrfsctl.o' is
>>>> incompatible with i386:x86-64 output
>>>> -| /usr/bin/ld: i386 architecture of input file `ctree.o' is
>>>> incompatible
>>>> with i386:x86-64 output
>>>> -
>>>> -Index: git/Makefile
>>>> -===================================================================
>>>> ---- git.orig/Makefile
>>>> -+++ git/Makefile
>>>> -@@ -41,13 +41,13 @@ btrfs: $(objects) btrfs.o btrfs_cmds.o s
>>>> -               $(objects) $(LDFLAGS) $(LIBS)
>>>> -
>>>> - calc-size: $(objects) calc-size.o
>>>> --      gcc $(CFLAGS) -o calc-size calc-size.o $(objects) $(LDFLAGS)
>>>> $(LIBS)
>>>> -+      $(CC) $(CFLAGS) -o calc-size calc-size.o $(objects) $(LDFLAGS)
>>>> $(LIBS)
>>>> -
>>>> - find-root: $(objects) find-root.o
>>>> --      gcc $(CFLAGS) -o find-root find-root.o $(objects) $(LDFLAGS)
>>>> $(LIBS)
>>>> -+      $(CC) $(CFLAGS) -o find-root find-root.o $(objects) $(LDFLAGS)
>>>> $(LIBS)
>>>> -
>>>> - restore: $(objects) restore.o
>>>> --      gcc $(CFLAGS) -o restore restore.o $(objects) $(LDFLAGS) $(LIBS)
>>>> $(RESTORE_LIBS)
>>>> -+      $(CC) $(CFLAGS) -o restore restore.o $(objects) $(LDFLAGS)
>>>> $(LIBS)
>>>> $(RESTORE_LIBS)
>>>> -
>>>> - btrfsctl: $(objects) btrfsctl.o
>>>> -       $(CC) $(CFLAGS) -o btrfsctl btrfsctl.o $(objects) $(LDFLAGS)
>>>> $(LIBS)
>>>> diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb
>>>> b/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb
>>>> index ef575ae..d63f1e0 100644
>>>> --- a/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb
>>>> +++ b/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb
>>>> @@ -12,21 +12,16 @@ LIC_FILES_CHKSUM =
>>>> "file://COPYING;md5=fcb02dc552a041dee27e4b85c7396067"
>>>>    SECTION = "base"
>>>>    DEPENDS = "util-linux attr"
>>>>
>>>> -SRCREV = "fdb6c0402337d9607c7a39155088eaf033742752"
>>>> +SRCREV = "194aa4a1bd6447bb545286d0bcb0b0be8204d79f"
>>>>    SRC_URI =
>>>>
>>>> "git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-progs.git;protocol=git"
>>>>
>>>>    S = "${WORKDIR}/git"
>>>>
>>>> -PV = "0.19+git${SRCPV}"
>>>> +PV = "0.20+git${SRCPV}"
>>>>
>>>> -PR = "r6"
>>>> +PR = "r7"
>>>>
>>> We do not need PR Bumps any more, so it can just be removed as you are
>>> incrementing the PV.
>>>
>>
>> So what do I need to do with existing PR? Just don't change it or
>> remove it from recipe?
>>
>>
> Sorry for being unclear since you have incremented the PV, you can
> completely remove the PR entry.
>
> Sau!
>


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-08-04 15:53 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-08-02 19:41 [PATCH v1] btrfs-tools: upgrade to upstream revision Yevhen Kyriukha
2013-08-02 20:56 ` Saul Wold
2013-08-03 15:30   ` Yevhen Kyriukha
2013-08-03 19:32     ` Saul Wold
2013-08-04 15:53       ` Yevhen Kyriukha

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.