Skip to content

qemu: support graphic hw acceleration#8

Open
sparkleholic wants to merge 1 commit intowebosose:masterfrom
sparkleholic:HW-ACCL
Open

qemu: support graphic hw acceleration#8
sparkleholic wants to merge 1 commit intowebosose:masterfrom
sparkleholic:HW-ACCL

Conversation

@sparkleholic
Copy link
Copy Markdown
Contributor

:Release Notes:
support "runqemu qemux86" to use hw acceleration options

:Detailed Notes:
Currently qemux86 generated from oe build fails launching with hw
acceleration options (e.g. -vga virtio -display sdl,gl=on)
on X11 WM linux host.

  • To support acceleration options, the following should be required.
    qemu should be compiled with "--enable-opengl".
  • libepoxy should be compiled with "-enable-x11" as well as
    "-enable-egl" (These options are not mutual exclusive.).

:Testing Performed:
Tested locally on Ubuntu 18.04.
$ runqemu qemux86 kvm slirp

:QA Notes:
None

:Issues Addressed:
None

@CLAassistant
Copy link
Copy Markdown

CLAassistant commented Sep 4, 2018

CLA assistant check
All committers have signed the CLA.

@sparkleholic
Copy link
Copy Markdown
Contributor Author

  1. First Issue

Error Message: qemu does not support opengl

Solution: qemu should be compiled with "--enable-opengl"
(oe-core/meta/recipes-devtools/qemu/qemu.inc)

PACKAGECONFIG[glx] = "--enable-opengl,--disable-opengl,mesa" 
  1. Second Issue

Segment Fault when running qemu on the host pc

( meta-webosose/meta-webos-backports/meta-webos-backports-2.4/recipes-graphics/libepoxy/libepoxy_1.4.3.bb )
Solution: libepoxy should be compiled with "--enable-x11" as well as "--enable-egl" (These options are not mutual exclusive.)

  1. Required Jobs (enabling virgl hw acceleration)
    : QB_OPT_APPEND should have the following options
    ( oe-core/meta/conf/machine/include/qemuboot-x86.inc )
-vga virtio -display sdl,gl=on
  1. Required Jobs (/dev/kvm permission)
    https://wiki.yoctoproject.org/wiki/How_to_enable_KVM_for_Poky_qemu
sudo groupadd --system kvm
sudo gpasswd -a $USER kvm
sudo chown root:kvm /dev/kvm
sudo chmod 0660 /dev/kvm
  1. Required Jobs (To use runqemu params)
  • slirp - enable user networking
  • kvm - enable KVM when running x86/x86_64
runqemu qemux86 kvm slirp

:Release Notes:
support "runqemu qemux86" to use hw acceleration options

:Detailed Notes:
Currently qemux86 generated from oe build fails launching with hw
acceleration options (e.g. -vga virtio -display sdl,gl=on)
on X11 WM linux host.
- To support acceleration options, the following should be required.
qemu should be compiled with "--enable-opengl".
- libepoxy should be compiled with "-enable-x11" as well as
"-enable-egl" (These options are not mutual exclusive.).

:Testing Performed:
Tested locally on Ubuntu 18.04.
$ runqemu qemux86 kvm slirp

:QA Notes:
None

:Issues Addressed:
None

Signed-off-by: Junil Kim <logyourself@gmail.com>
@heegoo-han
Copy link
Copy Markdown
Contributor

In my 16.04 Ubuntu, build fails with followings, mesa-native_17.1.7

../../../../src/gallium/auxiliary/.libs/libgallium.a(lp_bld_misc.o): In function llvm::RTDyldMemoryManager::getSymbolAddress(std::string const&)': | lp_bld_misc.cpp:(.text._ZN4llvm19RTDyldMemoryManager16getSymbolAddressERKSs[_ZN4llvm19RTDyldMemoryManager16getSymbolAddressERKSs]+0x4): undefined reference to llvm::RTDyldMemoryManager::getSymbolAddressInProcess(std::string const&)'
| ../../../../src/gallium/auxiliary/.libs/libgallium.a(lp_bld_misc.o): In function llvm::RTDyldMemoryManager::findSymbol(std::string const&)': | lp_bld_misc.cpp:(.text._ZN4llvm19RTDyldMemoryManager10findSymbolERKSs[_ZN4llvm19RTDyldMemoryManager10findSymbolERKSs]+0x1b): undefined reference to llvm::RTDyldMemoryManager::getSymbolAddressInProcess(std::string const&)'
| collect2: error: ld returned 1 exit status

@heegoo-han
Copy link
Copy Markdown
Contributor

I checked the above with original meta-webosose and then same error occurs.

@sparkleholic
Copy link
Copy Markdown
Contributor Author

@heegoo-han Thanks for notifying this.
I found a similar issue for this. (https://lists.freedesktop.org/archives/mesa-dev/2015-April/082023.html)

@heegoo-han
Copy link
Copy Markdown
Contributor

I resolved the mesa-native build error in both meta-webosose master branch and this @sparkleholic 's pull requested changes like below:

  • take aside /usr/bin/llvm-* to a temporary directory . It means remove host pc side llvm tools.
  • make cleanall-mesa-native
  • bitbake mesa-native

@sparkleholic
Copy link
Copy Markdown
Contributor Author

@heegoo-han
In conclusion, under certain circumstances a build error occurred regardless of this code patch.
Depending on the llvm installed on the host pc, there seems to be an error occuring.
This part will be communicated to the SCM separately from the PR.

@heegoo-han
Copy link
Copy Markdown
Contributor

@sparkleholic , Thanks for your efforts.

Copy link
Copy Markdown
Contributor

@heegoo-han heegoo-han left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

verified youtube app is working fine in my local build , ubuntu 16.04 64bit.

@chbae
Copy link
Copy Markdown
Contributor

chbae commented Sep 17, 2018

Thanks. we will review it soon and release it.

jb-seo pushed a commit to jb-seo/meta-webosose that referenced this pull request Feb 26, 2019
:Release Notes:
New Yocto is more strict about applying patches which don't apply
cleanly.

:Detailed Notes:
WARNING: connman-1.35-r0 do_patch:
Some of the context lines in patches were ignored. This can lead to incorrectly applied patches.
The context lines in the patches can be updated with devtool:

    devtool modify <recipe>
    devtool finish --force-patch-refresh <recipe> <layer_path>

Then the updated patches and the source tree (in devtool's workspace)
should be reviewed to make sure the patches apply in the correct place
and don't introduce duplicate lines (which can, and does happen
when some of the context is ignored). Further information:
http://lists.openembedded.org/pipermail/openembedded-core/2018-March/148675.html
https://bugzilla.yoctoproject.org/show_bug.cgi?id=10450
Details:
Applying patch 0004-Support-WPS-PBC-and-PIN-mode.patch
patching file gsupplicant/gsupplicant.h
Hunk webosose#1 succeeded at 268 (offset 4 lines).
Hunk webosose#2 succeeded at 361 (offset 5 lines).
patching file gsupplicant/supplicant.c
Hunk webosose#1 succeeded at 699 (offset 13 lines).
Hunk webosose#2 succeeded at 2918 (offset 127 lines).
Hunk webosose#3 succeeded at 5041 (offset 159 lines).
patching file include/device.h
patching file include/technology.h
patching file plugins/wifi.c
Hunk webosose#3 succeeded at 156 (offset 4 lines).
Hunk webosose#4 succeeded at 207 (offset 4 lines).
Hunk webosose#5 succeeded at 798 (offset 6 lines).
Hunk webosose#6 succeeded at 1960 (offset 6 lines).
Hunk webosose#7 succeeded at 2181 (offset 6 lines).
Hunk webosose#8 succeeded at 2207 (offset 6 lines).
Hunk webosose#9 succeeded at 2237 (offset 6 lines).
Hunk webosose#10 succeeded at 2358 (offset 14 lines).
Hunk webosose#11 succeeded at 2404 with fuzz 2.
Hunk webosose#19 succeeded at 2805 (offset 13 lines).
Hunk webosose#20 succeeded at 3422 (offset 55 lines).
patching file src/connman.h
Hunk webosose#1 succeeded at 560 (offset 7 lines).
patching file src/device.c
Hunk webosose#1 succeeded at 1108 (offset -4 lines).
patching file src/service.c
patching file src/technology.c
Hunk webosose#1 succeeded at 1092 (offset 23 lines).
Hunk webosose#2 succeeded at 1144 (offset 23 lines).

Now at patch 0004-Support-WPS-PBC-and-PIN-mode.patch

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[PLAT-60242] [OSE] Fix build issues
[PLAT-52479] Upgrade to Yocto 2.5 Sumo
[PLAT-52480] CCC: Upgrade to Yocto 2.5 Sumo
[PLAT-56432] CCC: Refresh patches which don't apply cleanly
@flowergom
Copy link
Copy Markdown
Contributor

@sparkleholic Is this commit tested in the latest build? If it is tested in latest build, we will review and be decided to release. Sorry for late reply.

shr-project added a commit to shr-project/meta-webosose that referenced this pull request Oct 21, 2019
:Release Notes:

:Detailed Notes:
WARNING: connman-1.36-r0 do_patch: Fuzz detected:

Applying patch 0004-Support-WPS-PBC-and-PIN-mode.patch
patching file gsupplicant/gsupplicant.h
patching file gsupplicant/supplicant.c
Hunk #2 succeeded at 2956 (offset 38 lines).
Hunk webosose#3 succeeded at 5079 (offset 38 lines).
patching file include/device.h
Hunk #1 succeeded at 129 with fuzz 1 (offset 3 lines).
patching file include/technology.h
patching file plugins/wifi.c
Hunk #1 succeeded at 61 with fuzz 1.
Hunk #2 succeeded at 78 (offset 1 line).
Hunk webosose#3 succeeded at 163 (offset 7 lines).
Hunk webosose#4 succeeded at 214 (offset 7 lines).
Hunk webosose#5 succeeded at 805 (offset 7 lines).
Hunk webosose#6 succeeded at 2055 (offset 95 lines).
Hunk webosose#7 succeeded at 2277 with fuzz 2 (offset 96 lines).
Hunk webosose#8 succeeded at 2303 (offset 96 lines).
Hunk webosose#9 succeeded at 2333 (offset 96 lines).
Hunk webosose#10 succeeded at 2454 (offset 96 lines).
Hunk webosose#11 succeeded at 2499 (offset 95 lines).
Hunk webosose#12 succeeded at 2637 (offset 95 lines).
Hunk webosose#13 succeeded at 2707 (offset 95 lines).
Hunk webosose#14 succeeded at 2773 (offset 95 lines).
Hunk webosose#15 succeeded at 2810 (offset 98 lines).
Hunk webosose#16 succeeded at 2838 (offset 98 lines).
Hunk webosose#17 succeeded at 2848 (offset 98 lines).
Hunk webosose#18 succeeded at 2857 (offset 98 lines).
Hunk webosose#19 succeeded at 2906 with fuzz 1 (offset 101 lines).
Hunk webosose#20 succeeded at 3561 (offset 139 lines).
patching file src/connman.h
Hunk #1 succeeded at 562 (offset 2 lines).
patching file src/device.c
Hunk #1 succeeded at 1154 with fuzz 1 (offset 46 lines).
patching file src/service.c
patching file src/technology.c
Hunk #1 succeeded at 1090 (offset -2 lines).
Hunk #2 succeeded at 1142 (offset -2 lines).

The context lines in the patches can be updated with devtool:

    devtool modify connman
    devtool finish --force-patch-refresh connman <layer_path>

Don't forget to review changes done by devtool!

WARNING: connman-1.36-r0 do_patch: QA Issue: Patch log indicates that patches do not apply cleanly. [patch-fuzz]

Applying patch 0010-Support-channel-frequency-of-scanned-AP.patch
patching file gsupplicant/gsupplicant.h
patching file gsupplicant/supplicant.c
Hunk #2 succeeded at 1121 (offset 2 lines).
Hunk webosose#3 succeeded at 1302 (offset 2 lines).
Hunk webosose#4 succeeded at 2331 (offset 14 lines).
Hunk webosose#5 succeeded at 2488 (offset 14 lines).
Hunk webosose#6 succeeded at 6022 (offset 38 lines).
patching file include/device.h
Hunk #2 succeeded at 92 (offset 1 line).
Hunk webosose#3 succeeded at 118 (offset 1 line).
Hunk webosose#4 succeeded at 145 (offset 3 lines).
patching file include/network.h
patching file plugins/wifi.c
Hunk #1 succeeded at 170 (offset 6 lines).
Hunk #2 succeeded at 187 (offset 6 lines).
Hunk webosose#3 succeeded at 2293 (offset 94 lines).
Hunk webosose#4 succeeded at 2351 with fuzz 1 (offset 95 lines).
Hunk webosose#5 succeeded at 3182 (offset 100 lines).
Hunk webosose#6 succeeded at 3202 (offset 100 lines).
Hunk webosose#7 succeeded at 3269 (offset 102 lines).
Hunk webosose#8 succeeded at 3282 (offset 75 lines).
Hunk webosose#9 FAILED at 3224.
1 out of 9 hunks FAILED -- rejects in file plugins/wifi.c
patching file src/device.c
Hunk #2 succeeded at 563 (offset 22 lines).
Hunk webosose#3 succeeded at 829 (offset 38 lines).
Hunk webosose#4 succeeded at 874 (offset 38 lines).
Hunk webosose#5 succeeded at 1319 (offset 46 lines).
patching file src/network.c
Hunk #1 succeeded at 51 (offset 7 lines).
Hunk #2 succeeded at 66 (offset 7 lines).
Hunk webosose#3 succeeded at 107 with fuzz 1 (offset 8 lines).
Hunk webosose#4 succeeded at 922 (offset 9 lines).
Hunk webosose#5 succeeded at 966 (offset 9 lines).
Hunk webosose#6 succeeded at 1728 (offset 9 lines).
patching file src/service.c
Hunk #1 succeeded at 145 (offset 4 lines).
Hunk #2 succeeded at 1574 (offset 15 lines).
Hunk webosose#3 succeeded at 2424 (offset 76 lines).
Hunk webosose#4 succeeded at 2540 (offset 76 lines).
patching file src/technology.c
Hunk webosose#4 succeeded at 1257 (offset -2 lines).
Hunk webosose#5 succeeded at 1354 (offset -2 lines).
Patch 0010-Support-channel-frequency-of-scanned-AP.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[PLAT-77937] Create GPVB with Yocto 2.7

Change-Id: Icefeedb4cbf648309db3c73bf95dbc91087ebc89
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Feb 22, 2020
:Release Notes:

:Detailed Notes:
WARNING: connman-1.36-r0 do_patch: Fuzz detected:

Applying patch 0004-Support-WPS-PBC-and-PIN-mode.patch
patching file gsupplicant/gsupplicant.h
patching file gsupplicant/supplicant.c
Hunk #2 succeeded at 2956 (offset 38 lines).
Hunk webosose#3 succeeded at 5079 (offset 38 lines).
patching file include/device.h
Hunk #1 succeeded at 129 with fuzz 1 (offset 3 lines).
patching file include/technology.h
patching file plugins/wifi.c
Hunk #1 succeeded at 61 with fuzz 1.
Hunk #2 succeeded at 78 (offset 1 line).
Hunk webosose#3 succeeded at 163 (offset 7 lines).
Hunk webosose#4 succeeded at 214 (offset 7 lines).
Hunk webosose#5 succeeded at 805 (offset 7 lines).
Hunk webosose#6 succeeded at 2055 (offset 95 lines).
Hunk webosose#7 succeeded at 2277 with fuzz 2 (offset 96 lines).
Hunk webosose#8 succeeded at 2303 (offset 96 lines).
Hunk webosose#9 succeeded at 2333 (offset 96 lines).
Hunk webosose#10 succeeded at 2454 (offset 96 lines).
Hunk webosose#11 succeeded at 2499 (offset 95 lines).
Hunk webosose#12 succeeded at 2637 (offset 95 lines).
Hunk webosose#13 succeeded at 2707 (offset 95 lines).
Hunk webosose#14 succeeded at 2773 (offset 95 lines).
Hunk webosose#15 succeeded at 2810 (offset 98 lines).
Hunk webosose#16 succeeded at 2838 (offset 98 lines).
Hunk webosose#17 succeeded at 2848 (offset 98 lines).
Hunk webosose#18 succeeded at 2857 (offset 98 lines).
Hunk webosose#19 succeeded at 2906 with fuzz 1 (offset 101 lines).
Hunk webosose#20 succeeded at 3561 (offset 139 lines).
patching file src/connman.h
Hunk #1 succeeded at 562 (offset 2 lines).
patching file src/device.c
Hunk #1 succeeded at 1154 with fuzz 1 (offset 46 lines).
patching file src/service.c
patching file src/technology.c
Hunk #1 succeeded at 1090 (offset -2 lines).
Hunk #2 succeeded at 1142 (offset -2 lines).

The context lines in the patches can be updated with devtool:

    devtool modify connman
    devtool finish --force-patch-refresh connman <layer_path>

Don't forget to review changes done by devtool!

WARNING: connman-1.36-r0 do_patch: QA Issue: Patch log indicates that patches do not apply cleanly. [patch-fuzz]

Applying patch 0010-Support-channel-frequency-of-scanned-AP.patch
patching file gsupplicant/gsupplicant.h
patching file gsupplicant/supplicant.c
Hunk #2 succeeded at 1121 (offset 2 lines).
Hunk webosose#3 succeeded at 1302 (offset 2 lines).
Hunk webosose#4 succeeded at 2331 (offset 14 lines).
Hunk webosose#5 succeeded at 2488 (offset 14 lines).
Hunk webosose#6 succeeded at 6022 (offset 38 lines).
patching file include/device.h
Hunk #2 succeeded at 92 (offset 1 line).
Hunk webosose#3 succeeded at 118 (offset 1 line).
Hunk webosose#4 succeeded at 145 (offset 3 lines).
patching file include/network.h
patching file plugins/wifi.c
Hunk #1 succeeded at 170 (offset 6 lines).
Hunk #2 succeeded at 187 (offset 6 lines).
Hunk webosose#3 succeeded at 2293 (offset 94 lines).
Hunk webosose#4 succeeded at 2351 with fuzz 1 (offset 95 lines).
Hunk webosose#5 succeeded at 3182 (offset 100 lines).
Hunk webosose#6 succeeded at 3202 (offset 100 lines).
Hunk webosose#7 succeeded at 3269 (offset 102 lines).
Hunk webosose#8 succeeded at 3282 (offset 75 lines).
Hunk webosose#9 FAILED at 3224.
1 out of 9 hunks FAILED -- rejects in file plugins/wifi.c
patching file src/device.c
Hunk #2 succeeded at 563 (offset 22 lines).
Hunk webosose#3 succeeded at 829 (offset 38 lines).
Hunk webosose#4 succeeded at 874 (offset 38 lines).
Hunk webosose#5 succeeded at 1319 (offset 46 lines).
patching file src/network.c
Hunk #1 succeeded at 51 (offset 7 lines).
Hunk #2 succeeded at 66 (offset 7 lines).
Hunk webosose#3 succeeded at 107 with fuzz 1 (offset 8 lines).
Hunk webosose#4 succeeded at 922 (offset 9 lines).
Hunk webosose#5 succeeded at 966 (offset 9 lines).
Hunk webosose#6 succeeded at 1728 (offset 9 lines).
patching file src/service.c
Hunk #1 succeeded at 145 (offset 4 lines).
Hunk #2 succeeded at 1574 (offset 15 lines).
Hunk webosose#3 succeeded at 2424 (offset 76 lines).
Hunk webosose#4 succeeded at 2540 (offset 76 lines).
patching file src/technology.c
Hunk webosose#4 succeeded at 1257 (offset -2 lines).
Hunk webosose#5 succeeded at 1354 (offset -2 lines).
Patch 0010-Support-channel-frequency-of-scanned-AP.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[PLAT-77937] Create GPVB with Yocto 2.7

Change-Id: Icefeedb4cbf648309db3c73bf95dbc91087ebc89
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Feb 22, 2020
:Release Notes:

:Detailed Notes:
WARNING: connman-1.36-r0 do_patch: Fuzz detected:

Applying patch 0004-Support-WPS-PBC-and-PIN-mode.patch
patching file gsupplicant/gsupplicant.h
patching file gsupplicant/supplicant.c
Hunk #2 succeeded at 2956 (offset 38 lines).
Hunk webosose#3 succeeded at 5079 (offset 38 lines).
patching file include/device.h
Hunk #1 succeeded at 129 with fuzz 1 (offset 3 lines).
patching file include/technology.h
patching file plugins/wifi.c
Hunk #1 succeeded at 61 with fuzz 1.
Hunk #2 succeeded at 78 (offset 1 line).
Hunk webosose#3 succeeded at 163 (offset 7 lines).
Hunk webosose#4 succeeded at 214 (offset 7 lines).
Hunk webosose#5 succeeded at 805 (offset 7 lines).
Hunk webosose#6 succeeded at 2055 (offset 95 lines).
Hunk webosose#7 succeeded at 2277 with fuzz 2 (offset 96 lines).
Hunk webosose#8 succeeded at 2303 (offset 96 lines).
Hunk webosose#9 succeeded at 2333 (offset 96 lines).
Hunk webosose#10 succeeded at 2454 (offset 96 lines).
Hunk webosose#11 succeeded at 2499 (offset 95 lines).
Hunk webosose#12 succeeded at 2637 (offset 95 lines).
Hunk webosose#13 succeeded at 2707 (offset 95 lines).
Hunk webosose#14 succeeded at 2773 (offset 95 lines).
Hunk webosose#15 succeeded at 2810 (offset 98 lines).
Hunk webosose#16 succeeded at 2838 (offset 98 lines).
Hunk webosose#17 succeeded at 2848 (offset 98 lines).
Hunk webosose#18 succeeded at 2857 (offset 98 lines).
Hunk webosose#19 succeeded at 2906 with fuzz 1 (offset 101 lines).
Hunk webosose#20 succeeded at 3561 (offset 139 lines).
patching file src/connman.h
Hunk #1 succeeded at 562 (offset 2 lines).
patching file src/device.c
Hunk #1 succeeded at 1154 with fuzz 1 (offset 46 lines).
patching file src/service.c
patching file src/technology.c
Hunk #1 succeeded at 1090 (offset -2 lines).
Hunk #2 succeeded at 1142 (offset -2 lines).

The context lines in the patches can be updated with devtool:

    devtool modify connman
    devtool finish --force-patch-refresh connman <layer_path>

Don't forget to review changes done by devtool!

WARNING: connman-1.36-r0 do_patch: QA Issue: Patch log indicates that patches do not apply cleanly. [patch-fuzz]

Applying patch 0010-Support-channel-frequency-of-scanned-AP.patch
patching file gsupplicant/gsupplicant.h
patching file gsupplicant/supplicant.c
Hunk #2 succeeded at 1121 (offset 2 lines).
Hunk webosose#3 succeeded at 1302 (offset 2 lines).
Hunk webosose#4 succeeded at 2331 (offset 14 lines).
Hunk webosose#5 succeeded at 2488 (offset 14 lines).
Hunk webosose#6 succeeded at 6022 (offset 38 lines).
patching file include/device.h
Hunk #2 succeeded at 92 (offset 1 line).
Hunk webosose#3 succeeded at 118 (offset 1 line).
Hunk webosose#4 succeeded at 145 (offset 3 lines).
patching file include/network.h
patching file plugins/wifi.c
Hunk #1 succeeded at 170 (offset 6 lines).
Hunk #2 succeeded at 187 (offset 6 lines).
Hunk webosose#3 succeeded at 2293 (offset 94 lines).
Hunk webosose#4 succeeded at 2351 with fuzz 1 (offset 95 lines).
Hunk webosose#5 succeeded at 3182 (offset 100 lines).
Hunk webosose#6 succeeded at 3202 (offset 100 lines).
Hunk webosose#7 succeeded at 3269 (offset 102 lines).
Hunk webosose#8 succeeded at 3282 (offset 75 lines).
Hunk webosose#9 FAILED at 3224.
1 out of 9 hunks FAILED -- rejects in file plugins/wifi.c
patching file src/device.c
Hunk #2 succeeded at 563 (offset 22 lines).
Hunk webosose#3 succeeded at 829 (offset 38 lines).
Hunk webosose#4 succeeded at 874 (offset 38 lines).
Hunk webosose#5 succeeded at 1319 (offset 46 lines).
patching file src/network.c
Hunk #1 succeeded at 51 (offset 7 lines).
Hunk #2 succeeded at 66 (offset 7 lines).
Hunk webosose#3 succeeded at 107 with fuzz 1 (offset 8 lines).
Hunk webosose#4 succeeded at 922 (offset 9 lines).
Hunk webosose#5 succeeded at 966 (offset 9 lines).
Hunk webosose#6 succeeded at 1728 (offset 9 lines).
patching file src/service.c
Hunk #1 succeeded at 145 (offset 4 lines).
Hunk #2 succeeded at 1574 (offset 15 lines).
Hunk webosose#3 succeeded at 2424 (offset 76 lines).
Hunk webosose#4 succeeded at 2540 (offset 76 lines).
patching file src/technology.c
Hunk webosose#4 succeeded at 1257 (offset -2 lines).
Hunk webosose#5 succeeded at 1354 (offset -2 lines).
Patch 0010-Support-channel-frequency-of-scanned-AP.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[PLAT-77937] Create GPVB with Yocto 2.7

Change-Id: Icefeedb4cbf648309db3c73bf95dbc91087ebc89
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Feb 25, 2020
:Release Notes:

:Detailed Notes:
WARNING: connman-1.36-r0 do_patch: Fuzz detected:

Applying patch 0004-Support-WPS-PBC-and-PIN-mode.patch
patching file gsupplicant/gsupplicant.h
patching file gsupplicant/supplicant.c
Hunk #2 succeeded at 2956 (offset 38 lines).
Hunk webosose#3 succeeded at 5079 (offset 38 lines).
patching file include/device.h
Hunk #1 succeeded at 129 with fuzz 1 (offset 3 lines).
patching file include/technology.h
patching file plugins/wifi.c
Hunk #1 succeeded at 61 with fuzz 1.
Hunk #2 succeeded at 78 (offset 1 line).
Hunk webosose#3 succeeded at 163 (offset 7 lines).
Hunk webosose#4 succeeded at 214 (offset 7 lines).
Hunk webosose#5 succeeded at 805 (offset 7 lines).
Hunk webosose#6 succeeded at 2055 (offset 95 lines).
Hunk webosose#7 succeeded at 2277 with fuzz 2 (offset 96 lines).
Hunk webosose#8 succeeded at 2303 (offset 96 lines).
Hunk webosose#9 succeeded at 2333 (offset 96 lines).
Hunk webosose#10 succeeded at 2454 (offset 96 lines).
Hunk webosose#11 succeeded at 2499 (offset 95 lines).
Hunk webosose#12 succeeded at 2637 (offset 95 lines).
Hunk webosose#13 succeeded at 2707 (offset 95 lines).
Hunk webosose#14 succeeded at 2773 (offset 95 lines).
Hunk webosose#15 succeeded at 2810 (offset 98 lines).
Hunk webosose#16 succeeded at 2838 (offset 98 lines).
Hunk webosose#17 succeeded at 2848 (offset 98 lines).
Hunk webosose#18 succeeded at 2857 (offset 98 lines).
Hunk webosose#19 succeeded at 2906 with fuzz 1 (offset 101 lines).
Hunk webosose#20 succeeded at 3561 (offset 139 lines).
patching file src/connman.h
Hunk #1 succeeded at 562 (offset 2 lines).
patching file src/device.c
Hunk #1 succeeded at 1154 with fuzz 1 (offset 46 lines).
patching file src/service.c
patching file src/technology.c
Hunk #1 succeeded at 1090 (offset -2 lines).
Hunk #2 succeeded at 1142 (offset -2 lines).

The context lines in the patches can be updated with devtool:

    devtool modify connman
    devtool finish --force-patch-refresh connman <layer_path>

Don't forget to review changes done by devtool!

WARNING: connman-1.36-r0 do_patch: QA Issue: Patch log indicates that patches do not apply cleanly. [patch-fuzz]

Applying patch 0010-Support-channel-frequency-of-scanned-AP.patch
patching file gsupplicant/gsupplicant.h
patching file gsupplicant/supplicant.c
Hunk #2 succeeded at 1121 (offset 2 lines).
Hunk webosose#3 succeeded at 1302 (offset 2 lines).
Hunk webosose#4 succeeded at 2331 (offset 14 lines).
Hunk webosose#5 succeeded at 2488 (offset 14 lines).
Hunk webosose#6 succeeded at 6022 (offset 38 lines).
patching file include/device.h
Hunk #2 succeeded at 92 (offset 1 line).
Hunk webosose#3 succeeded at 118 (offset 1 line).
Hunk webosose#4 succeeded at 145 (offset 3 lines).
patching file include/network.h
patching file plugins/wifi.c
Hunk #1 succeeded at 170 (offset 6 lines).
Hunk #2 succeeded at 187 (offset 6 lines).
Hunk webosose#3 succeeded at 2293 (offset 94 lines).
Hunk webosose#4 succeeded at 2351 with fuzz 1 (offset 95 lines).
Hunk webosose#5 succeeded at 3182 (offset 100 lines).
Hunk webosose#6 succeeded at 3202 (offset 100 lines).
Hunk webosose#7 succeeded at 3269 (offset 102 lines).
Hunk webosose#8 succeeded at 3282 (offset 75 lines).
Hunk webosose#9 FAILED at 3224.
1 out of 9 hunks FAILED -- rejects in file plugins/wifi.c
patching file src/device.c
Hunk #2 succeeded at 563 (offset 22 lines).
Hunk webosose#3 succeeded at 829 (offset 38 lines).
Hunk webosose#4 succeeded at 874 (offset 38 lines).
Hunk webosose#5 succeeded at 1319 (offset 46 lines).
patching file src/network.c
Hunk #1 succeeded at 51 (offset 7 lines).
Hunk #2 succeeded at 66 (offset 7 lines).
Hunk webosose#3 succeeded at 107 with fuzz 1 (offset 8 lines).
Hunk webosose#4 succeeded at 922 (offset 9 lines).
Hunk webosose#5 succeeded at 966 (offset 9 lines).
Hunk webosose#6 succeeded at 1728 (offset 9 lines).
patching file src/service.c
Hunk #1 succeeded at 145 (offset 4 lines).
Hunk #2 succeeded at 1574 (offset 15 lines).
Hunk webosose#3 succeeded at 2424 (offset 76 lines).
Hunk webosose#4 succeeded at 2540 (offset 76 lines).
patching file src/technology.c
Hunk webosose#4 succeeded at 1257 (offset -2 lines).
Hunk webosose#5 succeeded at 1354 (offset -2 lines).
Patch 0010-Support-channel-frequency-of-scanned-AP.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[PLAT-77937] Create GPVB with Yocto 2.7

Change-Id: Icefeedb4cbf648309db3c73bf95dbc91087ebc89
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Feb 25, 2020
:Release Notes:

:Detailed Notes:
WARNING: connman-1.36-r0 do_patch: Fuzz detected:

Applying patch 0004-Support-WPS-PBC-and-PIN-mode.patch
patching file gsupplicant/gsupplicant.h
patching file gsupplicant/supplicant.c
Hunk #2 succeeded at 2956 (offset 38 lines).
Hunk webosose#3 succeeded at 5079 (offset 38 lines).
patching file include/device.h
Hunk #1 succeeded at 129 with fuzz 1 (offset 3 lines).
patching file include/technology.h
patching file plugins/wifi.c
Hunk #1 succeeded at 61 with fuzz 1.
Hunk #2 succeeded at 78 (offset 1 line).
Hunk webosose#3 succeeded at 163 (offset 7 lines).
Hunk webosose#4 succeeded at 214 (offset 7 lines).
Hunk webosose#5 succeeded at 805 (offset 7 lines).
Hunk webosose#6 succeeded at 2055 (offset 95 lines).
Hunk webosose#7 succeeded at 2277 with fuzz 2 (offset 96 lines).
Hunk webosose#8 succeeded at 2303 (offset 96 lines).
Hunk webosose#9 succeeded at 2333 (offset 96 lines).
Hunk webosose#10 succeeded at 2454 (offset 96 lines).
Hunk webosose#11 succeeded at 2499 (offset 95 lines).
Hunk webosose#12 succeeded at 2637 (offset 95 lines).
Hunk webosose#13 succeeded at 2707 (offset 95 lines).
Hunk webosose#14 succeeded at 2773 (offset 95 lines).
Hunk webosose#15 succeeded at 2810 (offset 98 lines).
Hunk webosose#16 succeeded at 2838 (offset 98 lines).
Hunk webosose#17 succeeded at 2848 (offset 98 lines).
Hunk webosose#18 succeeded at 2857 (offset 98 lines).
Hunk webosose#19 succeeded at 2906 with fuzz 1 (offset 101 lines).
Hunk webosose#20 succeeded at 3561 (offset 139 lines).
patching file src/connman.h
Hunk #1 succeeded at 562 (offset 2 lines).
patching file src/device.c
Hunk #1 succeeded at 1154 with fuzz 1 (offset 46 lines).
patching file src/service.c
patching file src/technology.c
Hunk #1 succeeded at 1090 (offset -2 lines).
Hunk #2 succeeded at 1142 (offset -2 lines).

The context lines in the patches can be updated with devtool:

    devtool modify connman
    devtool finish --force-patch-refresh connman <layer_path>

Don't forget to review changes done by devtool!

WARNING: connman-1.36-r0 do_patch: QA Issue: Patch log indicates that patches do not apply cleanly. [patch-fuzz]

Applying patch 0010-Support-channel-frequency-of-scanned-AP.patch
patching file gsupplicant/gsupplicant.h
patching file gsupplicant/supplicant.c
Hunk #2 succeeded at 1121 (offset 2 lines).
Hunk webosose#3 succeeded at 1302 (offset 2 lines).
Hunk webosose#4 succeeded at 2331 (offset 14 lines).
Hunk webosose#5 succeeded at 2488 (offset 14 lines).
Hunk webosose#6 succeeded at 6022 (offset 38 lines).
patching file include/device.h
Hunk #2 succeeded at 92 (offset 1 line).
Hunk webosose#3 succeeded at 118 (offset 1 line).
Hunk webosose#4 succeeded at 145 (offset 3 lines).
patching file include/network.h
patching file plugins/wifi.c
Hunk #1 succeeded at 170 (offset 6 lines).
Hunk #2 succeeded at 187 (offset 6 lines).
Hunk webosose#3 succeeded at 2293 (offset 94 lines).
Hunk webosose#4 succeeded at 2351 with fuzz 1 (offset 95 lines).
Hunk webosose#5 succeeded at 3182 (offset 100 lines).
Hunk webosose#6 succeeded at 3202 (offset 100 lines).
Hunk webosose#7 succeeded at 3269 (offset 102 lines).
Hunk webosose#8 succeeded at 3282 (offset 75 lines).
Hunk webosose#9 FAILED at 3224.
1 out of 9 hunks FAILED -- rejects in file plugins/wifi.c
patching file src/device.c
Hunk #2 succeeded at 563 (offset 22 lines).
Hunk webosose#3 succeeded at 829 (offset 38 lines).
Hunk webosose#4 succeeded at 874 (offset 38 lines).
Hunk webosose#5 succeeded at 1319 (offset 46 lines).
patching file src/network.c
Hunk #1 succeeded at 51 (offset 7 lines).
Hunk #2 succeeded at 66 (offset 7 lines).
Hunk webosose#3 succeeded at 107 with fuzz 1 (offset 8 lines).
Hunk webosose#4 succeeded at 922 (offset 9 lines).
Hunk webosose#5 succeeded at 966 (offset 9 lines).
Hunk webosose#6 succeeded at 1728 (offset 9 lines).
patching file src/service.c
Hunk #1 succeeded at 145 (offset 4 lines).
Hunk #2 succeeded at 1574 (offset 15 lines).
Hunk webosose#3 succeeded at 2424 (offset 76 lines).
Hunk webosose#4 succeeded at 2540 (offset 76 lines).
patching file src/technology.c
Hunk webosose#4 succeeded at 1257 (offset -2 lines).
Hunk webosose#5 succeeded at 1354 (offset -2 lines).
Patch 0010-Support-channel-frequency-of-scanned-AP.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[PLAT-77937] Create GPVB with Yocto 2.7

Change-Id: Icefeedb4cbf648309db3c73bf95dbc91087ebc89
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Mar 9, 2020
:Release Notes:

:Detailed Notes:
WARNING: connman-1.36-r0 do_patch: Fuzz detected:

Applying patch 0004-Support-WPS-PBC-and-PIN-mode.patch
patching file gsupplicant/gsupplicant.h
patching file gsupplicant/supplicant.c
Hunk #2 succeeded at 2956 (offset 38 lines).
Hunk webosose#3 succeeded at 5079 (offset 38 lines).
patching file include/device.h
Hunk #1 succeeded at 129 with fuzz 1 (offset 3 lines).
patching file include/technology.h
patching file plugins/wifi.c
Hunk #1 succeeded at 61 with fuzz 1.
Hunk #2 succeeded at 78 (offset 1 line).
Hunk webosose#3 succeeded at 163 (offset 7 lines).
Hunk webosose#4 succeeded at 214 (offset 7 lines).
Hunk webosose#5 succeeded at 805 (offset 7 lines).
Hunk webosose#6 succeeded at 2055 (offset 95 lines).
Hunk webosose#7 succeeded at 2277 with fuzz 2 (offset 96 lines).
Hunk webosose#8 succeeded at 2303 (offset 96 lines).
Hunk webosose#9 succeeded at 2333 (offset 96 lines).
Hunk webosose#10 succeeded at 2454 (offset 96 lines).
Hunk webosose#11 succeeded at 2499 (offset 95 lines).
Hunk webosose#12 succeeded at 2637 (offset 95 lines).
Hunk webosose#13 succeeded at 2707 (offset 95 lines).
Hunk webosose#14 succeeded at 2773 (offset 95 lines).
Hunk webosose#15 succeeded at 2810 (offset 98 lines).
Hunk webosose#16 succeeded at 2838 (offset 98 lines).
Hunk webosose#17 succeeded at 2848 (offset 98 lines).
Hunk webosose#18 succeeded at 2857 (offset 98 lines).
Hunk webosose#19 succeeded at 2906 with fuzz 1 (offset 101 lines).
Hunk webosose#20 succeeded at 3561 (offset 139 lines).
patching file src/connman.h
Hunk #1 succeeded at 562 (offset 2 lines).
patching file src/device.c
Hunk #1 succeeded at 1154 with fuzz 1 (offset 46 lines).
patching file src/service.c
patching file src/technology.c
Hunk #1 succeeded at 1090 (offset -2 lines).
Hunk #2 succeeded at 1142 (offset -2 lines).

The context lines in the patches can be updated with devtool:

    devtool modify connman
    devtool finish --force-patch-refresh connman <layer_path>

Don't forget to review changes done by devtool!

WARNING: connman-1.36-r0 do_patch: QA Issue: Patch log indicates that patches do not apply cleanly. [patch-fuzz]

Applying patch 0010-Support-channel-frequency-of-scanned-AP.patch
patching file gsupplicant/gsupplicant.h
patching file gsupplicant/supplicant.c
Hunk #2 succeeded at 1121 (offset 2 lines).
Hunk webosose#3 succeeded at 1302 (offset 2 lines).
Hunk webosose#4 succeeded at 2331 (offset 14 lines).
Hunk webosose#5 succeeded at 2488 (offset 14 lines).
Hunk webosose#6 succeeded at 6022 (offset 38 lines).
patching file include/device.h
Hunk #2 succeeded at 92 (offset 1 line).
Hunk webosose#3 succeeded at 118 (offset 1 line).
Hunk webosose#4 succeeded at 145 (offset 3 lines).
patching file include/network.h
patching file plugins/wifi.c
Hunk #1 succeeded at 170 (offset 6 lines).
Hunk #2 succeeded at 187 (offset 6 lines).
Hunk webosose#3 succeeded at 2293 (offset 94 lines).
Hunk webosose#4 succeeded at 2351 with fuzz 1 (offset 95 lines).
Hunk webosose#5 succeeded at 3182 (offset 100 lines).
Hunk webosose#6 succeeded at 3202 (offset 100 lines).
Hunk webosose#7 succeeded at 3269 (offset 102 lines).
Hunk webosose#8 succeeded at 3282 (offset 75 lines).
Hunk webosose#9 FAILED at 3224.
1 out of 9 hunks FAILED -- rejects in file plugins/wifi.c
patching file src/device.c
Hunk #2 succeeded at 563 (offset 22 lines).
Hunk webosose#3 succeeded at 829 (offset 38 lines).
Hunk webosose#4 succeeded at 874 (offset 38 lines).
Hunk webosose#5 succeeded at 1319 (offset 46 lines).
patching file src/network.c
Hunk #1 succeeded at 51 (offset 7 lines).
Hunk #2 succeeded at 66 (offset 7 lines).
Hunk webosose#3 succeeded at 107 with fuzz 1 (offset 8 lines).
Hunk webosose#4 succeeded at 922 (offset 9 lines).
Hunk webosose#5 succeeded at 966 (offset 9 lines).
Hunk webosose#6 succeeded at 1728 (offset 9 lines).
patching file src/service.c
Hunk #1 succeeded at 145 (offset 4 lines).
Hunk #2 succeeded at 1574 (offset 15 lines).
Hunk webosose#3 succeeded at 2424 (offset 76 lines).
Hunk webosose#4 succeeded at 2540 (offset 76 lines).
patching file src/technology.c
Hunk webosose#4 succeeded at 1257 (offset -2 lines).
Hunk webosose#5 succeeded at 1354 (offset -2 lines).
Patch 0010-Support-channel-frequency-of-scanned-AP.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[PLAT-77937] Create GPVB with Yocto 2.7

Change-Id: Icefeedb4cbf648309db3c73bf95dbc91087ebc89
hyunjae92-shin pushed a commit that referenced this pull request Sep 26, 2020
:Release Notes:

:Detailed Notes:
WARNING: connman-1.36-r0 do_patch: Fuzz detected:

Applying patch 0004-Support-WPS-PBC-and-PIN-mode.patch
patching file gsupplicant/gsupplicant.h
patching file gsupplicant/supplicant.c
Hunk #2 succeeded at 2956 (offset 38 lines).
Hunk #3 succeeded at 5079 (offset 38 lines).
patching file include/device.h
Hunk #1 succeeded at 129 with fuzz 1 (offset 3 lines).
patching file include/technology.h
patching file plugins/wifi.c
Hunk #1 succeeded at 61 with fuzz 1.
Hunk #2 succeeded at 78 (offset 1 line).
Hunk #3 succeeded at 163 (offset 7 lines).
Hunk #4 succeeded at 214 (offset 7 lines).
Hunk #5 succeeded at 805 (offset 7 lines).
Hunk #6 succeeded at 2055 (offset 95 lines).
Hunk #7 succeeded at 2277 with fuzz 2 (offset 96 lines).
Hunk #8 succeeded at 2303 (offset 96 lines).
Hunk #9 succeeded at 2333 (offset 96 lines).
Hunk #10 succeeded at 2454 (offset 96 lines).
Hunk #11 succeeded at 2499 (offset 95 lines).
Hunk #12 succeeded at 2637 (offset 95 lines).
Hunk #13 succeeded at 2707 (offset 95 lines).
Hunk #14 succeeded at 2773 (offset 95 lines).
Hunk #15 succeeded at 2810 (offset 98 lines).
Hunk #16 succeeded at 2838 (offset 98 lines).
Hunk #17 succeeded at 2848 (offset 98 lines).
Hunk #18 succeeded at 2857 (offset 98 lines).
Hunk #19 succeeded at 2906 with fuzz 1 (offset 101 lines).
Hunk #20 succeeded at 3561 (offset 139 lines).
patching file src/connman.h
Hunk #1 succeeded at 562 (offset 2 lines).
patching file src/device.c
Hunk #1 succeeded at 1154 with fuzz 1 (offset 46 lines).
patching file src/service.c
patching file src/technology.c
Hunk #1 succeeded at 1090 (offset -2 lines).
Hunk #2 succeeded at 1142 (offset -2 lines).

The context lines in the patches can be updated with devtool:

    devtool modify connman
    devtool finish --force-patch-refresh connman <layer_path>

Don't forget to review changes done by devtool!

WARNING: connman-1.36-r0 do_patch: QA Issue: Patch log indicates that patches do not apply cleanly. [patch-fuzz]

Applying patch 0010-Support-channel-frequency-of-scanned-AP.patch
patching file gsupplicant/gsupplicant.h
patching file gsupplicant/supplicant.c
Hunk #2 succeeded at 1121 (offset 2 lines).
Hunk #3 succeeded at 1302 (offset 2 lines).
Hunk #4 succeeded at 2331 (offset 14 lines).
Hunk #5 succeeded at 2488 (offset 14 lines).
Hunk #6 succeeded at 6022 (offset 38 lines).
patching file include/device.h
Hunk #2 succeeded at 92 (offset 1 line).
Hunk #3 succeeded at 118 (offset 1 line).
Hunk #4 succeeded at 145 (offset 3 lines).
patching file include/network.h
patching file plugins/wifi.c
Hunk #1 succeeded at 170 (offset 6 lines).
Hunk #2 succeeded at 187 (offset 6 lines).
Hunk #3 succeeded at 2293 (offset 94 lines).
Hunk #4 succeeded at 2351 with fuzz 1 (offset 95 lines).
Hunk #5 succeeded at 3182 (offset 100 lines).
Hunk #6 succeeded at 3202 (offset 100 lines).
Hunk #7 succeeded at 3269 (offset 102 lines).
Hunk #8 succeeded at 3282 (offset 75 lines).
Hunk #9 FAILED at 3224.
1 out of 9 hunks FAILED -- rejects in file plugins/wifi.c
patching file src/device.c
Hunk #2 succeeded at 563 (offset 22 lines).
Hunk #3 succeeded at 829 (offset 38 lines).
Hunk #4 succeeded at 874 (offset 38 lines).
Hunk #5 succeeded at 1319 (offset 46 lines).
patching file src/network.c
Hunk #1 succeeded at 51 (offset 7 lines).
Hunk #2 succeeded at 66 (offset 7 lines).
Hunk #3 succeeded at 107 with fuzz 1 (offset 8 lines).
Hunk #4 succeeded at 922 (offset 9 lines).
Hunk #5 succeeded at 966 (offset 9 lines).
Hunk #6 succeeded at 1728 (offset 9 lines).
patching file src/service.c
Hunk #1 succeeded at 145 (offset 4 lines).
Hunk #2 succeeded at 1574 (offset 15 lines).
Hunk #3 succeeded at 2424 (offset 76 lines).
Hunk #4 succeeded at 2540 (offset 76 lines).
patching file src/technology.c
Hunk #4 succeeded at 1257 (offset -2 lines).
Hunk #5 succeeded at 1354 (offset -2 lines).
Patch 0010-Support-channel-frequency-of-scanned-AP.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[PLAT-77937] Create GPVB with Yocto 2.7
[PLAT-115142] CCC: Upgrade to Yocto 2.7 Warrior

Change-Id: Icefeedb4cbf648309db3c73bf95dbc91087ebc89
hyunjae92-shin pushed a commit that referenced this pull request Sep 26, 2020
…3-r0,v0.1.0 com.webos.app.volume=4-r0,v0.1.0

:Release Notes:
This commit introduces web-based system UI application notification and
volume. The legacy notification in LSM is dropped and the swipe-down
gesture from the top edge of the screen will launch the volume app.

:Detailed Notes:
auto-luna-surface-manager: submissions/26..submissions/27
cc03eee Revert "Revert "Add TouchHotspot for the volume app""
65ee45d Revert "Revert "Add WebOSAutoSystemUIView for notifications""

bootd: submissions/12..submissions/13
15937f9 Launch the notification app on boottime

com.webos.app.notification: ..submissions/3
0a8b7f4 Change default mode to release
0e0e2a0 Bug fix: Clear timer and make timerId null
16c97c0 Remove unnecessary localeChange event handler
a834abb Fix cancel ls2 subscription APIs
526f6f8 PLAT-98149: Notification First In Last Out (#14)
1a29c24 Bug fix - touch disabled after show notification
54441a2 Add alert notification
e9af9b9 Change to show toast notification only
b5bb068 Update to 1.0.0 (#13)
eb4163a PLAT-99579: Update to enactjs/agate and enyojs/webos-auto-service (#12)
1a1baa4 Apply the default skin - gallium by not defining skin prop (#11)
a47975c PLAT-99318: Apply Fade-out effect when hiding (#10)
57b444a PLAT-95460: Apply com.webos.notification v2.0 luna service specification (#9)
1f0a574 PLAT-94389: Apply webos-auto-service to Notification App (#7)
75e846c PLAT-87368: Integrate notification luna services (#6)
5c0a0cf PLAT-94388: Fix the broken padding in Notification Popup with direction: rtl (#5)
2a83c45 PLAT-86558: Initial Notification UI Implimentation (#3)
1e866b6 Treat warnings as errors on Travis (#2)
7a14c5b 0.1.0 release details
7ee4541 initialize application (#1)
e15a015 Initial commit

com.webos.app.volume: ..submissions/4
d4d5e66 Add missed parameter define
6c72a80 Adjust to webOS OSE
b8876ff Add license file
b9c79db Change to volume app does not shown by subscription
1051cce Fix bugs - volume app is not handle relauch event, etc
d4bb943 Change volume type from BT to master
01bc898 PLAT-98148: Change to fade-out animation when a popup disappears (#10)
acb218b Add less property for the title color change
d4eefba PLAT-97443: Use mock data and services in the webos-auto-service library (#8)
ae75afe PLAT-86781: Integration Service Part (#7)
873808a Add xliff files (#6)
fd2637d PLAT-86090: Implement UI part (#4)
d24fb4e Treat warnings as errors on Travis
27ad21f 0.2.0 release details
902c295 Remove test execution from npm
34584eb Add .travis.yml and strict linting
929481c Updated agate release
1c30d07 0.1.0 release details
ba79e2f PLAT-85875: Improved NPM run scripts with targeted providers and auto-rebuilding (#1)
9d83047 Fixed up the appinfo to be unique
a02706d Added in prop-type checking
ddc6141 Initial version of overlay volume control app
4b9d14c Remove all files
a9d045e Revert "Remove keepAlive property in appinfo.json"
01236fe Remove keepAlive property in appinfo.json
044a6ff Create app files in repository
da3a3d3 Initial empty repository

:Testing Performed:
See the CCC JIRA ticket.

:QA Notes:

:Issues Addressed:
[PLAT-118677] CCC: auto-luna-surface-manager=27 bootd=13 Add com.webos.app.notification=3-r0,v0.1.0 com.webos.app.volume=4-r0,v0.1.0
[PLAT-95346] Request to add apps to system_ui layer
[PLAT-99315] [Auto Notification] Remove QML based Notification App
[PLAT-95842] Request to allow a Volume app launching when swiping down
             from top area of screen
[PLAT-104172] [OSE] Volume - update volume application for OSE
[PLAT-105397] [OSE] Notification - update notification application for OSE
[PLAT-118710] [OSE] bootd - launching notification application in booting time with keepAlive option.

Change-Id: I1e99d8da8cca9065f00540500394ec3b44980c40
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Feb 14, 2021
:Release Notes:

:Detailed Notes:
Fixes:
http://gecko.lge.com/Errors/Details/116853
ERROR: Command Error: 'quilt --quiltrc TOPDIR/BUILD/work/raspberrypi3_64-webos-linux/connman/1.39-r0/recipe-sysroot-native/etc/quiltrc push' exited with 0  Output:
stdout: Applying patch 0001-Add-support-for-the-WPS-PBS-and-PIN-mode.patch
patching file gsupplicant/gsupplicant.h
patching file gsupplicant/supplicant.c
patching file include/device.h
patching file include/technology.h
patching file plugins/wifi.c
Hunk #2 succeeded at 83 (offset 2 lines).
Hunk webosose#3 succeeded at 168 with fuzz 1 (offset 2 lines).
Hunk webosose#4 succeeded at 224 (offset 7 lines).
Hunk webosose#5 succeeded at 812 (offset 8 lines).
Hunk webosose#6 succeeded at 2080 (offset 28 lines).
Hunk webosose#7 succeeded at 2302 (offset 28 lines).
Hunk webosose#8 succeeded at 2328 (offset 28 lines).
Hunk webosose#9 succeeded at 2358 (offset 28 lines).
Hunk webosose#10 succeeded at 2479 (offset 28 lines).
Hunk webosose#11 succeeded at 2536 (offset 40 lines).
Hunk webosose#12 FAILED at 2634.
Hunk webosose#13 succeeded at 2756 (offset 54 lines).
Hunk webosose#14 succeeded at 2822 (offset 54 lines).
Hunk webosose#15 succeeded at 2859 (offset 54 lines).
Hunk webosose#16 succeeded at 2887 (offset 54 lines).
Hunk webosose#17 succeeded at 2897 (offset 54 lines).
Hunk webosose#18 succeeded at 2906 (offset 54 lines).
Hunk webosose#19 succeeded at 2952 (offset 51 lines).
Hunk webosose#20 succeeded at 3633 (offset 51 lines).
1 out of 20 hunks FAILED -- rejects in file plugins/wifi.c
patching file src/connman.h
Hunk #1 succeeded at 573 (offset 7 lines).
patching file src/device.c
patching file src/service.c
patching file src/technology.c
Hunk #1 succeeded at 1099 (offset 5 lines).
Hunk #2 succeeded at 1151 (offset 5 lines).
Patch 0001-Add-support-for-the-WPS-PBS-and-PIN-mode.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[PLAT-122546] Create GPVB with Yocto 3.2 Gatesgarth
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Feb 19, 2021
:Release Notes:

:Detailed Notes:
Fixes:
http://gecko.lge.com/Errors/Details/116853
ERROR: Command Error: 'quilt --quiltrc TOPDIR/BUILD/work/raspberrypi3_64-webos-linux/connman/1.39-r0/recipe-sysroot-native/etc/quiltrc push' exited with 0  Output:
stdout: Applying patch 0001-Add-support-for-the-WPS-PBS-and-PIN-mode.patch
patching file gsupplicant/gsupplicant.h
patching file gsupplicant/supplicant.c
patching file include/device.h
patching file include/technology.h
patching file plugins/wifi.c
Hunk #2 succeeded at 83 (offset 2 lines).
Hunk webosose#3 succeeded at 168 with fuzz 1 (offset 2 lines).
Hunk webosose#4 succeeded at 224 (offset 7 lines).
Hunk webosose#5 succeeded at 812 (offset 8 lines).
Hunk webosose#6 succeeded at 2080 (offset 28 lines).
Hunk webosose#7 succeeded at 2302 (offset 28 lines).
Hunk webosose#8 succeeded at 2328 (offset 28 lines).
Hunk webosose#9 succeeded at 2358 (offset 28 lines).
Hunk webosose#10 succeeded at 2479 (offset 28 lines).
Hunk webosose#11 succeeded at 2536 (offset 40 lines).
Hunk webosose#12 FAILED at 2634.
Hunk webosose#13 succeeded at 2756 (offset 54 lines).
Hunk webosose#14 succeeded at 2822 (offset 54 lines).
Hunk webosose#15 succeeded at 2859 (offset 54 lines).
Hunk webosose#16 succeeded at 2887 (offset 54 lines).
Hunk webosose#17 succeeded at 2897 (offset 54 lines).
Hunk webosose#18 succeeded at 2906 (offset 54 lines).
Hunk webosose#19 succeeded at 2952 (offset 51 lines).
Hunk webosose#20 succeeded at 3633 (offset 51 lines).
1 out of 20 hunks FAILED -- rejects in file plugins/wifi.c
patching file src/connman.h
Hunk #1 succeeded at 573 (offset 7 lines).
patching file src/device.c
patching file src/service.c
patching file src/technology.c
Hunk #1 succeeded at 1099 (offset 5 lines).
Hunk #2 succeeded at 1151 (offset 5 lines).
Patch 0001-Add-support-for-the-WPS-PBS-and-PIN-mode.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[PLAT-122546] Create GPVB with Yocto 3.2 Gatesgarth
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Feb 20, 2021
:Release Notes:

:Detailed Notes:
Fixes:
http://gecko.lge.com/Errors/Details/116853
ERROR: Command Error: 'quilt --quiltrc TOPDIR/BUILD/work/raspberrypi3_64-webos-linux/connman/1.39-r0/recipe-sysroot-native/etc/quiltrc push' exited with 0  Output:
stdout: Applying patch 0001-Add-support-for-the-WPS-PBS-and-PIN-mode.patch
patching file gsupplicant/gsupplicant.h
patching file gsupplicant/supplicant.c
patching file include/device.h
patching file include/technology.h
patching file plugins/wifi.c
Hunk #2 succeeded at 83 (offset 2 lines).
Hunk webosose#3 succeeded at 168 with fuzz 1 (offset 2 lines).
Hunk webosose#4 succeeded at 224 (offset 7 lines).
Hunk webosose#5 succeeded at 812 (offset 8 lines).
Hunk webosose#6 succeeded at 2080 (offset 28 lines).
Hunk webosose#7 succeeded at 2302 (offset 28 lines).
Hunk webosose#8 succeeded at 2328 (offset 28 lines).
Hunk webosose#9 succeeded at 2358 (offset 28 lines).
Hunk webosose#10 succeeded at 2479 (offset 28 lines).
Hunk webosose#11 succeeded at 2536 (offset 40 lines).
Hunk webosose#12 FAILED at 2634.
Hunk webosose#13 succeeded at 2756 (offset 54 lines).
Hunk webosose#14 succeeded at 2822 (offset 54 lines).
Hunk webosose#15 succeeded at 2859 (offset 54 lines).
Hunk webosose#16 succeeded at 2887 (offset 54 lines).
Hunk webosose#17 succeeded at 2897 (offset 54 lines).
Hunk webosose#18 succeeded at 2906 (offset 54 lines).
Hunk webosose#19 succeeded at 2952 (offset 51 lines).
Hunk webosose#20 succeeded at 3633 (offset 51 lines).
1 out of 20 hunks FAILED -- rejects in file plugins/wifi.c
patching file src/connman.h
Hunk #1 succeeded at 573 (offset 7 lines).
patching file src/device.c
patching file src/service.c
patching file src/technology.c
Hunk #1 succeeded at 1099 (offset 5 lines).
Hunk #2 succeeded at 1151 (offset 5 lines).
Patch 0001-Add-support-for-the-WPS-PBS-and-PIN-mode.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[PLAT-122546] Create GPVB with Yocto 3.2 Gatesgarth
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Feb 27, 2021
:Release Notes:
Resolve conflicts mostly from these 2 upstream changes:
commit c4ef8f8d048a30304ba4cb1b83bfe39b55c13ba7
Author: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Date:   Wed Oct 28 14:53:36 2020 -0700

    core: Rename hcid.h to btd.h

    Since we use btd term for daemon APIs it makes sense to use it also
    for the header name instead of hcid.

commit 01d035d33886b13cd6dc361f994ce22ad47daf61
Author: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Date:   Wed Oct 28 14:50:00 2020 -0700

    core: Rename main_opts to btd_opts

    Use btd_ prefix since this is a daemon API.

:Detailed Notes:
Fixes:
NOTE: --- Patch fuzz start ---
Applying patch 0011-Fix-volume-level-notification-not-appearing-after-12.patch
patching file profiles/audio/media.c
Hunk #1 succeeded at 1235 (offset 1 line).
patching file profiles/audio/transport.c
Hunk #1 succeeded at 656 (offset -13 lines).
Hunk #2 succeeded at 932 with fuzz 1 (offset -10 lines).

Now at patch 0011-Fix-volume-level-notification-not-appearing-after-12.patch

NOTE: Applying patch '0012-Support-enabling-avdtp-delayReport.patch' (meta-webosose/meta-webos/recipes-connectivity/bluez5/bluez5/0012-Support-enabling-avdtp-delayReport.patch)
ERROR: Command Error: 'quilt --quiltrc TOPDIR/BUILD/work/raspberrypi3-webos-linux-gnueabi/bluez5/5.56-r0/recipe-sysroot-native/etc/quiltrc push' exited with 0  Output:
stdout: Applying patch 0012-Support-enabling-avdtp-delayReport.patch
patching file profiles/audio/a2dp.c
Hunk #1 succeeded at 2194 (offset 34 lines).
patching file profiles/audio/a2dp.h
Hunk #1 succeeded at 77 (offset -13 lines).
patching file profiles/audio/avdtp.c
Hunk #1 succeeded at 469 (offset -9 lines).
patching file profiles/audio/avdtp.h
Hunk #1 succeeded at 306 (offset -8 lines).
patching file profiles/audio/media.c
Hunk #1 succeeded at 120 (offset -12 lines).
Hunk #2 succeeded at 813 (offset 1 line).
Hunk webosose#3 succeeded at 2430 (offset 1 line).
patching file profiles/audio/media.h
Hunk #1 succeeded at 10 (offset -13 lines).
Hunk #2 succeeded at 23 (offset -13 lines).
patching file src/adapter.c
Hunk #1 FAILED at 78.
Hunk #2 succeeded at 224 (offset -19 lines).
Hunk webosose#3 succeeded at 291 (offset -15 lines).
Hunk webosose#4 succeeded at 497 with fuzz 2 (offset -15 lines).
Hunk webosose#5 succeeded at 3194 with fuzz 2 (offset -17 lines).
Hunk webosose#6 succeeded at 3539 (offset 22 lines).
Hunk webosose#7 succeeded at 4867 (offset -6 lines).
Hunk webosose#8 succeeded at 6319 (offset -6 lines).
Hunk webosose#9 FAILED at 6366.
Hunk webosose#10 succeeded at 6367 (offset -6 lines).
2 out of 10 hunks FAILED -- rejects in file src/adapter.c
patching file src/adapter.h
Hunk #1 succeeded at 25 (offset -8 lines).
Hunk #2 succeeded at 69 (offset -8 lines).
can't find file to patch at input line 302
Perhaps you used the wrong -p or --strip option?
The text leading up to this was:
  --------------------------
  |diff --git a/src/hcid.h b/src/hcid.h
  |index 3624ba6ea..8f77184ed 100644
  |--- a/src/hcid.h
  |+++ b/src/hcid.h
  --------------------------
No file to patch.  Skipping patch.
1 out of 1 hunk ignored
patching file src/main.c
Hunk #1 succeeded at 76 (offset -12 lines).
Hunk #2 succeeded at 709 with fuzz 2 (offset 74 lines).
patching file src/main.conf
Patch 0012-Support-enabling-avdtp-delayReport.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[PLAT-124341] Create GPVB with Yocto 3.3 Hardknott
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Nov 7, 2021
:Release Notes:

:Detailed Notes:
Fixes:
CmdError('quilt --quiltrc TOPDIR/BUILD/work/qemux86-webos-linux/bluez5/5.62-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0012-Support-enabling-avdtp-delayReport.patch
patching file profiles/audio/a2dp.c
Hunk #1 succeeded at 2334 (offset 1 line).
patching file profiles/audio/a2dp.h
patching file profiles/audio/avdtp.c
Hunk #1 succeeded at 469 (offset -1 lines).
patching file profiles/audio/avdtp.h
Hunk #1 succeeded at 311 (offset 3 lines).
patching file profiles/audio/media.c
Hunk webosose#3 succeeded at 2435 (offset 2 lines).
patching file profiles/audio/media.h
patching file src/adapter.c
Hunk #2 succeeded at 266 (offset 40 lines).
Hunk webosose#3 succeeded at 337 (offset 39 lines).
Hunk webosose#4 succeeded at 543 (offset 39 lines).
Hunk webosose#5 succeeded at 3312 with fuzz 2 (offset 42 lines).
Hunk webosose#6 FAILED at 3654.
Hunk webosose#7 succeeded at 5129 (offset 90 lines).
Hunk webosose#8 succeeded at 6588 (offset 93 lines).
Hunk webosose#9 succeeded at 6629 (offset 93 lines).
Hunk webosose#10 succeeded at 6637 with fuzz 1 (offset 93 lines).
1 out of 10 hunks FAILED -- rejects in file src/adapter.c
patching file src/adapter.h
patching file src/btd.h
Hunk #1 FAILED at 110.
1 out of 1 hunk FAILED -- rejects in file src/btd.h
patching file src/main.c
Hunk #1 succeeded at 78 (offset 1 line).
Hunk #2 succeeded at 801 with fuzz 2 (offset 71 lines).
patching file src/main.conf
Patch 0012-Support-enabling-avdtp-delayReport.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRN-TODO] Create GPVB with Yocto 3.5 Kirkstone

Change-Id: I87dd7c06a0c4621f8e1b9ff75b0c7956fcb3aec3
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Nov 7, 2021
:Release Notes:

:Detailed Notes:
Fixes:
CmdError('quilt --quiltrc TOPDIR/BUILD/work/qemux86-webos-linux/bluez5/5.62-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0012-Support-enabling-avdtp-delayReport.patch
patching file profiles/audio/a2dp.c
Hunk #1 succeeded at 2334 (offset 1 line).
patching file profiles/audio/a2dp.h
patching file profiles/audio/avdtp.c
Hunk #1 succeeded at 469 (offset -1 lines).
patching file profiles/audio/avdtp.h
Hunk #1 succeeded at 311 (offset 3 lines).
patching file profiles/audio/media.c
Hunk webosose#3 succeeded at 2435 (offset 2 lines).
patching file profiles/audio/media.h
patching file src/adapter.c
Hunk #2 succeeded at 266 (offset 40 lines).
Hunk webosose#3 succeeded at 337 (offset 39 lines).
Hunk webosose#4 succeeded at 543 (offset 39 lines).
Hunk webosose#5 succeeded at 3312 with fuzz 2 (offset 42 lines).
Hunk webosose#6 FAILED at 3654.
Hunk webosose#7 succeeded at 5129 (offset 90 lines).
Hunk webosose#8 succeeded at 6588 (offset 93 lines).
Hunk webosose#9 succeeded at 6629 (offset 93 lines).
Hunk webosose#10 succeeded at 6637 with fuzz 1 (offset 93 lines).
1 out of 10 hunks FAILED -- rejects in file src/adapter.c
patching file src/adapter.h
patching file src/btd.h
Hunk #1 FAILED at 110.
1 out of 1 hunk FAILED -- rejects in file src/btd.h
patching file src/main.c
Hunk #1 succeeded at 78 (offset 1 line).
Hunk #2 succeeded at 801 with fuzz 2 (offset 71 lines).
patching file src/main.conf
Patch 0012-Support-enabling-avdtp-delayReport.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRN-TODO] Create GPVB with Yocto 3.5 Kirkstone

Change-Id: I87dd7c06a0c4621f8e1b9ff75b0c7956fcb3aec3
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Nov 26, 2021
:Release Notes:

:Detailed Notes:
Fixes:
CmdError('quilt --quiltrc TOPDIR/BUILD/work/qemux86-webos-linux/bluez5/5.62-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0012-Support-enabling-avdtp-delayReport.patch
patching file profiles/audio/a2dp.c
Hunk #1 succeeded at 2334 (offset 1 line).
patching file profiles/audio/a2dp.h
patching file profiles/audio/avdtp.c
Hunk #1 succeeded at 469 (offset -1 lines).
patching file profiles/audio/avdtp.h
Hunk #1 succeeded at 311 (offset 3 lines).
patching file profiles/audio/media.c
Hunk webosose#3 succeeded at 2435 (offset 2 lines).
patching file profiles/audio/media.h
patching file src/adapter.c
Hunk #2 succeeded at 266 (offset 40 lines).
Hunk webosose#3 succeeded at 337 (offset 39 lines).
Hunk webosose#4 succeeded at 543 (offset 39 lines).
Hunk webosose#5 succeeded at 3312 with fuzz 2 (offset 42 lines).
Hunk webosose#6 FAILED at 3654.
Hunk webosose#7 succeeded at 5129 (offset 90 lines).
Hunk webosose#8 succeeded at 6588 (offset 93 lines).
Hunk webosose#9 succeeded at 6629 (offset 93 lines).
Hunk webosose#10 succeeded at 6637 with fuzz 1 (offset 93 lines).
1 out of 10 hunks FAILED -- rejects in file src/adapter.c
patching file src/adapter.h
patching file src/btd.h
Hunk #1 FAILED at 110.
1 out of 1 hunk FAILED -- rejects in file src/btd.h
patching file src/main.c
Hunk #1 succeeded at 78 (offset 1 line).
Hunk #2 succeeded at 801 with fuzz 2 (offset 71 lines).
patching file src/main.conf
Patch 0012-Support-enabling-avdtp-delayReport.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRN-TODO] Create GPVB with Yocto 3.5 Kirkstone

Change-Id: I87dd7c06a0c4621f8e1b9ff75b0c7956fcb3aec3
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Nov 26, 2021
:Release Notes:

:Detailed Notes:
Fixes:
CmdError('quilt --quiltrc TOPDIR/BUILD/work/qemux86-webos-linux/bluez5/5.62-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0012-Support-enabling-avdtp-delayReport.patch
patching file profiles/audio/a2dp.c
Hunk #1 succeeded at 2334 (offset 1 line).
patching file profiles/audio/a2dp.h
patching file profiles/audio/avdtp.c
Hunk #1 succeeded at 469 (offset -1 lines).
patching file profiles/audio/avdtp.h
Hunk #1 succeeded at 311 (offset 3 lines).
patching file profiles/audio/media.c
Hunk webosose#3 succeeded at 2435 (offset 2 lines).
patching file profiles/audio/media.h
patching file src/adapter.c
Hunk #2 succeeded at 266 (offset 40 lines).
Hunk webosose#3 succeeded at 337 (offset 39 lines).
Hunk webosose#4 succeeded at 543 (offset 39 lines).
Hunk webosose#5 succeeded at 3312 with fuzz 2 (offset 42 lines).
Hunk webosose#6 FAILED at 3654.
Hunk webosose#7 succeeded at 5129 (offset 90 lines).
Hunk webosose#8 succeeded at 6588 (offset 93 lines).
Hunk webosose#9 succeeded at 6629 (offset 93 lines).
Hunk webosose#10 succeeded at 6637 with fuzz 1 (offset 93 lines).
1 out of 10 hunks FAILED -- rejects in file src/adapter.c
patching file src/adapter.h
patching file src/btd.h
Hunk #1 FAILED at 110.
1 out of 1 hunk FAILED -- rejects in file src/btd.h
patching file src/main.c
Hunk #1 succeeded at 78 (offset 1 line).
Hunk #2 succeeded at 801 with fuzz 2 (offset 71 lines).
patching file src/main.conf
Patch 0012-Support-enabling-avdtp-delayReport.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRN-TODO] Create GPVB with Yocto 3.5 Kirkstone

Change-Id: I87dd7c06a0c4621f8e1b9ff75b0c7956fcb3aec3
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Nov 27, 2021
:Release Notes:

:Detailed Notes:
Fixes:
CmdError('quilt --quiltrc TOPDIR/BUILD/work/qemux86-webos-linux/bluez5/5.62-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0012-Support-enabling-avdtp-delayReport.patch
patching file profiles/audio/a2dp.c
Hunk #1 succeeded at 2334 (offset 1 line).
patching file profiles/audio/a2dp.h
patching file profiles/audio/avdtp.c
Hunk #1 succeeded at 469 (offset -1 lines).
patching file profiles/audio/avdtp.h
Hunk #1 succeeded at 311 (offset 3 lines).
patching file profiles/audio/media.c
Hunk webosose#3 succeeded at 2435 (offset 2 lines).
patching file profiles/audio/media.h
patching file src/adapter.c
Hunk #2 succeeded at 266 (offset 40 lines).
Hunk webosose#3 succeeded at 337 (offset 39 lines).
Hunk webosose#4 succeeded at 543 (offset 39 lines).
Hunk webosose#5 succeeded at 3312 with fuzz 2 (offset 42 lines).
Hunk webosose#6 FAILED at 3654.
Hunk webosose#7 succeeded at 5129 (offset 90 lines).
Hunk webosose#8 succeeded at 6588 (offset 93 lines).
Hunk webosose#9 succeeded at 6629 (offset 93 lines).
Hunk webosose#10 succeeded at 6637 with fuzz 1 (offset 93 lines).
1 out of 10 hunks FAILED -- rejects in file src/adapter.c
patching file src/adapter.h
patching file src/btd.h
Hunk #1 FAILED at 110.
1 out of 1 hunk FAILED -- rejects in file src/btd.h
patching file src/main.c
Hunk #1 succeeded at 78 (offset 1 line).
Hunk #2 succeeded at 801 with fuzz 2 (offset 71 lines).
patching file src/main.conf
Patch 0012-Support-enabling-avdtp-delayReport.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRN-TODO] Create GPVB with Yocto 3.5 Kirkstone

Change-Id: I87dd7c06a0c4621f8e1b9ff75b0c7956fcb3aec3
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Nov 29, 2021
:Release Notes:

:Detailed Notes:
Fixes:
CmdError('quilt --quiltrc TOPDIR/BUILD/work/qemux86-webos-linux/bluez5/5.62-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0012-Support-enabling-avdtp-delayReport.patch
patching file profiles/audio/a2dp.c
Hunk #1 succeeded at 2334 (offset 1 line).
patching file profiles/audio/a2dp.h
patching file profiles/audio/avdtp.c
Hunk #1 succeeded at 469 (offset -1 lines).
patching file profiles/audio/avdtp.h
Hunk #1 succeeded at 311 (offset 3 lines).
patching file profiles/audio/media.c
Hunk webosose#3 succeeded at 2435 (offset 2 lines).
patching file profiles/audio/media.h
patching file src/adapter.c
Hunk #2 succeeded at 266 (offset 40 lines).
Hunk webosose#3 succeeded at 337 (offset 39 lines).
Hunk webosose#4 succeeded at 543 (offset 39 lines).
Hunk webosose#5 succeeded at 3312 with fuzz 2 (offset 42 lines).
Hunk webosose#6 FAILED at 3654.
Hunk webosose#7 succeeded at 5129 (offset 90 lines).
Hunk webosose#8 succeeded at 6588 (offset 93 lines).
Hunk webosose#9 succeeded at 6629 (offset 93 lines).
Hunk webosose#10 succeeded at 6637 with fuzz 1 (offset 93 lines).
1 out of 10 hunks FAILED -- rejects in file src/adapter.c
patching file src/adapter.h
patching file src/btd.h
Hunk #1 FAILED at 110.
1 out of 1 hunk FAILED -- rejects in file src/btd.h
patching file src/main.c
Hunk #1 succeeded at 78 (offset 1 line).
Hunk #2 succeeded at 801 with fuzz 2 (offset 71 lines).
patching file src/main.conf
Patch 0012-Support-enabling-avdtp-delayReport.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRN-TODO] Create GPVB with Yocto 3.5 Kirkstone

Change-Id: I87dd7c06a0c4621f8e1b9ff75b0c7956fcb3aec3
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Dec 1, 2021
:Release Notes:

:Detailed Notes:
Fixes:
CmdError('quilt --quiltrc TOPDIR/BUILD/work/qemux86-webos-linux/bluez5/5.62-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0012-Support-enabling-avdtp-delayReport.patch
patching file profiles/audio/a2dp.c
Hunk #1 succeeded at 2334 (offset 1 line).
patching file profiles/audio/a2dp.h
patching file profiles/audio/avdtp.c
Hunk #1 succeeded at 469 (offset -1 lines).
patching file profiles/audio/avdtp.h
Hunk #1 succeeded at 311 (offset 3 lines).
patching file profiles/audio/media.c
Hunk webosose#3 succeeded at 2435 (offset 2 lines).
patching file profiles/audio/media.h
patching file src/adapter.c
Hunk #2 succeeded at 266 (offset 40 lines).
Hunk webosose#3 succeeded at 337 (offset 39 lines).
Hunk webosose#4 succeeded at 543 (offset 39 lines).
Hunk webosose#5 succeeded at 3312 with fuzz 2 (offset 42 lines).
Hunk webosose#6 FAILED at 3654.
Hunk webosose#7 succeeded at 5129 (offset 90 lines).
Hunk webosose#8 succeeded at 6588 (offset 93 lines).
Hunk webosose#9 succeeded at 6629 (offset 93 lines).
Hunk webosose#10 succeeded at 6637 with fuzz 1 (offset 93 lines).
1 out of 10 hunks FAILED -- rejects in file src/adapter.c
patching file src/adapter.h
patching file src/btd.h
Hunk #1 FAILED at 110.
1 out of 1 hunk FAILED -- rejects in file src/btd.h
patching file src/main.c
Hunk #1 succeeded at 78 (offset 1 line).
Hunk #2 succeeded at 801 with fuzz 2 (offset 71 lines).
patching file src/main.conf
Patch 0012-Support-enabling-avdtp-delayReport.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRN-TODO] Create GPVB with Yocto 3.5 Kirkstone

Change-Id: I87dd7c06a0c4621f8e1b9ff75b0c7956fcb3aec3
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Dec 2, 2021
:Release Notes:

:Detailed Notes:
Fixes:
CmdError('quilt --quiltrc TOPDIR/BUILD/work/qemux86-webos-linux/bluez5/5.62-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0012-Support-enabling-avdtp-delayReport.patch
patching file profiles/audio/a2dp.c
Hunk #1 succeeded at 2334 (offset 1 line).
patching file profiles/audio/a2dp.h
patching file profiles/audio/avdtp.c
Hunk #1 succeeded at 469 (offset -1 lines).
patching file profiles/audio/avdtp.h
Hunk #1 succeeded at 311 (offset 3 lines).
patching file profiles/audio/media.c
Hunk webosose#3 succeeded at 2435 (offset 2 lines).
patching file profiles/audio/media.h
patching file src/adapter.c
Hunk #2 succeeded at 266 (offset 40 lines).
Hunk webosose#3 succeeded at 337 (offset 39 lines).
Hunk webosose#4 succeeded at 543 (offset 39 lines).
Hunk webosose#5 succeeded at 3312 with fuzz 2 (offset 42 lines).
Hunk webosose#6 FAILED at 3654.
Hunk webosose#7 succeeded at 5129 (offset 90 lines).
Hunk webosose#8 succeeded at 6588 (offset 93 lines).
Hunk webosose#9 succeeded at 6629 (offset 93 lines).
Hunk webosose#10 succeeded at 6637 with fuzz 1 (offset 93 lines).
1 out of 10 hunks FAILED -- rejects in file src/adapter.c
patching file src/adapter.h
patching file src/btd.h
Hunk #1 FAILED at 110.
1 out of 1 hunk FAILED -- rejects in file src/btd.h
patching file src/main.c
Hunk #1 succeeded at 78 (offset 1 line).
Hunk #2 succeeded at 801 with fuzz 2 (offset 71 lines).
patching file src/main.conf
Patch 0012-Support-enabling-avdtp-delayReport.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRN-TODO] Create GPVB with Yocto 3.5 Kirkstone

Change-Id: I87dd7c06a0c4621f8e1b9ff75b0c7956fcb3aec3
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Dec 27, 2021
:Release Notes:
Resolve conflicts mostly from these 2 upstream changes:
commit c4ef8f8d048a30304ba4cb1b83bfe39b55c13ba7
Author: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Date:   Wed Oct 28 14:53:36 2020 -0700

    core: Rename hcid.h to btd.h

    Since we use btd term for daemon APIs it makes sense to use it also
    for the header name instead of hcid.

commit 01d035d33886b13cd6dc361f994ce22ad47daf61
Author: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Date:   Wed Oct 28 14:50:00 2020 -0700

    core: Rename main_opts to btd_opts

    Use btd_ prefix since this is a daemon API.

:Detailed Notes:
Fixes:
NOTE: --- Patch fuzz start ---
Applying patch 0011-Fix-volume-level-notification-not-appearing-after-12.patch
patching file profiles/audio/media.c
Hunk #1 succeeded at 1235 (offset 1 line).
patching file profiles/audio/transport.c
Hunk #1 succeeded at 656 (offset -13 lines).
Hunk #2 succeeded at 932 with fuzz 1 (offset -10 lines).

Now at patch 0011-Fix-volume-level-notification-not-appearing-after-12.patch

NOTE: Applying patch '0012-Support-enabling-avdtp-delayReport.patch' (meta-webosose/meta-webos/recipes-connectivity/bluez5/bluez5/0012-Support-enabling-avdtp-delayReport.patch)
ERROR: Command Error: 'quilt --quiltrc TOPDIR/BUILD/work/raspberrypi3-webos-linux-gnueabi/bluez5/5.56-r0/recipe-sysroot-native/etc/quiltrc push' exited with 0  Output:
stdout: Applying patch 0012-Support-enabling-avdtp-delayReport.patch
patching file profiles/audio/a2dp.c
Hunk #1 succeeded at 2194 (offset 34 lines).
patching file profiles/audio/a2dp.h
Hunk #1 succeeded at 77 (offset -13 lines).
patching file profiles/audio/avdtp.c
Hunk #1 succeeded at 469 (offset -9 lines).
patching file profiles/audio/avdtp.h
Hunk #1 succeeded at 306 (offset -8 lines).
patching file profiles/audio/media.c
Hunk #1 succeeded at 120 (offset -12 lines).
Hunk #2 succeeded at 813 (offset 1 line).
Hunk webosose#3 succeeded at 2430 (offset 1 line).
patching file profiles/audio/media.h
Hunk #1 succeeded at 10 (offset -13 lines).
Hunk #2 succeeded at 23 (offset -13 lines).
patching file src/adapter.c
Hunk #1 FAILED at 78.
Hunk #2 succeeded at 224 (offset -19 lines).
Hunk webosose#3 succeeded at 291 (offset -15 lines).
Hunk webosose#4 succeeded at 497 with fuzz 2 (offset -15 lines).
Hunk webosose#5 succeeded at 3194 with fuzz 2 (offset -17 lines).
Hunk webosose#6 succeeded at 3539 (offset 22 lines).
Hunk webosose#7 succeeded at 4867 (offset -6 lines).
Hunk webosose#8 succeeded at 6319 (offset -6 lines).
Hunk webosose#9 FAILED at 6366.
Hunk webosose#10 succeeded at 6367 (offset -6 lines).
2 out of 10 hunks FAILED -- rejects in file src/adapter.c
patching file src/adapter.h
Hunk #1 succeeded at 25 (offset -8 lines).
Hunk #2 succeeded at 69 (offset -8 lines).
can't find file to patch at input line 302
Perhaps you used the wrong -p or --strip option?
The text leading up to this was:
  --------------------------
  |diff --git a/src/hcid.h b/src/hcid.h
  |index 3624ba6ea..8f77184ed 100644
  |--- a/src/hcid.h
  |+++ b/src/hcid.h
  --------------------------
No file to patch.  Skipping patch.
1 out of 1 hunk ignored
patching file src/main.c
Hunk #1 succeeded at 76 (offset -12 lines).
Hunk #2 succeeded at 709 with fuzz 2 (offset 74 lines).
patching file src/main.conf
Patch 0012-Support-enabling-avdtp-delayReport.patch does not apply (enforce with -f)

meta-webos/recipes-connectivity/bluez5/bluez5/0029-Fix-provision-failed-issue.patch
this patch isn't webos specific, it's backport of 2 commits from upstream:
bluez/bluez@faa1f74
bluez/bluez@1f4ec8f

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[PLAT-124341] Create GPVB with Yocto 3.3 Hardknott

Change-Id: I7c7d06574aac0c4595a76dc4d81d2c8e4d6df18d
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Dec 27, 2021
:Release Notes:

:Detailed Notes:
Fixes:
ERROR: bluez5-5.59-r0 do_patch: Command Error: 'quilt --quiltrc /jenkins/mjansa/build/ros/webos-noetic-honister/tmp-glibc/work/raspberrypi4-webos-linux-gnueabi/bluez5/5.59-r0/recipe-sysroot-native/etc/quiltrc push' exited with 0  Output:
stdout: Applying patch 0012-Support-enabling-avdtp-delayReport.patch
patching file profiles/audio/a2dp.c
Hunk #1 succeeded at 2195 (offset 1 line).
patching file profiles/audio/a2dp.h
patching file profiles/audio/avdtp.c
Hunk #1 succeeded at 470 (offset 1 line).
patching file profiles/audio/avdtp.h
patching file profiles/audio/media.c
patching file profiles/audio/media.h
patching file src/adapter.c
Hunk #1 succeeded at 68 (offset 1 line).
Hunk #2 succeeded at 226 (offset 1 line).
Hunk webosose#3 succeeded at 295 (offset 3 lines).
Hunk webosose#4 succeeded at 501 (offset 3 lines).
Hunk webosose#5 succeeded at 3254 (offset 11 lines).
Hunk webosose#6 succeeded at 3551 (offset 11 lines).
Hunk webosose#7 succeeded at 4880 (offset 12 lines).
Hunk webosose#8 succeeded at 6332 (offset 12 lines).
Hunk webosose#9 succeeded at 6373 (offset 12 lines).
Hunk webosose#10 succeeded at 6381 (offset 12 lines).
patching file src/adapter.h
patching file src/btd.h
Hunk #1 FAILED at 105.
1 out of 1 hunk FAILED -- rejects in file src/btd.h
patching file src/main.c
Hunk #1 succeeded at 77 (offset 1 line).
Hunk #2 succeeded at 729 with fuzz 2 (offset 20 lines).
patching file src/main.conf
Patch 0012-Support-enabling-avdtp-delayReport.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[PLAT-141293] Create GPVB with Yocto 3.4 Honister
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Dec 27, 2021
:Release Notes:

:Detailed Notes:
Fixes:
ERROR: bluez5-5.61-r0 do_patch: Command Error: 'quilt --quiltrc /jenkins/home/anaconda/build-webos-auto-honister/build/BUILD/work/sa8155-webos-linux/bluez5/5.61-r0/recipe-sysroot-native/etc/quiltrc push' exited with 0  Output:
stdout: Applying patch 0012-Support-enabling-avdtp-delayReport.patch
patching file profiles/audio/a2dp.c
Hunk #1 succeeded at 2333 (offset 138 lines).
patching file profiles/audio/a2dp.h
patching file profiles/audio/avdtp.c
patching file profiles/audio/avdtp.h
Hunk #1 succeeded at 308 (offset 2 lines).
patching file profiles/audio/media.c
Hunk webosose#3 succeeded at 2433 (offset 3 lines).
patching file profiles/audio/media.h
patching file src/adapter.c
Hunk webosose#3 succeeded at 298 (offset 3 lines).
Hunk webosose#4 succeeded at 504 (offset 3 lines).
Hunk webosose#5 succeeded at 3270 (offset 16 lines).
Hunk webosose#6 succeeded at 3654 (offset 103 lines).
Hunk webosose#7 succeeded at 5040 (offset 160 lines).
Hunk webosose#8 succeeded at 6496 (offset 164 lines).
Hunk webosose#9 succeeded at 6537 (offset 164 lines).
Hunk webosose#10 succeeded at 6545 (offset 164 lines).
patching file src/adapter.h
Hunk #1 FAILED at 25.
Hunk #2 succeeded at 69 (offset 1 line).
1 out of 2 hunks FAILED -- rejects in file src/adapter.h
patching file src/btd.h
patching file src/main.c
Hunk #2 succeeded at 730 (offset 1 line).
patching file src/main.conf
Patch 0012-Support-enabling-avdtp-delayReport.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[PLAT-141293] Create GPVB with Yocto 3.4 Honister

Change-Id: Iad34978c85d0bf4b8dab12a06489c678523ddad3
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Dec 27, 2021
:Release Notes:

:Detailed Notes:
Fixes:
CmdError('quilt --quiltrc TOPDIR/BUILD/work/qemux86-webos-linux/bluez5/5.62-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0012-Support-enabling-avdtp-delayReport.patch
patching file profiles/audio/a2dp.c
Hunk #1 succeeded at 2334 (offset 1 line).
patching file profiles/audio/a2dp.h
patching file profiles/audio/avdtp.c
Hunk #1 succeeded at 469 (offset -1 lines).
patching file profiles/audio/avdtp.h
Hunk #1 succeeded at 311 (offset 3 lines).
patching file profiles/audio/media.c
Hunk webosose#3 succeeded at 2435 (offset 2 lines).
patching file profiles/audio/media.h
patching file src/adapter.c
Hunk #2 succeeded at 266 (offset 40 lines).
Hunk webosose#3 succeeded at 337 (offset 39 lines).
Hunk webosose#4 succeeded at 543 (offset 39 lines).
Hunk webosose#5 succeeded at 3312 with fuzz 2 (offset 42 lines).
Hunk webosose#6 FAILED at 3654.
Hunk webosose#7 succeeded at 5129 (offset 90 lines).
Hunk webosose#8 succeeded at 6588 (offset 93 lines).
Hunk webosose#9 succeeded at 6629 (offset 93 lines).
Hunk webosose#10 succeeded at 6637 with fuzz 1 (offset 93 lines).
1 out of 10 hunks FAILED -- rejects in file src/adapter.c
patching file src/adapter.h
patching file src/btd.h
Hunk #1 FAILED at 110.
1 out of 1 hunk FAILED -- rejects in file src/btd.h
patching file src/main.c
Hunk #1 succeeded at 78 (offset 1 line).
Hunk #2 succeeded at 801 with fuzz 2 (offset 71 lines).
patching file src/main.conf
Patch 0012-Support-enabling-avdtp-delayReport.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRN-TODO] Create GPVB with Yocto 3.5 Kirkstone

Change-Id: I87dd7c06a0c4621f8e1b9ff75b0c7956fcb3aec3
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Dec 28, 2021
:Release Notes:
Resolve conflicts mostly from these 2 upstream changes:
commit c4ef8f8d048a30304ba4cb1b83bfe39b55c13ba7
Author: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Date:   Wed Oct 28 14:53:36 2020 -0700

    core: Rename hcid.h to btd.h

    Since we use btd term for daemon APIs it makes sense to use it also
    for the header name instead of hcid.

commit 01d035d33886b13cd6dc361f994ce22ad47daf61
Author: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Date:   Wed Oct 28 14:50:00 2020 -0700

    core: Rename main_opts to btd_opts

    Use btd_ prefix since this is a daemon API.

:Detailed Notes:
Fixes:
NOTE: --- Patch fuzz start ---
Applying patch 0011-Fix-volume-level-notification-not-appearing-after-12.patch
patching file profiles/audio/media.c
Hunk #1 succeeded at 1235 (offset 1 line).
patching file profiles/audio/transport.c
Hunk #1 succeeded at 656 (offset -13 lines).
Hunk #2 succeeded at 932 with fuzz 1 (offset -10 lines).

Now at patch 0011-Fix-volume-level-notification-not-appearing-after-12.patch

NOTE: Applying patch '0012-Support-enabling-avdtp-delayReport.patch' (meta-webosose/meta-webos/recipes-connectivity/bluez5/bluez5/0012-Support-enabling-avdtp-delayReport.patch)
ERROR: Command Error: 'quilt --quiltrc TOPDIR/BUILD/work/raspberrypi3-webos-linux-gnueabi/bluez5/5.56-r0/recipe-sysroot-native/etc/quiltrc push' exited with 0  Output:
stdout: Applying patch 0012-Support-enabling-avdtp-delayReport.patch
patching file profiles/audio/a2dp.c
Hunk #1 succeeded at 2194 (offset 34 lines).
patching file profiles/audio/a2dp.h
Hunk #1 succeeded at 77 (offset -13 lines).
patching file profiles/audio/avdtp.c
Hunk #1 succeeded at 469 (offset -9 lines).
patching file profiles/audio/avdtp.h
Hunk #1 succeeded at 306 (offset -8 lines).
patching file profiles/audio/media.c
Hunk #1 succeeded at 120 (offset -12 lines).
Hunk #2 succeeded at 813 (offset 1 line).
Hunk webosose#3 succeeded at 2430 (offset 1 line).
patching file profiles/audio/media.h
Hunk #1 succeeded at 10 (offset -13 lines).
Hunk #2 succeeded at 23 (offset -13 lines).
patching file src/adapter.c
Hunk #1 FAILED at 78.
Hunk #2 succeeded at 224 (offset -19 lines).
Hunk webosose#3 succeeded at 291 (offset -15 lines).
Hunk webosose#4 succeeded at 497 with fuzz 2 (offset -15 lines).
Hunk webosose#5 succeeded at 3194 with fuzz 2 (offset -17 lines).
Hunk webosose#6 succeeded at 3539 (offset 22 lines).
Hunk webosose#7 succeeded at 4867 (offset -6 lines).
Hunk webosose#8 succeeded at 6319 (offset -6 lines).
Hunk webosose#9 FAILED at 6366.
Hunk webosose#10 succeeded at 6367 (offset -6 lines).
2 out of 10 hunks FAILED -- rejects in file src/adapter.c
patching file src/adapter.h
Hunk #1 succeeded at 25 (offset -8 lines).
Hunk #2 succeeded at 69 (offset -8 lines).
can't find file to patch at input line 302
Perhaps you used the wrong -p or --strip option?
The text leading up to this was:
  --------------------------
  |diff --git a/src/hcid.h b/src/hcid.h
  |index 3624ba6ea..8f77184ed 100644
  |--- a/src/hcid.h
  |+++ b/src/hcid.h
  --------------------------
No file to patch.  Skipping patch.
1 out of 1 hunk ignored
patching file src/main.c
Hunk #1 succeeded at 76 (offset -12 lines).
Hunk #2 succeeded at 709 with fuzz 2 (offset 74 lines).
patching file src/main.conf
Patch 0012-Support-enabling-avdtp-delayReport.patch does not apply (enforce with -f)

meta-webos/recipes-connectivity/bluez5/bluez5/0029-Fix-provision-failed-issue.patch
this patch isn't webos specific, it's backport of 2 commits from upstream:
bluez/bluez@faa1f74
bluez/bluez@1f4ec8f

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[PLAT-124341] Create GPVB with Yocto 3.3 Hardknott

Change-Id: I7c7d06574aac0c4595a76dc4d81d2c8e4d6df18d
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Dec 28, 2021
:Release Notes:

:Detailed Notes:
Fixes:
ERROR: bluez5-5.59-r0 do_patch: Command Error: 'quilt --quiltrc /jenkins/mjansa/build/ros/webos-noetic-honister/tmp-glibc/work/raspberrypi4-webos-linux-gnueabi/bluez5/5.59-r0/recipe-sysroot-native/etc/quiltrc push' exited with 0  Output:
stdout: Applying patch 0012-Support-enabling-avdtp-delayReport.patch
patching file profiles/audio/a2dp.c
Hunk #1 succeeded at 2195 (offset 1 line).
patching file profiles/audio/a2dp.h
patching file profiles/audio/avdtp.c
Hunk #1 succeeded at 470 (offset 1 line).
patching file profiles/audio/avdtp.h
patching file profiles/audio/media.c
patching file profiles/audio/media.h
patching file src/adapter.c
Hunk #1 succeeded at 68 (offset 1 line).
Hunk #2 succeeded at 226 (offset 1 line).
Hunk webosose#3 succeeded at 295 (offset 3 lines).
Hunk webosose#4 succeeded at 501 (offset 3 lines).
Hunk webosose#5 succeeded at 3254 (offset 11 lines).
Hunk webosose#6 succeeded at 3551 (offset 11 lines).
Hunk webosose#7 succeeded at 4880 (offset 12 lines).
Hunk webosose#8 succeeded at 6332 (offset 12 lines).
Hunk webosose#9 succeeded at 6373 (offset 12 lines).
Hunk webosose#10 succeeded at 6381 (offset 12 lines).
patching file src/adapter.h
patching file src/btd.h
Hunk #1 FAILED at 105.
1 out of 1 hunk FAILED -- rejects in file src/btd.h
patching file src/main.c
Hunk #1 succeeded at 77 (offset 1 line).
Hunk #2 succeeded at 729 with fuzz 2 (offset 20 lines).
patching file src/main.conf
Patch 0012-Support-enabling-avdtp-delayReport.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[PLAT-141293] Create GPVB with Yocto 3.4 Honister
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Dec 28, 2021
:Release Notes:

:Detailed Notes:
Fixes:
ERROR: bluez5-5.61-r0 do_patch: Command Error: 'quilt --quiltrc /jenkins/home/anaconda/build-webos-auto-honister/build/BUILD/work/sa8155-webos-linux/bluez5/5.61-r0/recipe-sysroot-native/etc/quiltrc push' exited with 0  Output:
stdout: Applying patch 0012-Support-enabling-avdtp-delayReport.patch
patching file profiles/audio/a2dp.c
Hunk #1 succeeded at 2333 (offset 138 lines).
patching file profiles/audio/a2dp.h
patching file profiles/audio/avdtp.c
patching file profiles/audio/avdtp.h
Hunk #1 succeeded at 308 (offset 2 lines).
patching file profiles/audio/media.c
Hunk webosose#3 succeeded at 2433 (offset 3 lines).
patching file profiles/audio/media.h
patching file src/adapter.c
Hunk webosose#3 succeeded at 298 (offset 3 lines).
Hunk webosose#4 succeeded at 504 (offset 3 lines).
Hunk webosose#5 succeeded at 3270 (offset 16 lines).
Hunk webosose#6 succeeded at 3654 (offset 103 lines).
Hunk webosose#7 succeeded at 5040 (offset 160 lines).
Hunk webosose#8 succeeded at 6496 (offset 164 lines).
Hunk webosose#9 succeeded at 6537 (offset 164 lines).
Hunk webosose#10 succeeded at 6545 (offset 164 lines).
patching file src/adapter.h
Hunk #1 FAILED at 25.
Hunk #2 succeeded at 69 (offset 1 line).
1 out of 2 hunks FAILED -- rejects in file src/adapter.h
patching file src/btd.h
patching file src/main.c
Hunk #2 succeeded at 730 (offset 1 line).
patching file src/main.conf
Patch 0012-Support-enabling-avdtp-delayReport.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[PLAT-141293] Create GPVB with Yocto 3.4 Honister

Change-Id: Iad34978c85d0bf4b8dab12a06489c678523ddad3
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Dec 28, 2021
:Release Notes:

:Detailed Notes:
Fixes:
CmdError('quilt --quiltrc TOPDIR/BUILD/work/qemux86-webos-linux/bluez5/5.62-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0012-Support-enabling-avdtp-delayReport.patch
patching file profiles/audio/a2dp.c
Hunk #1 succeeded at 2334 (offset 1 line).
patching file profiles/audio/a2dp.h
patching file profiles/audio/avdtp.c
Hunk #1 succeeded at 469 (offset -1 lines).
patching file profiles/audio/avdtp.h
Hunk #1 succeeded at 311 (offset 3 lines).
patching file profiles/audio/media.c
Hunk webosose#3 succeeded at 2435 (offset 2 lines).
patching file profiles/audio/media.h
patching file src/adapter.c
Hunk #2 succeeded at 266 (offset 40 lines).
Hunk webosose#3 succeeded at 337 (offset 39 lines).
Hunk webosose#4 succeeded at 543 (offset 39 lines).
Hunk webosose#5 succeeded at 3312 with fuzz 2 (offset 42 lines).
Hunk webosose#6 FAILED at 3654.
Hunk webosose#7 succeeded at 5129 (offset 90 lines).
Hunk webosose#8 succeeded at 6588 (offset 93 lines).
Hunk webosose#9 succeeded at 6629 (offset 93 lines).
Hunk webosose#10 succeeded at 6637 with fuzz 1 (offset 93 lines).
1 out of 10 hunks FAILED -- rejects in file src/adapter.c
patching file src/adapter.h
patching file src/btd.h
Hunk #1 FAILED at 110.
1 out of 1 hunk FAILED -- rejects in file src/btd.h
patching file src/main.c
Hunk #1 succeeded at 78 (offset 1 line).
Hunk #2 succeeded at 801 with fuzz 2 (offset 71 lines).
patching file src/main.conf
Patch 0012-Support-enabling-avdtp-delayReport.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRN-TODO] Create GPVB with Yocto 3.5 Kirkstone

Change-Id: I87dd7c06a0c4621f8e1b9ff75b0c7956fcb3aec3
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Feb 7, 2022
:Release Notes:

:Detailed Notes:
Fixes:
CmdError('quilt --quiltrc TOPDIR/BUILD/work/qemux86-webos-linux/bluez5/5.62-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0012-Support-enabling-avdtp-delayReport.patch
patching file profiles/audio/a2dp.c
Hunk #1 succeeded at 2334 (offset 1 line).
patching file profiles/audio/a2dp.h
patching file profiles/audio/avdtp.c
Hunk #1 succeeded at 469 (offset -1 lines).
patching file profiles/audio/avdtp.h
Hunk #1 succeeded at 311 (offset 3 lines).
patching file profiles/audio/media.c
Hunk webosose#3 succeeded at 2435 (offset 2 lines).
patching file profiles/audio/media.h
patching file src/adapter.c
Hunk #2 succeeded at 266 (offset 40 lines).
Hunk webosose#3 succeeded at 337 (offset 39 lines).
Hunk webosose#4 succeeded at 543 (offset 39 lines).
Hunk webosose#5 succeeded at 3312 with fuzz 2 (offset 42 lines).
Hunk webosose#6 FAILED at 3654.
Hunk webosose#7 succeeded at 5129 (offset 90 lines).
Hunk webosose#8 succeeded at 6588 (offset 93 lines).
Hunk webosose#9 succeeded at 6629 (offset 93 lines).
Hunk webosose#10 succeeded at 6637 with fuzz 1 (offset 93 lines).
1 out of 10 hunks FAILED -- rejects in file src/adapter.c
patching file src/adapter.h
patching file src/btd.h
Hunk #1 FAILED at 110.
1 out of 1 hunk FAILED -- rejects in file src/btd.h
patching file src/main.c
Hunk #1 succeeded at 78 (offset 1 line).
Hunk #2 succeeded at 801 with fuzz 2 (offset 71 lines).
patching file src/main.conf
Patch 0012-Support-enabling-avdtp-delayReport.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRN-TODO] Create GPVB with Yocto 3.5 Kirkstone

Change-Id: I87dd7c06a0c4621f8e1b9ff75b0c7956fcb3aec3
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Feb 18, 2022
:Release Notes:

:Detailed Notes:
Fixes:
CmdError('quilt --quiltrc TOPDIR/BUILD/work/qemux86-webos-linux/bluez5/5.62-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0012-Support-enabling-avdtp-delayReport.patch
patching file profiles/audio/a2dp.c
Hunk #1 succeeded at 2334 (offset 1 line).
patching file profiles/audio/a2dp.h
patching file profiles/audio/avdtp.c
Hunk #1 succeeded at 469 (offset -1 lines).
patching file profiles/audio/avdtp.h
Hunk #1 succeeded at 311 (offset 3 lines).
patching file profiles/audio/media.c
Hunk webosose#3 succeeded at 2435 (offset 2 lines).
patching file profiles/audio/media.h
patching file src/adapter.c
Hunk #2 succeeded at 266 (offset 40 lines).
Hunk webosose#3 succeeded at 337 (offset 39 lines).
Hunk webosose#4 succeeded at 543 (offset 39 lines).
Hunk webosose#5 succeeded at 3312 with fuzz 2 (offset 42 lines).
Hunk webosose#6 FAILED at 3654.
Hunk webosose#7 succeeded at 5129 (offset 90 lines).
Hunk webosose#8 succeeded at 6588 (offset 93 lines).
Hunk webosose#9 succeeded at 6629 (offset 93 lines).
Hunk webosose#10 succeeded at 6637 with fuzz 1 (offset 93 lines).
1 out of 10 hunks FAILED -- rejects in file src/adapter.c
patching file src/adapter.h
patching file src/btd.h
Hunk #1 FAILED at 110.
1 out of 1 hunk FAILED -- rejects in file src/btd.h
patching file src/main.c
Hunk #1 succeeded at 78 (offset 1 line).
Hunk #2 succeeded at 801 with fuzz 2 (offset 71 lines).
patching file src/main.conf
Patch 0012-Support-enabling-avdtp-delayReport.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRN-TODO] Create GPVB with Yocto 3.5 Kirkstone

Change-Id: I87dd7c06a0c4621f8e1b9ff75b0c7956fcb3aec3
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Feb 18, 2022
:Release Notes:

:Detailed Notes:
Fixes:
ERROR: bluez5-5.63-r0 do_patch: Applying patch '0007-recievePassThrough-commad-support-required-for-webos.patch' on target directory '/OE/lge/build/webos/kirkstone/BUILD/work/qemux86_64-webos-linux/bluez5/5.63-r0/bluez-5.63'
CmdError('quilt --quiltrc /OE/lge/build/webos/kirkstone/BUILD/work/qemux86_64-webos-linux/bluez5/5.63-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0007-recievePassThrough-commad-support-required-for-webos.patch
patching file profiles/audio/avctp.c
patching file src/device.c
Hunk #1 succeeded at 172 (offset 1 line).
Hunk #2 FAILED at 279.
Hunk webosose#3 succeeded at 1388 (offset 77 lines).
Hunk webosose#4 succeeded at 1418 (offset 77 lines).
Hunk webosose#5 succeeded at 1432 (offset 77 lines).
Hunk webosose#6 succeeded at 2045 (offset 105 lines).
Hunk webosose#7 succeeded at 3263 (offset 119 lines).
Hunk webosose#8 succeeded at 4501 (offset 165 lines).
1 out of 8 hunks FAILED -- rejects in file src/device.c
patching file src/device.h
Hunk #1 succeeded at 180 (offset 1 line).
Patch 0007-recievePassThrough-commad-support-required-for-webos.patch does not apply (enforce with -f)

stderr: ')
ERROR: Logfile of failure stored in: /OE/lge/build/webos/kirkstone/BUILD/work/qemux86_64-webos-linux/bluez5/5.63-r0/temp/log.do_patch.405525

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRN-9820] Create GPVB with Yocto 3.5 Kirkstone

Change-Id: Ib353e654e5c18bbbe2494526e53784a6e2bb2eaf
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Feb 18, 2022
:Release Notes:

:Detailed Notes:
Fixes:
NOTE: recipe wpa-supplicant-2.10-r0: task do_patch: Started
ERROR: wpa-supplicant-2.10-r0 do_patch: Applying patch '0001-Add-p2p-changes.patch' on target directory '/OE/lge/build/webos/kirkstone/BUILD/work/qemux86_64-webos-linux/wpa-supplicant/2.10-r0/wpa_supplicant-2.10'
CmdError('quilt --quiltrc /OE/lge/build/webos/kirkstone/BUILD/work/qemux86_64-webos-linux/wpa-supplicant/2.10-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0001-Add-p2p-changes.patch
patching file src/ap/drv_callbacks.c
Hunk #1 succeeded at 202 (offset 27 lines).
patching file src/ap/hostapd.c
Hunk #1 succeeded at 366 (offset 14 lines).
Hunk #2 succeeded at 2382 (offset 147 lines).
Hunk webosose#3 FAILED at 3582.
1 out of 3 hunks FAILED -- rejects in file src/ap/hostapd.c
patching file src/ap/hostapd.h
Hunk #1 succeeded at 273 (offset 10 lines).
Hunk #2 succeeded at 300 (offset 10 lines).
Hunk webosose#3 succeeded at 694 (offset 37 lines).
patching file src/ap/sta_info.c
Hunk #1 succeeded at 1268 (offset 45 lines).
Hunk #2 succeeded at 1295 (offset 45 lines).
Hunk webosose#3 succeeded at 1342 (offset 45 lines).
patching file src/ap/wpa_auth.c
Hunk #1 succeeded at 729 (offset 44 lines).
Hunk #2 succeeded at 744 with fuzz 1 (offset 45 lines).
patching file src/common/ieee802_11_defs.h
Hunk #1 succeeded at 1715 (offset 68 lines).
patching file src/p2p/p2p.c
Hunk #1 succeeded at 1319 (offset 5 lines).
Hunk #2 FAILED at 1322.
Hunk webosose#3 succeeded at 1647 (offset 20 lines).
Hunk webosose#4 succeeded at 1758 (offset 20 lines).
Hunk webosose#5 succeeded at 1797 (offset 20 lines).
Hunk webosose#6 succeeded at 3005 (offset 28 lines).
Hunk webosose#7 succeeded at 3280 (offset 28 lines).
Hunk webosose#8 succeeded at 4646 (offset 44 lines).
Hunk webosose#9 succeeded at 4665 (offset 44 lines).
Hunk webosose#10 succeeded at 4700 (offset 44 lines).
Hunk webosose#11 succeeded at 4811 (offset 44 lines).
1 out of 11 hunks FAILED -- rejects in file src/p2p/p2p.c
patching file src/p2p/p2p.h
Hunk #1 succeeded at 377 (offset 2 lines).
patching file src/p2p/p2p_build.c
patching file src/p2p/p2p_go_neg.c
Hunk #2 succeeded at 475 with fuzz 1 (offset 9 lines).
Hunk webosose#3 succeeded at 511 (offset 9 lines).
Hunk webosose#4 succeeded at 852 (offset 9 lines).
patching file src/p2p/p2p_group.c
patching file src/p2p/p2p_invitation.c
patching file src/p2p/p2p_pd.c
patching file src/wps/wps_attr_build.c
Hunk #2 succeeded at 209 (offset 2 lines).
patching file src/wps/wps_defs.h
patching file src/wps/wps_i.h
patching file wpa_supplicant/ap.c
Hunk #1 succeeded at 832 (offset 205 lines).
patching file wpa_supplicant/dbus/dbus_new.c
Hunk #2 succeeded at 1566 (offset 93 lines).
Hunk webosose#3 succeeded at 1611 (offset 93 lines).
Hunk webosose#4 succeeded at 1806 (offset 93 lines).
Hunk webosose#5 succeeded at 1835 (offset 93 lines).
Hunk webosose#6 succeeded at 1846 (offset 93 lines).
Hunk webosose#7 succeeded at 1936 (offset 93 lines).
Hunk webosose#8 succeeded at 1965 (offset 93 lines).
Hunk webosose#9 succeeded at 1976 (offset 93 lines).
Hunk webosose#10 succeeded at 2286 (offset 93 lines).
Hunk webosose#11 succeeded at 2313 (offset 93 lines).
Hunk webosose#12 succeeded at 2334 (offset 93 lines).
Hunk webosose#13 succeeded at 2345 (offset 93 lines).
Hunk webosose#14 succeeded at 3947 (offset 106 lines).
Hunk webosose#15 succeeded at 4621 (offset 718 lines).
Hunk webosose#16 succeeded at 4948 (offset 151 lines).
patching file wpa_supplicant/dbus/dbus_new.h
Hunk #1 succeeded at 213 (offset 5 lines).
Hunk #2 succeeded at 229 (offset 5 lines).
Hunk webosose#3 succeeded at 238 (offset 5 lines).
Hunk webosose#4 succeeded at 259 (offset 5 lines).
Hunk webosose#5 succeeded at 452 (offset 12 lines).
Hunk webosose#6 succeeded at 526 (offset 12 lines).
Hunk webosose#7 succeeded at 555 (offset 12 lines).
patching file wpa_supplicant/dbus/dbus_new_handlers.c
Hunk #1 succeeded at 3481 (offset 390 lines).
Hunk #2 succeeded at 5557 (offset 603 lines).
patching file wpa_supplicant/dbus/dbus_new_handlers.h
Hunk #1 succeeded at 168 (offset 16 lines).
patching file wpa_supplicant/dbus/dbus_new_handlers_p2p.c
Hunk #1 succeeded at 1219 (offset 53 lines).
Hunk #2 succeeded at 1930 (offset 53 lines).
patching file wpa_supplicant/dbus/dbus_new_handlers_p2p.h
patching file wpa_supplicant/notify.c
Hunk #1 succeeded at 616 (offset 12 lines).
Hunk #2 succeeded at 711 (offset 12 lines).
Hunk webosose#3 succeeded at 738 (offset 12 lines).
Hunk webosose#4 succeeded at 750 (offset 12 lines).
Hunk webosose#5 succeeded at 762 (offset 12 lines).
Hunk webosose#6 succeeded at 787 (offset 12 lines).
Hunk webosose#7 succeeded at 801 (offset 12 lines).
Hunk webosose#8 succeeded at 910 (offset 13 lines).
patching file wpa_supplicant/notify.h
Hunk #1 succeeded at 92 (offset 1 line).
Hunk #2 succeeded at 121 (offset 1 line).
Hunk webosose#3 succeeded at 147 (offset 1 line).
patching file wpa_supplicant/p2p_supplicant.c
Hunk #1 succeeded at 1455 (offset 58 lines).
Hunk #2 succeeded at 1890 (offset 58 lines).
Hunk webosose#3 succeeded at 2124 (offset 159 lines).
Hunk webosose#4 succeeded at 3254 with fuzz 2 (offset 164 lines).
Hunk webosose#5 succeeded at 3273 (offset 169 lines).
Hunk webosose#6 succeeded at 3304 (offset 169 lines).
Hunk webosose#7 succeeded at 3318 (offset 169 lines).
Hunk webosose#8 succeeded at 6912 (offset 493 lines).
Hunk webosose#9 succeeded at 7393 (offset 498 lines).
Hunk webosose#10 succeeded at 7800 (offset 506 lines).
Hunk webosose#11 succeeded at 8849 (offset 509 lines).
Hunk webosose#12 succeeded at 10123 (offset 527 lines).
patching file wpa_supplicant/p2p_supplicant.h
Hunk #1 succeeded at 221 (offset 9 lines).
patching file wpa_supplicant/wpa_supplicant.c
Hunk #1 succeeded at 130 with fuzz 2 (offset 4 lines).
Hunk #2 succeeded at 8232 (offset 1006 lines).
Hunk webosose#3 succeeded at 8260 (offset 1006 lines).
Patch 0001-Add-p2p-changes.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRN-9820] Create GPVB with Yocto 3.5 Kirkstone

Change-Id: I13b8826147192db98046877f30958ec0489180c1
shr-project added a commit to shr-project/meta-webosose that referenced this pull request Feb 18, 2022
:Release Notes:
WIP: drop failing patches, needs a bit more work to rebase properly for new version

:Detailed Notes:
Fixes:
ERROR: connman-1.41-r0 do_patch: Applying patch '0005-Support-additional-feature-for-tethering.patch' on target directory '/OE/lge/build/webos/kirkstone/BUILD/work/qemux86_64-webos-linux/connman/1.41-r0/connman-1.41'
CmdError('quilt --quiltrc /OE/lge/build/webos/kirkstone/BUILD/work/qemux86_64-webos-linux/connman/1.41-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0005-Support-additional-feature-for-tethering.patch
patching file gdhcp/server.c
patching file include/technology.h
Hunk #1 FAILED at 46.
1 out of 1 hunk FAILED -- rejects in file include/technology.h
patching file plugins/wifi.c
Hunk #1 FAILED at 3669.
1 out of 1 hunk FAILED -- rejects in file plugins/wifi.c
patching file src/connman.h
patching file src/technology.c
Hunk #1 FAILED at 66.
Hunk #2 succeeded at 200 with fuzz 2 (offset 8 lines).
Hunk webosose#3 succeeded at 233 (offset 8 lines).
Hunk webosose#4 succeeded at 278 (offset 8 lines).
Hunk webosose#5 succeeded at 409 (offset 14 lines).
Hunk webosose#6 FAILED at 470.
Hunk webosose#7 succeeded at 603 with fuzz 2 (offset 22 lines).
Hunk webosose#8 succeeded at 1011 (offset 22 lines).
Hunk webosose#9 succeeded at 1057 with fuzz 2 (offset 43 lines).
Hunk webosose#10 succeeded at 1375 (offset 43 lines).
2 out of 10 hunks FAILED -- rejects in file src/technology.c
patching file src/tethering.c
Patch 0005-Support-additional-feature-for-tethering.patch does not apply (enforce with -f)

stderr: ')
ERROR: Logfile of failure stored in: /OE/lge/build/webos/kirkstone/BUILD/work/qemux86_64-webos-linux/connman/1.41-r0/temp/log.do_patch.2536046

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRN-9820] Create GPVB with Yocto 3.5 Kirkstone

Change-Id: I4cee71733583aee3d4acb4ca968f2ea079fe87e4
hyunjae92-shin pushed a commit that referenced this pull request Nov 29, 2022
…n 1.18.3 version

:Release Notes:

:Detailed Notes:
Fixes:
ERROR: gstreamer1.0-plugins-bad-1.18.3-r0 do_patch: Command Error: 'quilt --quiltrc /jenkins/mjansa/build/webos/hardknott/BUILD/work/qemux86_64-webos-linux/gstreamer1.0-plugins-bad/1.18.3-r0/recipe-sysroot-native/etc/quiltrc push' exited with 0  Output:
Applying patch 0003_disable_using_subsurface_subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
Hunk #1 succeeded at 1056 (offset 51 lines).
Hunk #2 succeeded at 1073 (offset 51 lines).
patching file ext/wayland/wldisplay.c
Hunk #1 succeeded at 346 (offset 14 lines).
patching file ext/wayland/wlwindow.c
Hunk #2 succeeded at 171 with fuzz 1.
Hunk #3 FAILED at 186.
Hunk #4 FAILED at 243.
Hunk #5 succeeded at 258 (offset 5 lines).
Hunk #6 succeeded at 295 (offset 5 lines).
Hunk #7 succeeded at 306 (offset 5 lines).
Hunk #8 succeeded at 335 (offset 9 lines).
Hunk #9 succeeded at 390 (offset 9 lines).
Hunk #10 succeeded at 401 (offset 9 lines).
Hunk #11 succeeded at 414 (offset 9 lines).
Hunk #12 succeeded at 433 (offset 9 lines).
Hunk #13 succeeded at 446 (offset 9 lines).
Hunk #14 succeeded at 490 (offset 5 lines).
Hunk #15 FAILED at 504.
3 out of 15 hunks FAILED -- rejects in file ext/wayland/wlwindow.c
patching file ext/wayland/wlwindow.h
Patch 0003_disable_using_subsurface_subcompositor.patch does not apply (enforce with -f)
ERROR: Logfile of failure stored in: /jenkins/mjansa/build/webos/hardknott/BUILD/work/qemux86_64-webos-linux/gstreamer1.0-plugins-bad/1.18.3-r0/temp/log.do_patch.60344
ERROR: Task (/jenkins/mjansa/build/webos/hardknott/oe-core/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.18.3.bb:do_patch) failed with exit code '1'

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRO-12997] CCC: Upgrade to Yocto 3.3 Hardknott
[PLAT-124341] Create GPVB with Yocto 3.3 Hardknott

Change-Id: Ie2baf3dd67b9941909af8f550d033b03b524464d
hyunjae92-shin pushed a commit that referenced this pull request Nov 29, 2022
:Release Notes:
Resolve conflicts mostly from these 2 upstream changes:
commit c4ef8f8d048a30304ba4cb1b83bfe39b55c13ba7
Author: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Date:   Wed Oct 28 14:53:36 2020 -0700

    core: Rename hcid.h to btd.h

    Since we use btd term for daemon APIs it makes sense to use it also
    for the header name instead of hcid.

commit 01d035d33886b13cd6dc361f994ce22ad47daf61
Author: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Date:   Wed Oct 28 14:50:00 2020 -0700

    core: Rename main_opts to btd_opts

    Use btd_ prefix since this is a daemon API.

:Detailed Notes:
Fixes:
NOTE: --- Patch fuzz start ---
Applying patch 0011-Fix-volume-level-notification-not-appearing-after-12.patch
patching file profiles/audio/media.c
Hunk #1 succeeded at 1235 (offset 1 line).
patching file profiles/audio/transport.c
Hunk #1 succeeded at 656 (offset -13 lines).
Hunk #2 succeeded at 932 with fuzz 1 (offset -10 lines).

Now at patch 0011-Fix-volume-level-notification-not-appearing-after-12.patch

NOTE: Applying patch '0012-Support-enabling-avdtp-delayReport.patch' (meta-webosose/meta-webos/recipes-connectivity/bluez5/bluez5/0012-Support-enabling-avdtp-delayReport.patch)
ERROR: Command Error: 'quilt --quiltrc TOPDIR/BUILD/work/raspberrypi3-webos-linux-gnueabi/bluez5/5.56-r0/recipe-sysroot-native/etc/quiltrc push' exited with 0  Output:
stdout: Applying patch 0012-Support-enabling-avdtp-delayReport.patch
patching file profiles/audio/a2dp.c
Hunk #1 succeeded at 2194 (offset 34 lines).
patching file profiles/audio/a2dp.h
Hunk #1 succeeded at 77 (offset -13 lines).
patching file profiles/audio/avdtp.c
Hunk #1 succeeded at 469 (offset -9 lines).
patching file profiles/audio/avdtp.h
Hunk #1 succeeded at 306 (offset -8 lines).
patching file profiles/audio/media.c
Hunk #1 succeeded at 120 (offset -12 lines).
Hunk #2 succeeded at 813 (offset 1 line).
Hunk #3 succeeded at 2430 (offset 1 line).
patching file profiles/audio/media.h
Hunk #1 succeeded at 10 (offset -13 lines).
Hunk #2 succeeded at 23 (offset -13 lines).
patching file src/adapter.c
Hunk #1 FAILED at 78.
Hunk #2 succeeded at 224 (offset -19 lines).
Hunk #3 succeeded at 291 (offset -15 lines).
Hunk #4 succeeded at 497 with fuzz 2 (offset -15 lines).
Hunk #5 succeeded at 3194 with fuzz 2 (offset -17 lines).
Hunk #6 succeeded at 3539 (offset 22 lines).
Hunk #7 succeeded at 4867 (offset -6 lines).
Hunk #8 succeeded at 6319 (offset -6 lines).
Hunk #9 FAILED at 6366.
Hunk #10 succeeded at 6367 (offset -6 lines).
2 out of 10 hunks FAILED -- rejects in file src/adapter.c
patching file src/adapter.h
Hunk #1 succeeded at 25 (offset -8 lines).
Hunk #2 succeeded at 69 (offset -8 lines).
can't find file to patch at input line 302
Perhaps you used the wrong -p or --strip option?
The text leading up to this was:
  --------------------------
  |diff --git a/src/hcid.h b/src/hcid.h
  |index 3624ba6ea..8f77184ed 100644
  |--- a/src/hcid.h
  |+++ b/src/hcid.h
  --------------------------
No file to patch.  Skipping patch.
1 out of 1 hunk ignored
patching file src/main.c
Hunk #1 succeeded at 76 (offset -12 lines).
Hunk #2 succeeded at 709 with fuzz 2 (offset 74 lines).
patching file src/main.conf
Patch 0012-Support-enabling-avdtp-delayReport.patch does not apply (enforce with -f)

meta-webos/recipes-connectivity/bluez5/bluez5/0029-Fix-provision-failed-issue.patch
this patch isn't webos specific, it's backport of 2 commits from upstream:
bluez/bluez@faa1f74
bluez/bluez@1f4ec8f

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRO-12997] CCC: Upgrade to Yocto 3.3 Hardknott
[PLAT-124341] Create GPVB with Yocto 3.3 Hardknott

Change-Id: I7c7d06574aac0c4595a76dc4d81d2c8e4d6df18d
hyunjae92-shin pushed a commit that referenced this pull request Nov 29, 2022
:Release Notes:

:Detailed Notes:
Fixes:
ERROR: bluez5-5.59-r0 do_patch: Command Error: 'quilt --quiltrc /jenkins/mjansa/build/ros/webos-noetic-honister/tmp-glibc/work/raspberrypi4-webos-linux-gnueabi/bluez5/5.59-r0/recipe-sysroot-native/etc/quiltrc push' exited with 0  Output:
stdout: Applying patch 0012-Support-enabling-avdtp-delayReport.patch
patching file profiles/audio/a2dp.c
Hunk #1 succeeded at 2195 (offset 1 line).
patching file profiles/audio/a2dp.h
patching file profiles/audio/avdtp.c
Hunk #1 succeeded at 470 (offset 1 line).
patching file profiles/audio/avdtp.h
patching file profiles/audio/media.c
patching file profiles/audio/media.h
patching file src/adapter.c
Hunk #1 succeeded at 68 (offset 1 line).
Hunk #2 succeeded at 226 (offset 1 line).
Hunk #3 succeeded at 295 (offset 3 lines).
Hunk #4 succeeded at 501 (offset 3 lines).
Hunk #5 succeeded at 3254 (offset 11 lines).
Hunk #6 succeeded at 3551 (offset 11 lines).
Hunk #7 succeeded at 4880 (offset 12 lines).
Hunk #8 succeeded at 6332 (offset 12 lines).
Hunk #9 succeeded at 6373 (offset 12 lines).
Hunk #10 succeeded at 6381 (offset 12 lines).
patching file src/adapter.h
patching file src/btd.h
Hunk #1 FAILED at 105.
1 out of 1 hunk FAILED -- rejects in file src/btd.h
patching file src/main.c
Hunk #1 succeeded at 77 (offset 1 line).
Hunk #2 succeeded at 729 with fuzz 2 (offset 20 lines).
patching file src/main.conf
Patch 0012-Support-enabling-avdtp-delayReport.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRO-12998] CCC: Upgrade to Yocto 3.4 Honister
[PLAT-141293] Create GPVB with Yocto 3.4 Honister

Change-Id: I92051ac5eb84b9c0e203f3446db5cc9ac8ed21b3
hyunjae92-shin pushed a commit that referenced this pull request Nov 29, 2022
:Release Notes:

:Detailed Notes:
Fixes:
ERROR: bluez5-5.61-r0 do_patch: Command Error: 'quilt --quiltrc /jenkins/home/anaconda/build-webos-auto-honister/build/BUILD/work/sa8155-webos-linux/bluez5/5.61-r0/recipe-sysroot-native/etc/quiltrc push' exited with 0  Output:
stdout: Applying patch 0012-Support-enabling-avdtp-delayReport.patch
patching file profiles/audio/a2dp.c
Hunk #1 succeeded at 2333 (offset 138 lines).
patching file profiles/audio/a2dp.h
patching file profiles/audio/avdtp.c
patching file profiles/audio/avdtp.h
Hunk #1 succeeded at 308 (offset 2 lines).
patching file profiles/audio/media.c
Hunk #3 succeeded at 2433 (offset 3 lines).
patching file profiles/audio/media.h
patching file src/adapter.c
Hunk #3 succeeded at 298 (offset 3 lines).
Hunk #4 succeeded at 504 (offset 3 lines).
Hunk #5 succeeded at 3270 (offset 16 lines).
Hunk #6 succeeded at 3654 (offset 103 lines).
Hunk #7 succeeded at 5040 (offset 160 lines).
Hunk #8 succeeded at 6496 (offset 164 lines).
Hunk #9 succeeded at 6537 (offset 164 lines).
Hunk #10 succeeded at 6545 (offset 164 lines).
patching file src/adapter.h
Hunk #1 FAILED at 25.
Hunk #2 succeeded at 69 (offset 1 line).
1 out of 2 hunks FAILED -- rejects in file src/adapter.h
patching file src/btd.h
patching file src/main.c
Hunk #2 succeeded at 730 (offset 1 line).
patching file src/main.conf
Patch 0012-Support-enabling-avdtp-delayReport.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRO-12998] CCC: Upgrade to Yocto 3.4 Honister
[PLAT-141293] Create GPVB with Yocto 3.4 Honister

Change-Id: Iad34978c85d0bf4b8dab12a06489c678523ddad3
hyunjae92-shin pushed a commit that referenced this pull request Nov 29, 2022
:Release Notes:

:Detailed Notes:
Fixes:
CmdError('quilt --quiltrc TOPDIR/BUILD/work/qemux86-webos-linux/bluez5/5.62-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0012-Support-enabling-avdtp-delayReport.patch
patching file profiles/audio/a2dp.c
Hunk #1 succeeded at 2334 (offset 1 line).
patching file profiles/audio/a2dp.h
patching file profiles/audio/avdtp.c
Hunk #1 succeeded at 469 (offset -1 lines).
patching file profiles/audio/avdtp.h
Hunk #1 succeeded at 311 (offset 3 lines).
patching file profiles/audio/media.c
Hunk #3 succeeded at 2435 (offset 2 lines).
patching file profiles/audio/media.h
patching file src/adapter.c
Hunk #2 succeeded at 266 (offset 40 lines).
Hunk #3 succeeded at 337 (offset 39 lines).
Hunk #4 succeeded at 543 (offset 39 lines).
Hunk #5 succeeded at 3312 with fuzz 2 (offset 42 lines).
Hunk #6 FAILED at 3654.
Hunk #7 succeeded at 5129 (offset 90 lines).
Hunk #8 succeeded at 6588 (offset 93 lines).
Hunk #9 succeeded at 6629 (offset 93 lines).
Hunk #10 succeeded at 6637 with fuzz 1 (offset 93 lines).
1 out of 10 hunks FAILED -- rejects in file src/adapter.c
patching file src/adapter.h
patching file src/btd.h
Hunk #1 FAILED at 110.
1 out of 1 hunk FAILED -- rejects in file src/btd.h
patching file src/main.c
Hunk #1 succeeded at 78 (offset 1 line).
Hunk #2 succeeded at 801 with fuzz 2 (offset 71 lines).
patching file src/main.conf
Patch 0012-Support-enabling-avdtp-delayReport.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRO-12999] CCC: Upgrade to Yocto 4.0 Kirkstone
[WRN-9820] Create GPVB with Yocto 4.0 Kirkstone

Change-Id: I87dd7c06a0c4621f8e1b9ff75b0c7956fcb3aec3
hyunjae92-shin pushed a commit that referenced this pull request Nov 29, 2022
:Release Notes:

:Detailed Notes:
Fixes:
ERROR: bluez5-5.63-r0 do_patch: Applying patch '0007-recievePassThrough-commad-support-required-for-webos.patch' on target directory '/OE/lge/build/webos/kirkstone/BUILD/work/qemux86_64-webos-linux/bluez5/5.63-r0/bluez-5.63'
CmdError('quilt --quiltrc /OE/lge/build/webos/kirkstone/BUILD/work/qemux86_64-webos-linux/bluez5/5.63-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0007-recievePassThrough-commad-support-required-for-webos.patch
patching file profiles/audio/avctp.c
patching file src/device.c
Hunk #1 succeeded at 172 (offset 1 line).
Hunk #2 FAILED at 279.
Hunk #3 succeeded at 1388 (offset 77 lines).
Hunk #4 succeeded at 1418 (offset 77 lines).
Hunk #5 succeeded at 1432 (offset 77 lines).
Hunk #6 succeeded at 2045 (offset 105 lines).
Hunk #7 succeeded at 3263 (offset 119 lines).
Hunk #8 succeeded at 4501 (offset 165 lines).
1 out of 8 hunks FAILED -- rejects in file src/device.c
patching file src/device.h
Hunk #1 succeeded at 180 (offset 1 line).
Patch 0007-recievePassThrough-commad-support-required-for-webos.patch does not apply (enforce with -f)

stderr: ')
ERROR: Logfile of failure stored in: /OE/lge/build/webos/kirkstone/BUILD/work/qemux86_64-webos-linux/bluez5/5.63-r0/temp/log.do_patch.405525

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRO-12999] CCC: Upgrade to Yocto 4.0 Kirkstone
[WRN-9820] Create GPVB with Yocto 4.0 Kirkstone

Change-Id: Ib353e654e5c18bbbe2494526e53784a6e2bb2eaf
hyunjae92-shin pushed a commit that referenced this pull request Nov 29, 2022
:Release Notes:

:Detailed Notes:
Use striplevel=3, because now the patches are generated from new monorepo
https://gitlab.freedesktop.org/gstreamer/gstreamer
instead of older
https://gitlab.freedesktop.org/gstreamer/gst-plugins-good
which doesn't have 1.20.0 version

Fixes:
http://gecko.lge.com/Errors/Details/444886

ERROR: Applying patch '0003_disable_using_subsurface_subcompositor.patch' on target directory 'TOPDIR/BUILD/work/qemux86_64-webos-linux/gstreamer1.0-plugins-bad/1.20.3-r0/gst-plugins-bad-1.20.3'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/qemux86_64-webos-linux/gstreamer1.0-plugins-bad/1.20.3-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0003_disable_using_subsurface_subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
Hunk #1 succeeded at 1068 (offset 63 lines).
Hunk #2 succeeded at 1085 (offset 63 lines).
patching file ext/wayland/wldisplay.c
Hunk #1 succeeded at 346 (offset 14 lines).
patching file ext/wayland/wlwindow.c
Hunk #1 succeeded at 159 (offset 2 lines).
Hunk #2 succeeded at 173 with fuzz 1 (offset 2 lines).
Hunk #3 FAILED at 186.
Hunk #4 FAILED at 243.
Hunk #5 succeeded at 256 (offset 3 lines).
Hunk #6 succeeded at 293 (offset 3 lines).
Hunk #7 succeeded at 304 (offset 3 lines).
Hunk #8 FAILED at 326.
Hunk #9 FAILED at 386.
Hunk #10 FAILED at 399.
Hunk #11 FAILED at 412.
Hunk #12 succeeded at 436 (offset -2 lines).
Hunk #13 FAILED at 451.
Hunk #14 FAILED at 510.
Hunk #15 FAILED at 529.
9 out of 15 hunks FAILED -- rejects in file ext/wayland/wlwindow.c
patching file ext/wayland/wlwindow.h
Patch 0003_disable_using_subsurface_subcompositor.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRO-12999] CCC: Upgrade to Yocto 4.0 Kirkstone
[WRN-9820] Create GPVB with Yocto 4.0 Kirkstone

Change-Id: I1694098b56913025842a870abbfb32c647c4f070
hyunjae92-shin pushed a commit that referenced this pull request Nov 29, 2022
:Release Notes:

:Detailed Notes:
Fixes:
NOTE: recipe wpa-supplicant-2.10-r0: task do_patch: Started
ERROR: wpa-supplicant-2.10-r0 do_patch: Applying patch '0001-Add-p2p-changes.patch' on target directory '/OE/lge/build/webos/kirkstone/BUILD/work/qemux86_64-webos-linux/wpa-supplicant/2.10-r0/wpa_supplicant-2.10'
CmdError('quilt --quiltrc /OE/lge/build/webos/kirkstone/BUILD/work/qemux86_64-webos-linux/wpa-supplicant/2.10-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0001-Add-p2p-changes.patch
patching file src/ap/drv_callbacks.c
Hunk #1 succeeded at 202 (offset 27 lines).
patching file src/ap/hostapd.c
Hunk #1 succeeded at 366 (offset 14 lines).
Hunk #2 succeeded at 2382 (offset 147 lines).
Hunk #3 FAILED at 3582.
1 out of 3 hunks FAILED -- rejects in file src/ap/hostapd.c
patching file src/ap/hostapd.h
Hunk #1 succeeded at 273 (offset 10 lines).
Hunk #2 succeeded at 300 (offset 10 lines).
Hunk #3 succeeded at 694 (offset 37 lines).
patching file src/ap/sta_info.c
Hunk #1 succeeded at 1268 (offset 45 lines).
Hunk #2 succeeded at 1295 (offset 45 lines).
Hunk #3 succeeded at 1342 (offset 45 lines).
patching file src/ap/wpa_auth.c
Hunk #1 succeeded at 729 (offset 44 lines).
Hunk #2 succeeded at 744 with fuzz 1 (offset 45 lines).
patching file src/common/ieee802_11_defs.h
Hunk #1 succeeded at 1715 (offset 68 lines).
patching file src/p2p/p2p.c
Hunk #1 succeeded at 1319 (offset 5 lines).
Hunk #2 FAILED at 1322.
Hunk #3 succeeded at 1647 (offset 20 lines).
Hunk #4 succeeded at 1758 (offset 20 lines).
Hunk #5 succeeded at 1797 (offset 20 lines).
Hunk #6 succeeded at 3005 (offset 28 lines).
Hunk #7 succeeded at 3280 (offset 28 lines).
Hunk #8 succeeded at 4646 (offset 44 lines).
Hunk #9 succeeded at 4665 (offset 44 lines).
Hunk #10 succeeded at 4700 (offset 44 lines).
Hunk #11 succeeded at 4811 (offset 44 lines).
1 out of 11 hunks FAILED -- rejects in file src/p2p/p2p.c
patching file src/p2p/p2p.h
Hunk #1 succeeded at 377 (offset 2 lines).
patching file src/p2p/p2p_build.c
patching file src/p2p/p2p_go_neg.c
Hunk #2 succeeded at 475 with fuzz 1 (offset 9 lines).
Hunk #3 succeeded at 511 (offset 9 lines).
Hunk #4 succeeded at 852 (offset 9 lines).
patching file src/p2p/p2p_group.c
patching file src/p2p/p2p_invitation.c
patching file src/p2p/p2p_pd.c
patching file src/wps/wps_attr_build.c
Hunk #2 succeeded at 209 (offset 2 lines).
patching file src/wps/wps_defs.h
patching file src/wps/wps_i.h
patching file wpa_supplicant/ap.c
Hunk #1 succeeded at 832 (offset 205 lines).
patching file wpa_supplicant/dbus/dbus_new.c
Hunk #2 succeeded at 1566 (offset 93 lines).
Hunk #3 succeeded at 1611 (offset 93 lines).
Hunk #4 succeeded at 1806 (offset 93 lines).
Hunk #5 succeeded at 1835 (offset 93 lines).
Hunk #6 succeeded at 1846 (offset 93 lines).
Hunk #7 succeeded at 1936 (offset 93 lines).
Hunk #8 succeeded at 1965 (offset 93 lines).
Hunk #9 succeeded at 1976 (offset 93 lines).
Hunk #10 succeeded at 2286 (offset 93 lines).
Hunk #11 succeeded at 2313 (offset 93 lines).
Hunk #12 succeeded at 2334 (offset 93 lines).
Hunk #13 succeeded at 2345 (offset 93 lines).
Hunk #14 succeeded at 3947 (offset 106 lines).
Hunk #15 succeeded at 4621 (offset 718 lines).
Hunk #16 succeeded at 4948 (offset 151 lines).
patching file wpa_supplicant/dbus/dbus_new.h
Hunk #1 succeeded at 213 (offset 5 lines).
Hunk #2 succeeded at 229 (offset 5 lines).
Hunk #3 succeeded at 238 (offset 5 lines).
Hunk #4 succeeded at 259 (offset 5 lines).
Hunk #5 succeeded at 452 (offset 12 lines).
Hunk #6 succeeded at 526 (offset 12 lines).
Hunk #7 succeeded at 555 (offset 12 lines).
patching file wpa_supplicant/dbus/dbus_new_handlers.c
Hunk #1 succeeded at 3481 (offset 390 lines).
Hunk #2 succeeded at 5557 (offset 603 lines).
patching file wpa_supplicant/dbus/dbus_new_handlers.h
Hunk #1 succeeded at 168 (offset 16 lines).
patching file wpa_supplicant/dbus/dbus_new_handlers_p2p.c
Hunk #1 succeeded at 1219 (offset 53 lines).
Hunk #2 succeeded at 1930 (offset 53 lines).
patching file wpa_supplicant/dbus/dbus_new_handlers_p2p.h
patching file wpa_supplicant/notify.c
Hunk #1 succeeded at 616 (offset 12 lines).
Hunk #2 succeeded at 711 (offset 12 lines).
Hunk #3 succeeded at 738 (offset 12 lines).
Hunk #4 succeeded at 750 (offset 12 lines).
Hunk #5 succeeded at 762 (offset 12 lines).
Hunk #6 succeeded at 787 (offset 12 lines).
Hunk #7 succeeded at 801 (offset 12 lines).
Hunk #8 succeeded at 910 (offset 13 lines).
patching file wpa_supplicant/notify.h
Hunk #1 succeeded at 92 (offset 1 line).
Hunk #2 succeeded at 121 (offset 1 line).
Hunk #3 succeeded at 147 (offset 1 line).
patching file wpa_supplicant/p2p_supplicant.c
Hunk #1 succeeded at 1455 (offset 58 lines).
Hunk #2 succeeded at 1890 (offset 58 lines).
Hunk #3 succeeded at 2124 (offset 159 lines).
Hunk #4 succeeded at 3254 with fuzz 2 (offset 164 lines).
Hunk #5 succeeded at 3273 (offset 169 lines).
Hunk #6 succeeded at 3304 (offset 169 lines).
Hunk #7 succeeded at 3318 (offset 169 lines).
Hunk #8 succeeded at 6912 (offset 493 lines).
Hunk #9 succeeded at 7393 (offset 498 lines).
Hunk #10 succeeded at 7800 (offset 506 lines).
Hunk #11 succeeded at 8849 (offset 509 lines).
Hunk #12 succeeded at 10123 (offset 527 lines).
patching file wpa_supplicant/p2p_supplicant.h
Hunk #1 succeeded at 221 (offset 9 lines).
patching file wpa_supplicant/wpa_supplicant.c
Hunk #1 succeeded at 130 with fuzz 2 (offset 4 lines).
Hunk #2 succeeded at 8232 (offset 1006 lines).
Hunk #3 succeeded at 8260 (offset 1006 lines).
Patch 0001-Add-p2p-changes.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRO-12999] CCC: Upgrade to Yocto 4.0 Kirkstone
[WRN-9820] Create GPVB with Yocto 4.0 Kirkstone

Change-Id: I13b8826147192db98046877f30958ec0489180c1
hyunjae92-shin pushed a commit that referenced this pull request Nov 29, 2022
:Release Notes:
WIP: drop failing patches, needs a bit more work to rebase properly for new version

:Detailed Notes:
Fixes:
ERROR: connman-1.41-r0 do_patch: Applying patch '0005-Support-additional-feature-for-tethering.patch' on target directory '/OE/lge/build/webos/kirkstone/BUILD/work/qemux86_64-webos-linux/connman/1.41-r0/connman-1.41'
CmdError('quilt --quiltrc /OE/lge/build/webos/kirkstone/BUILD/work/qemux86_64-webos-linux/connman/1.41-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0005-Support-additional-feature-for-tethering.patch
patching file gdhcp/server.c
patching file include/technology.h
Hunk #1 FAILED at 46.
1 out of 1 hunk FAILED -- rejects in file include/technology.h
patching file plugins/wifi.c
Hunk #1 FAILED at 3669.
1 out of 1 hunk FAILED -- rejects in file plugins/wifi.c
patching file src/connman.h
patching file src/technology.c
Hunk #1 FAILED at 66.
Hunk #2 succeeded at 200 with fuzz 2 (offset 8 lines).
Hunk #3 succeeded at 233 (offset 8 lines).
Hunk #4 succeeded at 278 (offset 8 lines).
Hunk #5 succeeded at 409 (offset 14 lines).
Hunk #6 FAILED at 470.
Hunk #7 succeeded at 603 with fuzz 2 (offset 22 lines).
Hunk #8 succeeded at 1011 (offset 22 lines).
Hunk #9 succeeded at 1057 with fuzz 2 (offset 43 lines).
Hunk #10 succeeded at 1375 (offset 43 lines).
2 out of 10 hunks FAILED -- rejects in file src/technology.c
patching file src/tethering.c
Patch 0005-Support-additional-feature-for-tethering.patch does not apply (enforce with -f)

stderr: ')
ERROR: Logfile of failure stored in: /OE/lge/build/webos/kirkstone/BUILD/work/qemux86_64-webos-linux/connman/1.41-r0/temp/log.do_patch.2536046

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRO-12999] CCC: Upgrade to Yocto 4.0 Kirkstone
[WRN-9820] Create GPVB with Yocto 4.0 Kirkstone

Change-Id: I4cee71733583aee3d4acb4ca968f2ea079fe87e4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants