Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

webruntime building issue #18

Closed
cmdn2002 opened this issue Feb 3, 2020 · 3 comments
Closed

webruntime building issue #18

cmdn2002 opened this issue Feb 3, 2020 · 3 comments

Comments

@cmdn2002
Copy link

cmdn2002 commented Feb 3, 2020

i try to build webos according to the guidance.
https://github.com/webosose/build-webos

but i encounter webruntime building faillure issue.

my building system is ,
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=18.04
DISTRIB_CODENAME=bionic
DISTRIB_DESCRIPTION="Ubuntu 18.04.2 LTS"
NAME="Ubuntu"
VERSION="18.04.2 LTS (Bionic Beaver)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 18.04.2 LTS"
VERSION_ID="18.04"

my purpose is building arm architecture 32bit system image, so i choose Raspberry Pi 3 as
target device according to the building guide:

git clone https://github.com/webosose/build-webos.git
./mcf -p 0 -b 4 raspberrypi3
make webos-image
unluckly, build failed, the log is:
3: webruntime-72.0.3626.121-23-r25.1 do_configure - 5s (pid 28462)
$<50>ERROR: Logfile of failure stored in: /home/android/webos/build-webos/BUILD/work/raspberrypi3-webos-linux-gnueabi/webruntime/72.0.3626.121-23-r25.1/temp/log.do_configure.28462
Log data follows:
| DEBUG: Executing shell function do_configure
| GN_ARGS is cros_host_ar="ar" cros_host_cc="gcc " cros_host_cxx="g++ " cros_host_extra_ldflags="-L/home/android/webos/build-webos/BUILD/work/raspberrypi3-webos-linux-gnueabi/webruntime/72.0.3626.121-23-r25.1/recipe-sysroot-native/usr/lib -L/home/android/webos/build-webos/BUILD/work/raspberrypi3-webos-linux-gnueabi/webruntime/72.0.3626.121-23-r25.1/recipe-sysroot-native/lib -Wl,-rpath-link,/home/android/webos/build-webos/BUILD/work/raspberrypi3-webos-linux-gnueabi/webruntime/72.0.3626.121-23-r25.1/recipe-sysroot-native/usr/lib -Wl,-rpath-link,/home/android/webos/build-webos/BUILD/work/raspberrypi3-webos-linux-gnueabi/webruntime/72.0.3626.121-23-r25.1/recipe-sysroot-native/lib -Wl,-rpath,/home/android/webos/build-webos/BUILD/work/raspberrypi3-webos-linux-gnueabi/webruntime/72.0.3626.121-23-r25.1/recipe-sysroot-native/usr/lib -Wl,-rpath,/home/android/webos/build-webos/BUILD/work/raspberrypi3-webos-linux-gnueabi/webruntime/72.0.3626.121-23-r25.1/recipe-sysroot-native/lib -Wl,-O1" cros_target_ar="arm-webos-linux-gnueabi-ar" cros_target_cc="arm-webos-linux-gnueabi-gcc -march=armv7ve -mthumb -mfpu=neon-vfpv4 -mfloat-abi=hard -mcpu=cortex-a7 -fstack-protector-strong -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security --sysroot=/home/android/webos/build-webos/BUILD/work/raspberrypi3-webos-linux-gnueabi/webruntime/72.0.3626.121-23-r25.1/recipe-sysroot" cros_target_cxx="arm-webos-linux-gnueabi-g++ -march=armv7ve -mthumb -mfpu=neon-vfpv4 -mfloat-abi=hard -mcpu=cortex-a7 -fstack-protector-strong -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security --sysroot=/home/android/webos/build-webos/BUILD/work/raspberrypi3-webos-linux-gnueabi/webruntime/72.0.3626.121-23-r25.1/recipe-sysroot" enable_memorymanager_webapi=true ffmpeg_branding="Chrome" host_os="linux" is_app_shell_cbe=true is_clang=false is_cross_linux_build=true is_webos=true is_debug=false is_component_build=false ozone_auto_platforms=false ozone_platform_wayland_external=true proprietary_codecs=true target_os="linux" target_sysroot="/home/android/webos/build-webos/BUILD/work/raspberrypi3-webos-linux-gnueabi/webruntime/72.0.3626.121-23-r25.1/recipe-sysroot" treat_warnings_as_errors=false use_bundled_fontconfig=false use_cbe=true use_cups=false use_custom_libcxx=false use_custom_libcxx_for_host=true use_kerberos=false use_ozone=true use_pmlog=true use_sysroot=false use_system_debugger_abort=true use_webos_v8_snapshot=true use_xkbcommon=true enable_av1_decoder=false symbol_level=1 blink_symbol_level=0 use_gst_media=true enable_webm_video_codecs=false use_jumbo_build=true jumbo_file_merge_limit=8 use_webos_gpu_info_collector=false use_lttng=true use_neva_media=true is_host_clang=true fatal_linker_warnings=false enable_nacl=false disable_ftp_support=true enable_print_preview=false enable_remoting=false use_gnome_keyring=false use_pulseaudio=false linux_use_bundled_binutils=false use_debug_fission=false use_gold=true target_cpu="arm" arm_arch="armv7ve" arm_version=7 arm_float_abi="hard" host_pkg_config="pkg-config-native" closure_compile=false
| BUILD_TARGETS are webos:weboswebruntime app_shell
| ERROR at //BUILD.gn:1061:3: Empty sources for copy command.
| copy("layout_test_data_mojo_bindings") {
| ^---------------------------------------
| You have to specify at least one file to copy in the "sources".
| WARNING: exit code 1 from a shell command.
| ERROR: Function failed: do_configure (log file is located at /home/android/webos/build-webos/BUILD/work/raspberrypi3-webos-linux-gnueabi/webruntime/72.0.3626.121-23-r25.1/temp/log.do_configure.28462)

can you give some advice where is wrong? Thanks.

@cmdn2002
Copy link
Author

cmdn2002 commented Feb 3, 2020

same environment, i also try to build for pi4:
./mcf -p 0 -b 4 raspberrypi4
make webos-image

same fail log as above.

@GlebMan-n
Copy link

GlebMan-n commented Feb 3, 2020

i try to build webos according to the guidance.
https://github.com/webosose/build-webos

but i encounter webruntime building faillure issue.

my building system is ,
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=18.04
DISTRIB_CODENAME=bionic
DISTRIB_DESCRIPTION="Ubuntu 18.04.2 LTS"
NAME="Ubuntu"
VERSION="18.04.2 LTS (Bionic Beaver)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 18.04.2 LTS"
VERSION_ID="18.04"

my purpose is building arm architecture 32bit system image, so i choose Raspberry Pi 3 as
target device according to the building guide:

git clone https://github.com/webosose/build-webos.git
./mcf -p 0 -b 4 raspberrypi3
make webos-image
unluckly, build failed, the log is:
3: webruntime-72.0.3626.121-23-r25.1 do_configure - 5s (pid 28462)
$<50>ERROR: Logfile of failure stored in: /home/android/webos/build-webos/BUILD/work/raspberrypi3-webos-linux-gnueabi/webruntime/72.0.3626.121-23-r25.1/temp/log.do_configure.28462
Log data follows:
| DEBUG: Executing shell function do_configure
| GN_ARGS is cros_host_ar="ar" cros_host_cc="gcc " cros_host_cxx="g++ " cros_host_extra_ldflags="-L/home/android/webos/build-webos/BUILD/work/raspberrypi3-webos-linux-gnueabi/webruntime/72.0.3626.121-23-r25.1/recipe-sysroot-native/usr/lib -L/home/android/webos/build-webos/BUILD/work/raspberrypi3-webos-linux-gnueabi/webruntime/72.0.3626.121-23-r25.1/recipe-sysroot-native/lib -Wl,-rpath-link,/home/android/webos/build-webos/BUILD/work/raspberrypi3-webos-linux-gnueabi/webruntime/72.0.3626.121-23-r25.1/recipe-sysroot-native/usr/lib -Wl,-rpath-link,/home/android/webos/build-webos/BUILD/work/raspberrypi3-webos-linux-gnueabi/webruntime/72.0.3626.121-23-r25.1/recipe-sysroot-native/lib -Wl,-rpath,/home/android/webos/build-webos/BUILD/work/raspberrypi3-webos-linux-gnueabi/webruntime/72.0.3626.121-23-r25.1/recipe-sysroot-native/usr/lib -Wl,-rpath,/home/android/webos/build-webos/BUILD/work/raspberrypi3-webos-linux-gnueabi/webruntime/72.0.3626.121-23-r25.1/recipe-sysroot-native/lib -Wl,-O1" cros_target_ar="arm-webos-linux-gnueabi-ar" cros_target_cc="arm-webos-linux-gnueabi-gcc -march=armv7ve -mthumb -mfpu=neon-vfpv4 -mfloat-abi=hard -mcpu=cortex-a7 -fstack-protector-strong -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security --sysroot=/home/android/webos/build-webos/BUILD/work/raspberrypi3-webos-linux-gnueabi/webruntime/72.0.3626.121-23-r25.1/recipe-sysroot" cros_target_cxx="arm-webos-linux-gnueabi-g++ -march=armv7ve -mthumb -mfpu=neon-vfpv4 -mfloat-abi=hard -mcpu=cortex-a7 -fstack-protector-strong -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security --sysroot=/home/android/webos/build-webos/BUILD/work/raspberrypi3-webos-linux-gnueabi/webruntime/72.0.3626.121-23-r25.1/recipe-sysroot" enable_memorymanager_webapi=true ffmpeg_branding="Chrome" host_os="linux" is_app_shell_cbe=true is_clang=false is_cross_linux_build=true is_webos=true is_debug=false is_component_build=false ozone_auto_platforms=false ozone_platform_wayland_external=true proprietary_codecs=true target_os="linux" target_sysroot="/home/android/webos/build-webos/BUILD/work/raspberrypi3-webos-linux-gnueabi/webruntime/72.0.3626.121-23-r25.1/recipe-sysroot" treat_warnings_as_errors=false use_bundled_fontconfig=false use_cbe=true use_cups=false use_custom_libcxx=false use_custom_libcxx_for_host=true use_kerberos=false use_ozone=true use_pmlog=true use_sysroot=false use_system_debugger_abort=true use_webos_v8_snapshot=true use_xkbcommon=true enable_av1_decoder=false symbol_level=1 blink_symbol_level=0 use_gst_media=true enable_webm_video_codecs=false use_jumbo_build=true jumbo_file_merge_limit=8 use_webos_gpu_info_collector=false use_lttng=true use_neva_media=true is_host_clang=true fatal_linker_warnings=false enable_nacl=false disable_ftp_support=true enable_print_preview=false enable_remoting=false use_gnome_keyring=false use_pulseaudio=false linux_use_bundled_binutils=false use_debug_fission=false use_gold=true target_cpu="arm" arm_arch="armv7ve" arm_version=7 arm_float_abi="hard" host_pkg_config="pkg-config-native" closure_compile=false
| BUILD_TARGETS are webos:weboswebruntime app_shell
| ERROR at //BUILD.gn:1061:3: Empty sources for copy command.
| copy("layout_test_data_mojo_bindings") {
| ^---------------------------------------
| You have to specify at least one file to copy in the "sources".
| WARNING: exit code 1 from a shell command.
| ERROR: Function failed: do_configure (log file is located at /home/android/webos/build-webos/BUILD/work/raspberrypi3-webos-linux-gnueabi/webruntime/72.0.3626.121-23-r25.1/temp/log.do_configure.28462)

can you give some advice where is wrong? Thanks.

Hi, how many RAM do you have (16 GB at least, 32 GB will be better)? I advise you to increase amount of swap. After that you should remove BUILD and sstate-cache folders and try to build again. I believe that you did all preconditions as mentioned in manuals (https://www.webosose.org/docs/guides/setup/building-webos-ose/ especially sudo scripts/prerequisites.sh)

@cmdn2002
Copy link
Author

Thanks for your suggestion.
i increase the swap partition size to two times than DDR memory. it's valid.

shr-project added a commit to shr-project/meta-webosose that referenced this issue 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 issue 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 issue 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 issue 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 issue 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 issue 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
shr-project added a commit to shr-project/meta-webosose that referenced this issue 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 issue 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 issue 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 issue Feb 27, 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
hyunjae92-shin pushed a commit that referenced this issue Apr 1, 2021
:Release Notes:

:Detailed Notes:
0020-Add-p2p-changes.patch this massive patch doesn't apply and
needs to be re-worked, looks like wifi.c was also reordered a
bit in it, which makes conflict resolution unnecessary painful.

This p2p patch also uses __connman_storage_open_service API
which was already removed in 1.38, so we need to revert this
change from upstream until connectivity team properly updates
these p2p changes for newer connman.

It also probably unnecessary restores e.g. include/types.h which was
already removed in upstream in 2013 with:
  commit 86d25926c8b6ccf22f261cc17d30fbdb2e4d0d14
  Author: Daniel Wagner <daniel.wagner@bmw-carit.de>
  Date:   Tue Jul 23 09:11:07 2013 +0200

    build: Remove unsued types.h header

so I wonder how this patch was created.

ERROR: connman-1.38-r0 do_patch: Command Error: 'quilt --quiltrc /data001/jenkins/gecko/clean-engineering-webos/BUILD/work/raspberrypi4-webos-linux-gnueabi/connman/1.38-r0/recipe-sysroot-native/etc/quiltrc push' exited with 0  Output:
Applying patch 0020-Add-p2p-changes.patch
patching file Makefile.am
Hunk #2 succeeded at 128 (offset -1 lines).
patching file gsupplicant/dbus.c
patching file gsupplicant/dbus.h
patching file gsupplicant/gsupplicant.h
Hunk #7 succeeded at 570 (offset 3 lines).
Hunk #8 succeeded at 593 (offset 3 lines).
Hunk #9 succeeded at 627 (offset 3 lines).
Hunk #10 succeeded at 646 (offset 3 lines).
Hunk #11 succeeded at 678 (offset 3 lines).
Hunk #12 succeeded at 697 (offset 3 lines).
patching file gsupplicant/supplicant.c
Hunk #18 succeeded at 1603 (offset 18 lines).
Hunk #19 succeeded at 1821 (offset 18 lines).
Hunk #20 succeeded at 1853 (offset 18 lines).
Hunk #21 succeeded at 1879 (offset 18 lines).
Hunk #22 succeeded at 1975 (offset 18 lines).
Hunk #23 succeeded at 2686 (offset 18 lines).
Hunk #24 succeeded at 2715 (offset 18 lines).
Hunk #25 succeeded at 3136 (offset 18 lines).
Hunk #26 succeeded at 3288 (offset 18 lines).
Hunk #27 succeeded at 3760 (offset 18 lines).
Hunk #28 succeeded at 3794 (offset 18 lines).
Hunk #29 succeeded at 3868 (offset 18 lines).
Hunk #30 succeeded at 3928 (offset 18 lines).
Hunk #31 succeeded at 3944 (offset 18 lines).
Hunk #32 succeeded at 4009 (offset 18 lines).
Hunk #33 succeeded at 4037 (offset 18 lines).
Hunk #34 succeeded at 4061 (offset 18 lines).
Hunk #35 succeeded at 4078 (offset 18 lines).
Hunk #36 succeeded at 4091 (offset 18 lines).
Hunk #37 succeeded at 4107 (offset 18 lines).
Hunk #38 succeeded at 4144 (offset 18 lines).
Hunk #39 succeeded at 4162 (offset 18 lines).
Hunk #40 succeeded at 4215 (offset 18 lines).
Hunk #41 succeeded at 4229 (offset 18 lines).
Hunk #42 succeeded at 4318 (offset 18 lines).
Hunk #43 succeeded at 4460 (offset 18 lines).
Hunk #44 succeeded at 4486 (offset 18 lines).
Hunk #45 succeeded at 4533 (offset 18 lines).
Hunk #46 succeeded at 4587 (offset 18 lines).
Hunk #47 succeeded at 4597 (offset 18 lines).
Hunk #48 succeeded at 4613 (offset 18 lines).
Hunk #49 succeeded at 9245 (offset 18 lines).
Hunk #50 succeeded at 9266 (offset 18 lines).
Hunk #51 succeeded at 9657 (offset 18 lines).
Hunk #52 succeeded at 9676 (offset 18 lines).
Hunk #53 succeeded at 9838 (offset 18 lines).
Hunk #54 succeeded at 9873 (offset 18 lines).
Hunk #55 succeeded at 10143 (offset 18 lines).
Hunk #56 succeeded at 10252 (offset 18 lines).
patching file include/dbus.h
patching file include/device.h
patching file include/group.h
patching file include/network.h
patching file include/peer.h
patching file include/sd.h
patching file include/technology.h
patching file include/types.h
patching file plugins/wifi.c
Hunk #2 succeeded at 63 with fuzz 2 (offset 2 lines).
Hunk #3 succeeded at 75 with fuzz 1 (offset 2 lines).
Hunk #4 succeeded at 177 (offset 2 lines).
Hunk #5 succeeded at 193 (offset 2 lines).
Hunk #6 succeeded at 213 (offset 2 lines).
Hunk #7 FAILED at 262.
Hunk #8 succeeded at 3720 (offset 2 lines).
Hunk #9 succeeded at 3736 (offset 2 lines).
Hunk #10 succeeded at 4063 (offset 2 lines).
Hunk #11 succeeded at 4085 (offset 2 lines).
Hunk #12 succeeded at 4114 (offset 2 lines).
1 out of 12 hunks FAILED -- rejects in file plugins/wifi.c
patching file src/connman.h
Hunk #2 succeeded at 464 (offset -1 lines).
Hunk #3 succeeded at 558 (offset -1 lines).
Hunk #4 succeeded at 574 (offset -1 lines).
Hunk #5 succeeded at 699 (offset -1 lines).
Hunk #6 succeeded at 851 (offset -1 lines).
Hunk #7 succeeded at 1007 (offset -1 lines).
Hunk #8 succeeded at 1024 (offset -1 lines).
Hunk #9 succeeded at 1117 (offset -1 lines).
patching file src/dbus.c
patching file src/device.c
patching file src/dhcp.c
patching file src/group.c
patching file src/ippool.c
patching file src/manager.c
patching file src/network.c
patching file src/p2pgo.c
patching file src/peer.c
patching file src/peer_service.c
patching file src/sd.c
patching file src/service.c
Hunk #1 succeeded at 7280 (offset 126 lines).
patching file src/storage.c
Hunk #1 succeeded at 263 (offset -22 lines).
Hunk #2 succeeded at 281 (offset -22 lines).
Hunk #3 succeeded at 465 (offset -22 lines).
patching file src/technology.c
patching file src/util.c
Patch 0020-Add-p2p-changes.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
[PLAT-137851] CCC: connman=v1.39

Change-Id: Idda857654f73e2ae9523af5e036513b328ab734a
hyunjae92-shin pushed a commit that referenced this issue Apr 1, 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 #3 succeeded at 168 with fuzz 1 (offset 2 lines).
Hunk #4 succeeded at 224 (offset 7 lines).
Hunk #5 succeeded at 812 (offset 8 lines).
Hunk #6 succeeded at 2080 (offset 28 lines).
Hunk #7 succeeded at 2302 (offset 28 lines).
Hunk #8 succeeded at 2328 (offset 28 lines).
Hunk #9 succeeded at 2358 (offset 28 lines).
Hunk #10 succeeded at 2479 (offset 28 lines).
Hunk #11 succeeded at 2536 (offset 40 lines).
Hunk #12 FAILED at 2634.
Hunk #13 succeeded at 2756 (offset 54 lines).
Hunk #14 succeeded at 2822 (offset 54 lines).
Hunk #15 succeeded at 2859 (offset 54 lines).
Hunk #16 succeeded at 2887 (offset 54 lines).
Hunk #17 succeeded at 2897 (offset 54 lines).
Hunk #18 succeeded at 2906 (offset 54 lines).
Hunk #19 succeeded at 2952 (offset 51 lines).
Hunk #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
[PLAT-137851] CCC: connman=v1.39

Change-Id: I846bed5c386a0f8a5ebcd6453c0fa85f9f7dd4e2
shr-project added a commit to shr-project/meta-webosose that referenced this issue Jul 21, 2023
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=d7bf88db7f2f55540bf7891474a3a28f5681ddbb
backported to mickledore as well in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=a071696747ece93409d533a2e966cd59195a056d

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/623492

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/gst-plugins-bad-1.22.4'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk webosose#3 succeeded at 167 (offset 4 lines).
Hunk webosose#4 succeeded at 187 (offset 4 lines).
Hunk webosose#5 succeeded at 197 (offset 4 lines).
Hunk webosose#6 succeeded at 207 (offset 4 lines).
Hunk webosose#7 succeeded at 216 (offset 4 lines).
Hunk webosose#8 succeeded at 271 (offset 4 lines).
Hunk webosose#9 succeeded at 283 (offset 4 lines).
Hunk webosose#10 succeeded at 303 (offset 4 lines).
Hunk webosose#11 succeeded at 318 (offset 4 lines).
Hunk webosose#12 succeeded at 348 (offset 4 lines).
Hunk webosose#13 succeeded at 387 (offset 4 lines).
Hunk webosose#14 succeeded at 402 (offset 4 lines).
Hunk webosose#15 succeeded at 435 (offset 4 lines).
Hunk webosose#16 succeeded at 458 (offset 4 lines).
Hunk webosose#17 FAILED at 476.
Hunk webosose#18 succeeded at 616 (offset 5 lines).
Hunk webosose#19 succeeded at 669 (offset 5 lines).
1 out of 19 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c
Patch 0004-waylandsink-remove-unsupported-subcompositor.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRP-13301] Create GPVB with Yocto 4.3 Nanbield
[WRP-412] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I65381c6a3b7e0f65ceabf592d34d807972867b1c
shr-project added a commit to shr-project/meta-webosose that referenced this issue Jan 17, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=d7bf88db7f2f55540bf7891474a3a28f5681ddbb
backported to mickledore as well in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=a071696747ece93409d533a2e966cd59195a056d

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/623492

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/gst-plugins-bad-1.22.4'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk webosose#3 succeeded at 167 (offset 4 lines).
Hunk webosose#4 succeeded at 187 (offset 4 lines).
Hunk webosose#5 succeeded at 197 (offset 4 lines).
Hunk webosose#6 succeeded at 207 (offset 4 lines).
Hunk webosose#7 succeeded at 216 (offset 4 lines).
Hunk webosose#8 succeeded at 271 (offset 4 lines).
Hunk webosose#9 succeeded at 283 (offset 4 lines).
Hunk webosose#10 succeeded at 303 (offset 4 lines).
Hunk webosose#11 succeeded at 318 (offset 4 lines).
Hunk webosose#12 succeeded at 348 (offset 4 lines).
Hunk webosose#13 succeeded at 387 (offset 4 lines).
Hunk webosose#14 succeeded at 402 (offset 4 lines).
Hunk webosose#15 succeeded at 435 (offset 4 lines).
Hunk webosose#16 succeeded at 458 (offset 4 lines).
Hunk webosose#17 FAILED at 476.
Hunk webosose#18 succeeded at 616 (offset 5 lines).
Hunk webosose#19 succeeded at 669 (offset 5 lines).
1 out of 19 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c
Patch 0004-waylandsink-remove-unsupported-subcompositor.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRP-13301] Create GPVB with Yocto 4.3 Nanbield
[WRP-412] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I65381c6a3b7e0f65ceabf592d34d807972867b1c
shr-project added a commit to shr-project/meta-webosose that referenced this issue Jan 17, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=ff2fc789e08c42903f5e528d4836dd482227291c
backported to mickledore in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=f481d973d7f942f8a9492cd71985bd1d428ac59a

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/710585

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/gst-plugins-bad-1.22.6'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk #2 succeeded at 67 (offset 3 lines).
Hunk webosose#3 succeeded at 170 (offset 3 lines).
Hunk webosose#4 succeeded at 190 (offset 3 lines).
Hunk webosose#5 succeeded at 200 (offset 3 lines).
Hunk webosose#6 succeeded at 210 (offset 3 lines).
Hunk webosose#7 succeeded at 219 (offset 3 lines).
Hunk webosose#8 succeeded at 274 (offset 3 lines).
Hunk webosose#9 succeeded at 286 (offset 3 lines).
Hunk webosose#10 succeeded at 306 (offset 3 lines).
Hunk webosose#11 succeeded at 321 (offset 3 lines).
Hunk webosose#12 succeeded at 351 (offset 3 lines).
Hunk webosose#13 succeeded at 390 (offset 3 lines).
Hunk webosose#14 succeeded at 405 (offset 3 lines).
Hunk webosose#15 succeeded at 441 (offset 6 lines).
Hunk webosose#16 succeeded at 464 (offset 6 lines).
Hunk webosose#17 succeeded at 487 with fuzz 1 (offset 7 lines).
Hunk webosose#18 FAILED at 503.
Hunk webosose#19 succeeded at 625 (offset 7 lines).
Hunk webosose#20 succeeded at 678 (offset 7 lines).
1 out of 20 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRP-13301] Create GPVB with Yocto 4.3 Nanbield
[WRP-412] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I444ab46e8b664357f9aac468b3dc35b510664d57
shr-project added a commit to shr-project/meta-webosose that referenced this issue Jan 19, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=d7bf88db7f2f55540bf7891474a3a28f5681ddbb
backported to mickledore as well in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=a071696747ece93409d533a2e966cd59195a056d

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/623492

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/gst-plugins-bad-1.22.4'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk webosose#3 succeeded at 167 (offset 4 lines).
Hunk webosose#4 succeeded at 187 (offset 4 lines).
Hunk webosose#5 succeeded at 197 (offset 4 lines).
Hunk webosose#6 succeeded at 207 (offset 4 lines).
Hunk webosose#7 succeeded at 216 (offset 4 lines).
Hunk webosose#8 succeeded at 271 (offset 4 lines).
Hunk webosose#9 succeeded at 283 (offset 4 lines).
Hunk webosose#10 succeeded at 303 (offset 4 lines).
Hunk webosose#11 succeeded at 318 (offset 4 lines).
Hunk webosose#12 succeeded at 348 (offset 4 lines).
Hunk webosose#13 succeeded at 387 (offset 4 lines).
Hunk webosose#14 succeeded at 402 (offset 4 lines).
Hunk webosose#15 succeeded at 435 (offset 4 lines).
Hunk webosose#16 succeeded at 458 (offset 4 lines).
Hunk webosose#17 FAILED at 476.
Hunk webosose#18 succeeded at 616 (offset 5 lines).
Hunk webosose#19 succeeded at 669 (offset 5 lines).
1 out of 19 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c
Patch 0004-waylandsink-remove-unsupported-subcompositor.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRP-13301] Create GPVB with Yocto 4.3 Nanbield
[WRP-412] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I65381c6a3b7e0f65ceabf592d34d807972867b1c
shr-project added a commit to shr-project/meta-webosose that referenced this issue Jan 19, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=ff2fc789e08c42903f5e528d4836dd482227291c
backported to mickledore in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=f481d973d7f942f8a9492cd71985bd1d428ac59a

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/710585

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/gst-plugins-bad-1.22.6'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk #2 succeeded at 67 (offset 3 lines).
Hunk webosose#3 succeeded at 170 (offset 3 lines).
Hunk webosose#4 succeeded at 190 (offset 3 lines).
Hunk webosose#5 succeeded at 200 (offset 3 lines).
Hunk webosose#6 succeeded at 210 (offset 3 lines).
Hunk webosose#7 succeeded at 219 (offset 3 lines).
Hunk webosose#8 succeeded at 274 (offset 3 lines).
Hunk webosose#9 succeeded at 286 (offset 3 lines).
Hunk webosose#10 succeeded at 306 (offset 3 lines).
Hunk webosose#11 succeeded at 321 (offset 3 lines).
Hunk webosose#12 succeeded at 351 (offset 3 lines).
Hunk webosose#13 succeeded at 390 (offset 3 lines).
Hunk webosose#14 succeeded at 405 (offset 3 lines).
Hunk webosose#15 succeeded at 441 (offset 6 lines).
Hunk webosose#16 succeeded at 464 (offset 6 lines).
Hunk webosose#17 succeeded at 487 with fuzz 1 (offset 7 lines).
Hunk webosose#18 FAILED at 503.
Hunk webosose#19 succeeded at 625 (offset 7 lines).
Hunk webosose#20 succeeded at 678 (offset 7 lines).
1 out of 20 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRP-13301] Create GPVB with Yocto 4.3 Nanbield
[WRP-412] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I444ab46e8b664357f9aac468b3dc35b510664d57
shr-project added a commit to shr-project/meta-webosose that referenced this issue Feb 3, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=d7bf88db7f2f55540bf7891474a3a28f5681ddbb
backported to mickledore as well in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=a071696747ece93409d533a2e966cd59195a056d

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/623492

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/gst-plugins-bad-1.22.4'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk webosose#3 succeeded at 167 (offset 4 lines).
Hunk webosose#4 succeeded at 187 (offset 4 lines).
Hunk webosose#5 succeeded at 197 (offset 4 lines).
Hunk webosose#6 succeeded at 207 (offset 4 lines).
Hunk webosose#7 succeeded at 216 (offset 4 lines).
Hunk webosose#8 succeeded at 271 (offset 4 lines).
Hunk webosose#9 succeeded at 283 (offset 4 lines).
Hunk webosose#10 succeeded at 303 (offset 4 lines).
Hunk webosose#11 succeeded at 318 (offset 4 lines).
Hunk webosose#12 succeeded at 348 (offset 4 lines).
Hunk webosose#13 succeeded at 387 (offset 4 lines).
Hunk webosose#14 succeeded at 402 (offset 4 lines).
Hunk webosose#15 succeeded at 435 (offset 4 lines).
Hunk webosose#16 succeeded at 458 (offset 4 lines).
Hunk webosose#17 FAILED at 476.
Hunk webosose#18 succeeded at 616 (offset 5 lines).
Hunk webosose#19 succeeded at 669 (offset 5 lines).
1 out of 19 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c
Patch 0004-waylandsink-remove-unsupported-subcompositor.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRP-13301] Create GPVB with Yocto 4.3 Nanbield
[WRP-412] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I65381c6a3b7e0f65ceabf592d34d807972867b1c
shr-project added a commit to shr-project/meta-webosose that referenced this issue Feb 3, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=ff2fc789e08c42903f5e528d4836dd482227291c
backported to mickledore in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=f481d973d7f942f8a9492cd71985bd1d428ac59a

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/710585

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/gst-plugins-bad-1.22.6'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk #2 succeeded at 67 (offset 3 lines).
Hunk webosose#3 succeeded at 170 (offset 3 lines).
Hunk webosose#4 succeeded at 190 (offset 3 lines).
Hunk webosose#5 succeeded at 200 (offset 3 lines).
Hunk webosose#6 succeeded at 210 (offset 3 lines).
Hunk webosose#7 succeeded at 219 (offset 3 lines).
Hunk webosose#8 succeeded at 274 (offset 3 lines).
Hunk webosose#9 succeeded at 286 (offset 3 lines).
Hunk webosose#10 succeeded at 306 (offset 3 lines).
Hunk webosose#11 succeeded at 321 (offset 3 lines).
Hunk webosose#12 succeeded at 351 (offset 3 lines).
Hunk webosose#13 succeeded at 390 (offset 3 lines).
Hunk webosose#14 succeeded at 405 (offset 3 lines).
Hunk webosose#15 succeeded at 441 (offset 6 lines).
Hunk webosose#16 succeeded at 464 (offset 6 lines).
Hunk webosose#17 succeeded at 487 with fuzz 1 (offset 7 lines).
Hunk webosose#18 FAILED at 503.
Hunk webosose#19 succeeded at 625 (offset 7 lines).
Hunk webosose#20 succeeded at 678 (offset 7 lines).
1 out of 20 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRP-13301] Create GPVB with Yocto 4.3 Nanbield
[WRP-412] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I444ab46e8b664357f9aac468b3dc35b510664d57
shr-project added a commit to shr-project/meta-webosose that referenced this issue Feb 6, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=d7bf88db7f2f55540bf7891474a3a28f5681ddbb
backported to mickledore as well in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=a071696747ece93409d533a2e966cd59195a056d

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/623492

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/gst-plugins-bad-1.22.4'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk webosose#3 succeeded at 167 (offset 4 lines).
Hunk webosose#4 succeeded at 187 (offset 4 lines).
Hunk webosose#5 succeeded at 197 (offset 4 lines).
Hunk webosose#6 succeeded at 207 (offset 4 lines).
Hunk webosose#7 succeeded at 216 (offset 4 lines).
Hunk webosose#8 succeeded at 271 (offset 4 lines).
Hunk webosose#9 succeeded at 283 (offset 4 lines).
Hunk webosose#10 succeeded at 303 (offset 4 lines).
Hunk webosose#11 succeeded at 318 (offset 4 lines).
Hunk webosose#12 succeeded at 348 (offset 4 lines).
Hunk webosose#13 succeeded at 387 (offset 4 lines).
Hunk webosose#14 succeeded at 402 (offset 4 lines).
Hunk webosose#15 succeeded at 435 (offset 4 lines).
Hunk webosose#16 succeeded at 458 (offset 4 lines).
Hunk webosose#17 FAILED at 476.
Hunk webosose#18 succeeded at 616 (offset 5 lines).
Hunk webosose#19 succeeded at 669 (offset 5 lines).
1 out of 19 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c
Patch 0004-waylandsink-remove-unsupported-subcompositor.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRP-13301] Create GPVB with Yocto 4.3 Nanbield
[WRP-412] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I65381c6a3b7e0f65ceabf592d34d807972867b1c
shr-project added a commit to shr-project/meta-webosose that referenced this issue Feb 6, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=ff2fc789e08c42903f5e528d4836dd482227291c
backported to mickledore in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=f481d973d7f942f8a9492cd71985bd1d428ac59a

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/710585

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/gst-plugins-bad-1.22.6'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk #2 succeeded at 67 (offset 3 lines).
Hunk webosose#3 succeeded at 170 (offset 3 lines).
Hunk webosose#4 succeeded at 190 (offset 3 lines).
Hunk webosose#5 succeeded at 200 (offset 3 lines).
Hunk webosose#6 succeeded at 210 (offset 3 lines).
Hunk webosose#7 succeeded at 219 (offset 3 lines).
Hunk webosose#8 succeeded at 274 (offset 3 lines).
Hunk webosose#9 succeeded at 286 (offset 3 lines).
Hunk webosose#10 succeeded at 306 (offset 3 lines).
Hunk webosose#11 succeeded at 321 (offset 3 lines).
Hunk webosose#12 succeeded at 351 (offset 3 lines).
Hunk webosose#13 succeeded at 390 (offset 3 lines).
Hunk webosose#14 succeeded at 405 (offset 3 lines).
Hunk webosose#15 succeeded at 441 (offset 6 lines).
Hunk webosose#16 succeeded at 464 (offset 6 lines).
Hunk webosose#17 succeeded at 487 with fuzz 1 (offset 7 lines).
Hunk webosose#18 FAILED at 503.
Hunk webosose#19 succeeded at 625 (offset 7 lines).
Hunk webosose#20 succeeded at 678 (offset 7 lines).
1 out of 20 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRP-13301] Create GPVB with Yocto 4.3 Nanbield
[WRP-412] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I444ab46e8b664357f9aac468b3dc35b510664d57
shr-project added a commit to shr-project/meta-webosose that referenced this issue Feb 7, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=d7bf88db7f2f55540bf7891474a3a28f5681ddbb
backported to mickledore as well in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=a071696747ece93409d533a2e966cd59195a056d

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/623492

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/gst-plugins-bad-1.22.4'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk webosose#3 succeeded at 167 (offset 4 lines).
Hunk webosose#4 succeeded at 187 (offset 4 lines).
Hunk webosose#5 succeeded at 197 (offset 4 lines).
Hunk webosose#6 succeeded at 207 (offset 4 lines).
Hunk webosose#7 succeeded at 216 (offset 4 lines).
Hunk webosose#8 succeeded at 271 (offset 4 lines).
Hunk webosose#9 succeeded at 283 (offset 4 lines).
Hunk webosose#10 succeeded at 303 (offset 4 lines).
Hunk webosose#11 succeeded at 318 (offset 4 lines).
Hunk webosose#12 succeeded at 348 (offset 4 lines).
Hunk webosose#13 succeeded at 387 (offset 4 lines).
Hunk webosose#14 succeeded at 402 (offset 4 lines).
Hunk webosose#15 succeeded at 435 (offset 4 lines).
Hunk webosose#16 succeeded at 458 (offset 4 lines).
Hunk webosose#17 FAILED at 476.
Hunk webosose#18 succeeded at 616 (offset 5 lines).
Hunk webosose#19 succeeded at 669 (offset 5 lines).
1 out of 19 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c
Patch 0004-waylandsink-remove-unsupported-subcompositor.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRP-13301] Create GPVB with Yocto 4.3 Nanbield
[WRP-412] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I65381c6a3b7e0f65ceabf592d34d807972867b1c
shr-project added a commit to shr-project/meta-webosose that referenced this issue Feb 7, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=ff2fc789e08c42903f5e528d4836dd482227291c
backported to mickledore in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=f481d973d7f942f8a9492cd71985bd1d428ac59a

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/710585

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/gst-plugins-bad-1.22.6'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk #2 succeeded at 67 (offset 3 lines).
Hunk webosose#3 succeeded at 170 (offset 3 lines).
Hunk webosose#4 succeeded at 190 (offset 3 lines).
Hunk webosose#5 succeeded at 200 (offset 3 lines).
Hunk webosose#6 succeeded at 210 (offset 3 lines).
Hunk webosose#7 succeeded at 219 (offset 3 lines).
Hunk webosose#8 succeeded at 274 (offset 3 lines).
Hunk webosose#9 succeeded at 286 (offset 3 lines).
Hunk webosose#10 succeeded at 306 (offset 3 lines).
Hunk webosose#11 succeeded at 321 (offset 3 lines).
Hunk webosose#12 succeeded at 351 (offset 3 lines).
Hunk webosose#13 succeeded at 390 (offset 3 lines).
Hunk webosose#14 succeeded at 405 (offset 3 lines).
Hunk webosose#15 succeeded at 441 (offset 6 lines).
Hunk webosose#16 succeeded at 464 (offset 6 lines).
Hunk webosose#17 succeeded at 487 with fuzz 1 (offset 7 lines).
Hunk webosose#18 FAILED at 503.
Hunk webosose#19 succeeded at 625 (offset 7 lines).
Hunk webosose#20 succeeded at 678 (offset 7 lines).
1 out of 20 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRP-13301] Create GPVB with Yocto 4.3 Nanbield
[WRP-412] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I444ab46e8b664357f9aac468b3dc35b510664d57
shr-project added a commit to shr-project/meta-webosose that referenced this issue Feb 21, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=d7bf88db7f2f55540bf7891474a3a28f5681ddbb
backported to mickledore as well in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=a071696747ece93409d533a2e966cd59195a056d

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/623492

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/gst-plugins-bad-1.22.4'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk webosose#3 succeeded at 167 (offset 4 lines).
Hunk webosose#4 succeeded at 187 (offset 4 lines).
Hunk webosose#5 succeeded at 197 (offset 4 lines).
Hunk webosose#6 succeeded at 207 (offset 4 lines).
Hunk webosose#7 succeeded at 216 (offset 4 lines).
Hunk webosose#8 succeeded at 271 (offset 4 lines).
Hunk webosose#9 succeeded at 283 (offset 4 lines).
Hunk webosose#10 succeeded at 303 (offset 4 lines).
Hunk webosose#11 succeeded at 318 (offset 4 lines).
Hunk webosose#12 succeeded at 348 (offset 4 lines).
Hunk webosose#13 succeeded at 387 (offset 4 lines).
Hunk webosose#14 succeeded at 402 (offset 4 lines).
Hunk webosose#15 succeeded at 435 (offset 4 lines).
Hunk webosose#16 succeeded at 458 (offset 4 lines).
Hunk webosose#17 FAILED at 476.
Hunk webosose#18 succeeded at 616 (offset 5 lines).
Hunk webosose#19 succeeded at 669 (offset 5 lines).
1 out of 19 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c
Patch 0004-waylandsink-remove-unsupported-subcompositor.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRP-13301] Create GPVB with Yocto 4.3 Nanbield
[WRP-412] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I65381c6a3b7e0f65ceabf592d34d807972867b1c
shr-project added a commit to shr-project/meta-webosose that referenced this issue Feb 21, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=ff2fc789e08c42903f5e528d4836dd482227291c
backported to mickledore in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=f481d973d7f942f8a9492cd71985bd1d428ac59a

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/710585

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/gst-plugins-bad-1.22.6'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk #2 succeeded at 67 (offset 3 lines).
Hunk webosose#3 succeeded at 170 (offset 3 lines).
Hunk webosose#4 succeeded at 190 (offset 3 lines).
Hunk webosose#5 succeeded at 200 (offset 3 lines).
Hunk webosose#6 succeeded at 210 (offset 3 lines).
Hunk webosose#7 succeeded at 219 (offset 3 lines).
Hunk webosose#8 succeeded at 274 (offset 3 lines).
Hunk webosose#9 succeeded at 286 (offset 3 lines).
Hunk webosose#10 succeeded at 306 (offset 3 lines).
Hunk webosose#11 succeeded at 321 (offset 3 lines).
Hunk webosose#12 succeeded at 351 (offset 3 lines).
Hunk webosose#13 succeeded at 390 (offset 3 lines).
Hunk webosose#14 succeeded at 405 (offset 3 lines).
Hunk webosose#15 succeeded at 441 (offset 6 lines).
Hunk webosose#16 succeeded at 464 (offset 6 lines).
Hunk webosose#17 succeeded at 487 with fuzz 1 (offset 7 lines).
Hunk webosose#18 FAILED at 503.
Hunk webosose#19 succeeded at 625 (offset 7 lines).
Hunk webosose#20 succeeded at 678 (offset 7 lines).
1 out of 20 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRP-13301] Create GPVB with Yocto 4.3 Nanbield
[WRP-412] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I444ab46e8b664357f9aac468b3dc35b510664d57
shr-project added a commit to shr-project/meta-webosose that referenced this issue Feb 22, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=d7bf88db7f2f55540bf7891474a3a28f5681ddbb
backported to mickledore as well in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=a071696747ece93409d533a2e966cd59195a056d

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/623492

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/gst-plugins-bad-1.22.4'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk webosose#3 succeeded at 167 (offset 4 lines).
Hunk webosose#4 succeeded at 187 (offset 4 lines).
Hunk webosose#5 succeeded at 197 (offset 4 lines).
Hunk webosose#6 succeeded at 207 (offset 4 lines).
Hunk webosose#7 succeeded at 216 (offset 4 lines).
Hunk webosose#8 succeeded at 271 (offset 4 lines).
Hunk webosose#9 succeeded at 283 (offset 4 lines).
Hunk webosose#10 succeeded at 303 (offset 4 lines).
Hunk webosose#11 succeeded at 318 (offset 4 lines).
Hunk webosose#12 succeeded at 348 (offset 4 lines).
Hunk webosose#13 succeeded at 387 (offset 4 lines).
Hunk webosose#14 succeeded at 402 (offset 4 lines).
Hunk webosose#15 succeeded at 435 (offset 4 lines).
Hunk webosose#16 succeeded at 458 (offset 4 lines).
Hunk webosose#17 FAILED at 476.
Hunk webosose#18 succeeded at 616 (offset 5 lines).
Hunk webosose#19 succeeded at 669 (offset 5 lines).
1 out of 19 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c
Patch 0004-waylandsink-remove-unsupported-subcompositor.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRP-13301] Create GPVB with Yocto 4.3 Nanbield
[WRP-412] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I65381c6a3b7e0f65ceabf592d34d807972867b1c
shr-project added a commit to shr-project/meta-webosose that referenced this issue Feb 22, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=ff2fc789e08c42903f5e528d4836dd482227291c
backported to mickledore in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=f481d973d7f942f8a9492cd71985bd1d428ac59a

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/710585

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/gst-plugins-bad-1.22.6'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk #2 succeeded at 67 (offset 3 lines).
Hunk webosose#3 succeeded at 170 (offset 3 lines).
Hunk webosose#4 succeeded at 190 (offset 3 lines).
Hunk webosose#5 succeeded at 200 (offset 3 lines).
Hunk webosose#6 succeeded at 210 (offset 3 lines).
Hunk webosose#7 succeeded at 219 (offset 3 lines).
Hunk webosose#8 succeeded at 274 (offset 3 lines).
Hunk webosose#9 succeeded at 286 (offset 3 lines).
Hunk webosose#10 succeeded at 306 (offset 3 lines).
Hunk webosose#11 succeeded at 321 (offset 3 lines).
Hunk webosose#12 succeeded at 351 (offset 3 lines).
Hunk webosose#13 succeeded at 390 (offset 3 lines).
Hunk webosose#14 succeeded at 405 (offset 3 lines).
Hunk webosose#15 succeeded at 441 (offset 6 lines).
Hunk webosose#16 succeeded at 464 (offset 6 lines).
Hunk webosose#17 succeeded at 487 with fuzz 1 (offset 7 lines).
Hunk webosose#18 FAILED at 503.
Hunk webosose#19 succeeded at 625 (offset 7 lines).
Hunk webosose#20 succeeded at 678 (offset 7 lines).
1 out of 20 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRP-13301] Create GPVB with Yocto 4.3 Nanbield
[WRP-412] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I444ab46e8b664357f9aac468b3dc35b510664d57
shr-project added a commit to shr-project/meta-webosose that referenced this issue Feb 22, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=d7bf88db7f2f55540bf7891474a3a28f5681ddbb
backported to mickledore as well in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=a071696747ece93409d533a2e966cd59195a056d

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/623492

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/gst-plugins-bad-1.22.4'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk webosose#3 succeeded at 167 (offset 4 lines).
Hunk webosose#4 succeeded at 187 (offset 4 lines).
Hunk webosose#5 succeeded at 197 (offset 4 lines).
Hunk webosose#6 succeeded at 207 (offset 4 lines).
Hunk webosose#7 succeeded at 216 (offset 4 lines).
Hunk webosose#8 succeeded at 271 (offset 4 lines).
Hunk webosose#9 succeeded at 283 (offset 4 lines).
Hunk webosose#10 succeeded at 303 (offset 4 lines).
Hunk webosose#11 succeeded at 318 (offset 4 lines).
Hunk webosose#12 succeeded at 348 (offset 4 lines).
Hunk webosose#13 succeeded at 387 (offset 4 lines).
Hunk webosose#14 succeeded at 402 (offset 4 lines).
Hunk webosose#15 succeeded at 435 (offset 4 lines).
Hunk webosose#16 succeeded at 458 (offset 4 lines).
Hunk webosose#17 FAILED at 476.
Hunk webosose#18 succeeded at 616 (offset 5 lines).
Hunk webosose#19 succeeded at 669 (offset 5 lines).
1 out of 19 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c
Patch 0004-waylandsink-remove-unsupported-subcompositor.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRP-13301] Create GPVB with Yocto 4.3 Nanbield
[WRP-412] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I65381c6a3b7e0f65ceabf592d34d807972867b1c
shr-project added a commit to shr-project/meta-webosose that referenced this issue Feb 22, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=ff2fc789e08c42903f5e528d4836dd482227291c
backported to mickledore in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=f481d973d7f942f8a9492cd71985bd1d428ac59a

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/710585

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/gst-plugins-bad-1.22.6'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk #2 succeeded at 67 (offset 3 lines).
Hunk webosose#3 succeeded at 170 (offset 3 lines).
Hunk webosose#4 succeeded at 190 (offset 3 lines).
Hunk webosose#5 succeeded at 200 (offset 3 lines).
Hunk webosose#6 succeeded at 210 (offset 3 lines).
Hunk webosose#7 succeeded at 219 (offset 3 lines).
Hunk webosose#8 succeeded at 274 (offset 3 lines).
Hunk webosose#9 succeeded at 286 (offset 3 lines).
Hunk webosose#10 succeeded at 306 (offset 3 lines).
Hunk webosose#11 succeeded at 321 (offset 3 lines).
Hunk webosose#12 succeeded at 351 (offset 3 lines).
Hunk webosose#13 succeeded at 390 (offset 3 lines).
Hunk webosose#14 succeeded at 405 (offset 3 lines).
Hunk webosose#15 succeeded at 441 (offset 6 lines).
Hunk webosose#16 succeeded at 464 (offset 6 lines).
Hunk webosose#17 succeeded at 487 with fuzz 1 (offset 7 lines).
Hunk webosose#18 FAILED at 503.
Hunk webosose#19 succeeded at 625 (offset 7 lines).
Hunk webosose#20 succeeded at 678 (offset 7 lines).
1 out of 20 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRP-13301] Create GPVB with Yocto 4.3 Nanbield
[WRP-412] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I444ab46e8b664357f9aac468b3dc35b510664d57
shr-project added a commit to shr-project/meta-webosose that referenced this issue Feb 24, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=d7bf88db7f2f55540bf7891474a3a28f5681ddbb
backported to mickledore as well in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=a071696747ece93409d533a2e966cd59195a056d

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/623492

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/gst-plugins-bad-1.22.4'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk webosose#3 succeeded at 167 (offset 4 lines).
Hunk webosose#4 succeeded at 187 (offset 4 lines).
Hunk webosose#5 succeeded at 197 (offset 4 lines).
Hunk webosose#6 succeeded at 207 (offset 4 lines).
Hunk webosose#7 succeeded at 216 (offset 4 lines).
Hunk webosose#8 succeeded at 271 (offset 4 lines).
Hunk webosose#9 succeeded at 283 (offset 4 lines).
Hunk webosose#10 succeeded at 303 (offset 4 lines).
Hunk webosose#11 succeeded at 318 (offset 4 lines).
Hunk webosose#12 succeeded at 348 (offset 4 lines).
Hunk webosose#13 succeeded at 387 (offset 4 lines).
Hunk webosose#14 succeeded at 402 (offset 4 lines).
Hunk webosose#15 succeeded at 435 (offset 4 lines).
Hunk webosose#16 succeeded at 458 (offset 4 lines).
Hunk webosose#17 FAILED at 476.
Hunk webosose#18 succeeded at 616 (offset 5 lines).
Hunk webosose#19 succeeded at 669 (offset 5 lines).
1 out of 19 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c
Patch 0004-waylandsink-remove-unsupported-subcompositor.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRP-13301] Create GPVB with Yocto 4.3 Nanbield
[WRP-412] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I65381c6a3b7e0f65ceabf592d34d807972867b1c
shr-project added a commit to shr-project/meta-webosose that referenced this issue Feb 24, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=ff2fc789e08c42903f5e528d4836dd482227291c
backported to mickledore in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=f481d973d7f942f8a9492cd71985bd1d428ac59a

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/710585

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/gst-plugins-bad-1.22.6'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk #2 succeeded at 67 (offset 3 lines).
Hunk webosose#3 succeeded at 170 (offset 3 lines).
Hunk webosose#4 succeeded at 190 (offset 3 lines).
Hunk webosose#5 succeeded at 200 (offset 3 lines).
Hunk webosose#6 succeeded at 210 (offset 3 lines).
Hunk webosose#7 succeeded at 219 (offset 3 lines).
Hunk webosose#8 succeeded at 274 (offset 3 lines).
Hunk webosose#9 succeeded at 286 (offset 3 lines).
Hunk webosose#10 succeeded at 306 (offset 3 lines).
Hunk webosose#11 succeeded at 321 (offset 3 lines).
Hunk webosose#12 succeeded at 351 (offset 3 lines).
Hunk webosose#13 succeeded at 390 (offset 3 lines).
Hunk webosose#14 succeeded at 405 (offset 3 lines).
Hunk webosose#15 succeeded at 441 (offset 6 lines).
Hunk webosose#16 succeeded at 464 (offset 6 lines).
Hunk webosose#17 succeeded at 487 with fuzz 1 (offset 7 lines).
Hunk webosose#18 FAILED at 503.
Hunk webosose#19 succeeded at 625 (offset 7 lines).
Hunk webosose#20 succeeded at 678 (offset 7 lines).
1 out of 20 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRP-13301] Create GPVB with Yocto 4.3 Nanbield
[WRP-412] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I444ab46e8b664357f9aac468b3dc35b510664d57
shr-project added a commit to shr-project/meta-webosose that referenced this issue Feb 26, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=d7bf88db7f2f55540bf7891474a3a28f5681ddbb
backported to mickledore as well in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=a071696747ece93409d533a2e966cd59195a056d

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/623492

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/gst-plugins-bad-1.22.4'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk webosose#3 succeeded at 167 (offset 4 lines).
Hunk webosose#4 succeeded at 187 (offset 4 lines).
Hunk webosose#5 succeeded at 197 (offset 4 lines).
Hunk webosose#6 succeeded at 207 (offset 4 lines).
Hunk webosose#7 succeeded at 216 (offset 4 lines).
Hunk webosose#8 succeeded at 271 (offset 4 lines).
Hunk webosose#9 succeeded at 283 (offset 4 lines).
Hunk webosose#10 succeeded at 303 (offset 4 lines).
Hunk webosose#11 succeeded at 318 (offset 4 lines).
Hunk webosose#12 succeeded at 348 (offset 4 lines).
Hunk webosose#13 succeeded at 387 (offset 4 lines).
Hunk webosose#14 succeeded at 402 (offset 4 lines).
Hunk webosose#15 succeeded at 435 (offset 4 lines).
Hunk webosose#16 succeeded at 458 (offset 4 lines).
Hunk webosose#17 FAILED at 476.
Hunk webosose#18 succeeded at 616 (offset 5 lines).
Hunk webosose#19 succeeded at 669 (offset 5 lines).
1 out of 19 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c
Patch 0004-waylandsink-remove-unsupported-subcompositor.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRP-13301] Create GPVB with Yocto 4.3 Nanbield
[WRP-412] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I65381c6a3b7e0f65ceabf592d34d807972867b1c
shr-project added a commit to shr-project/meta-webosose that referenced this issue Feb 26, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=ff2fc789e08c42903f5e528d4836dd482227291c
backported to mickledore in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=f481d973d7f942f8a9492cd71985bd1d428ac59a

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/710585

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/gst-plugins-bad-1.22.6'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk #2 succeeded at 67 (offset 3 lines).
Hunk webosose#3 succeeded at 170 (offset 3 lines).
Hunk webosose#4 succeeded at 190 (offset 3 lines).
Hunk webosose#5 succeeded at 200 (offset 3 lines).
Hunk webosose#6 succeeded at 210 (offset 3 lines).
Hunk webosose#7 succeeded at 219 (offset 3 lines).
Hunk webosose#8 succeeded at 274 (offset 3 lines).
Hunk webosose#9 succeeded at 286 (offset 3 lines).
Hunk webosose#10 succeeded at 306 (offset 3 lines).
Hunk webosose#11 succeeded at 321 (offset 3 lines).
Hunk webosose#12 succeeded at 351 (offset 3 lines).
Hunk webosose#13 succeeded at 390 (offset 3 lines).
Hunk webosose#14 succeeded at 405 (offset 3 lines).
Hunk webosose#15 succeeded at 441 (offset 6 lines).
Hunk webosose#16 succeeded at 464 (offset 6 lines).
Hunk webosose#17 succeeded at 487 with fuzz 1 (offset 7 lines).
Hunk webosose#18 FAILED at 503.
Hunk webosose#19 succeeded at 625 (offset 7 lines).
Hunk webosose#20 succeeded at 678 (offset 7 lines).
1 out of 20 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRP-13301] Create GPVB with Yocto 4.3 Nanbield
[WRP-412] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I444ab46e8b664357f9aac468b3dc35b510664d57
shr-project added a commit to shr-project/meta-webosose that referenced this issue Mar 1, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=d7bf88db7f2f55540bf7891474a3a28f5681ddbb
backported to mickledore as well in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=a071696747ece93409d533a2e966cd59195a056d

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/623492

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/gst-plugins-bad-1.22.4'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk webosose#3 succeeded at 167 (offset 4 lines).
Hunk webosose#4 succeeded at 187 (offset 4 lines).
Hunk webosose#5 succeeded at 197 (offset 4 lines).
Hunk webosose#6 succeeded at 207 (offset 4 lines).
Hunk webosose#7 succeeded at 216 (offset 4 lines).
Hunk webosose#8 succeeded at 271 (offset 4 lines).
Hunk webosose#9 succeeded at 283 (offset 4 lines).
Hunk webosose#10 succeeded at 303 (offset 4 lines).
Hunk webosose#11 succeeded at 318 (offset 4 lines).
Hunk webosose#12 succeeded at 348 (offset 4 lines).
Hunk webosose#13 succeeded at 387 (offset 4 lines).
Hunk webosose#14 succeeded at 402 (offset 4 lines).
Hunk webosose#15 succeeded at 435 (offset 4 lines).
Hunk webosose#16 succeeded at 458 (offset 4 lines).
Hunk webosose#17 FAILED at 476.
Hunk webosose#18 succeeded at 616 (offset 5 lines).
Hunk webosose#19 succeeded at 669 (offset 5 lines).
1 out of 19 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c
Patch 0004-waylandsink-remove-unsupported-subcompositor.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRQ-691] Create GPVB with Yocto 4.3 Nanbield
[WRQ-693] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I65381c6a3b7e0f65ceabf592d34d807972867b1c
shr-project added a commit to shr-project/meta-webosose that referenced this issue Mar 1, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=ff2fc789e08c42903f5e528d4836dd482227291c
backported to mickledore in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=f481d973d7f942f8a9492cd71985bd1d428ac59a

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/710585

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/gst-plugins-bad-1.22.6'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk #2 succeeded at 67 (offset 3 lines).
Hunk webosose#3 succeeded at 170 (offset 3 lines).
Hunk webosose#4 succeeded at 190 (offset 3 lines).
Hunk webosose#5 succeeded at 200 (offset 3 lines).
Hunk webosose#6 succeeded at 210 (offset 3 lines).
Hunk webosose#7 succeeded at 219 (offset 3 lines).
Hunk webosose#8 succeeded at 274 (offset 3 lines).
Hunk webosose#9 succeeded at 286 (offset 3 lines).
Hunk webosose#10 succeeded at 306 (offset 3 lines).
Hunk webosose#11 succeeded at 321 (offset 3 lines).
Hunk webosose#12 succeeded at 351 (offset 3 lines).
Hunk webosose#13 succeeded at 390 (offset 3 lines).
Hunk webosose#14 succeeded at 405 (offset 3 lines).
Hunk webosose#15 succeeded at 441 (offset 6 lines).
Hunk webosose#16 succeeded at 464 (offset 6 lines).
Hunk webosose#17 succeeded at 487 with fuzz 1 (offset 7 lines).
Hunk webosose#18 FAILED at 503.
Hunk webosose#19 succeeded at 625 (offset 7 lines).
Hunk webosose#20 succeeded at 678 (offset 7 lines).
1 out of 20 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRQ-691] Create GPVB with Yocto 4.3 Nanbield
[WRQ-693] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I444ab46e8b664357f9aac468b3dc35b510664d57
shr-project added a commit to shr-project/meta-webosose that referenced this issue Mar 10, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=d7bf88db7f2f55540bf7891474a3a28f5681ddbb
backported to mickledore as well in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=a071696747ece93409d533a2e966cd59195a056d

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/623492

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/gst-plugins-bad-1.22.4'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk webosose#3 succeeded at 167 (offset 4 lines).
Hunk webosose#4 succeeded at 187 (offset 4 lines).
Hunk webosose#5 succeeded at 197 (offset 4 lines).
Hunk webosose#6 succeeded at 207 (offset 4 lines).
Hunk webosose#7 succeeded at 216 (offset 4 lines).
Hunk webosose#8 succeeded at 271 (offset 4 lines).
Hunk webosose#9 succeeded at 283 (offset 4 lines).
Hunk webosose#10 succeeded at 303 (offset 4 lines).
Hunk webosose#11 succeeded at 318 (offset 4 lines).
Hunk webosose#12 succeeded at 348 (offset 4 lines).
Hunk webosose#13 succeeded at 387 (offset 4 lines).
Hunk webosose#14 succeeded at 402 (offset 4 lines).
Hunk webosose#15 succeeded at 435 (offset 4 lines).
Hunk webosose#16 succeeded at 458 (offset 4 lines).
Hunk webosose#17 FAILED at 476.
Hunk webosose#18 succeeded at 616 (offset 5 lines).
Hunk webosose#19 succeeded at 669 (offset 5 lines).
1 out of 19 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c
Patch 0004-waylandsink-remove-unsupported-subcompositor.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRQ-691] Create GPVB with Yocto 4.3 Nanbield
[WRQ-693] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I65381c6a3b7e0f65ceabf592d34d807972867b1c
shr-project added a commit to shr-project/meta-webosose that referenced this issue Mar 10, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=ff2fc789e08c42903f5e528d4836dd482227291c
backported to mickledore in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=f481d973d7f942f8a9492cd71985bd1d428ac59a

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/710585

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/gst-plugins-bad-1.22.6'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk #2 succeeded at 67 (offset 3 lines).
Hunk webosose#3 succeeded at 170 (offset 3 lines).
Hunk webosose#4 succeeded at 190 (offset 3 lines).
Hunk webosose#5 succeeded at 200 (offset 3 lines).
Hunk webosose#6 succeeded at 210 (offset 3 lines).
Hunk webosose#7 succeeded at 219 (offset 3 lines).
Hunk webosose#8 succeeded at 274 (offset 3 lines).
Hunk webosose#9 succeeded at 286 (offset 3 lines).
Hunk webosose#10 succeeded at 306 (offset 3 lines).
Hunk webosose#11 succeeded at 321 (offset 3 lines).
Hunk webosose#12 succeeded at 351 (offset 3 lines).
Hunk webosose#13 succeeded at 390 (offset 3 lines).
Hunk webosose#14 succeeded at 405 (offset 3 lines).
Hunk webosose#15 succeeded at 441 (offset 6 lines).
Hunk webosose#16 succeeded at 464 (offset 6 lines).
Hunk webosose#17 succeeded at 487 with fuzz 1 (offset 7 lines).
Hunk webosose#18 FAILED at 503.
Hunk webosose#19 succeeded at 625 (offset 7 lines).
Hunk webosose#20 succeeded at 678 (offset 7 lines).
1 out of 20 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRQ-691] Create GPVB with Yocto 4.3 Nanbield
[WRQ-693] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I444ab46e8b664357f9aac468b3dc35b510664d57
shr-project added a commit to shr-project/meta-webosose that referenced this issue May 29, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=d7bf88db7f2f55540bf7891474a3a28f5681ddbb
backported to mickledore as well in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=a071696747ece93409d533a2e966cd59195a056d

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/623492

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/gst-plugins-bad-1.22.4'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk webosose#3 succeeded at 167 (offset 4 lines).
Hunk webosose#4 succeeded at 187 (offset 4 lines).
Hunk webosose#5 succeeded at 197 (offset 4 lines).
Hunk webosose#6 succeeded at 207 (offset 4 lines).
Hunk webosose#7 succeeded at 216 (offset 4 lines).
Hunk webosose#8 succeeded at 271 (offset 4 lines).
Hunk webosose#9 succeeded at 283 (offset 4 lines).
Hunk webosose#10 succeeded at 303 (offset 4 lines).
Hunk webosose#11 succeeded at 318 (offset 4 lines).
Hunk webosose#12 succeeded at 348 (offset 4 lines).
Hunk webosose#13 succeeded at 387 (offset 4 lines).
Hunk webosose#14 succeeded at 402 (offset 4 lines).
Hunk webosose#15 succeeded at 435 (offset 4 lines).
Hunk webosose#16 succeeded at 458 (offset 4 lines).
Hunk webosose#17 FAILED at 476.
Hunk webosose#18 succeeded at 616 (offset 5 lines).
Hunk webosose#19 succeeded at 669 (offset 5 lines).
1 out of 19 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c
Patch 0004-waylandsink-remove-unsupported-subcompositor.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRQ-691] Create GPVB with Yocto 4.3 Nanbield
[WRQ-693] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I65381c6a3b7e0f65ceabf592d34d807972867b1c
shr-project added a commit to shr-project/meta-webosose that referenced this issue May 29, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=ff2fc789e08c42903f5e528d4836dd482227291c
backported to mickledore in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=f481d973d7f942f8a9492cd71985bd1d428ac59a

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/710585

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/gst-plugins-bad-1.22.6'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk #2 succeeded at 67 (offset 3 lines).
Hunk webosose#3 succeeded at 170 (offset 3 lines).
Hunk webosose#4 succeeded at 190 (offset 3 lines).
Hunk webosose#5 succeeded at 200 (offset 3 lines).
Hunk webosose#6 succeeded at 210 (offset 3 lines).
Hunk webosose#7 succeeded at 219 (offset 3 lines).
Hunk webosose#8 succeeded at 274 (offset 3 lines).
Hunk webosose#9 succeeded at 286 (offset 3 lines).
Hunk webosose#10 succeeded at 306 (offset 3 lines).
Hunk webosose#11 succeeded at 321 (offset 3 lines).
Hunk webosose#12 succeeded at 351 (offset 3 lines).
Hunk webosose#13 succeeded at 390 (offset 3 lines).
Hunk webosose#14 succeeded at 405 (offset 3 lines).
Hunk webosose#15 succeeded at 441 (offset 6 lines).
Hunk webosose#16 succeeded at 464 (offset 6 lines).
Hunk webosose#17 succeeded at 487 with fuzz 1 (offset 7 lines).
Hunk webosose#18 FAILED at 503.
Hunk webosose#19 succeeded at 625 (offset 7 lines).
Hunk webosose#20 succeeded at 678 (offset 7 lines).
1 out of 20 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRQ-691] Create GPVB with Yocto 4.3 Nanbield
[WRQ-693] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I444ab46e8b664357f9aac468b3dc35b510664d57
shr-project added a commit to shr-project/meta-webosose that referenced this issue Jun 10, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=d7bf88db7f2f55540bf7891474a3a28f5681ddbb
backported to mickledore as well in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=a071696747ece93409d533a2e966cd59195a056d

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/623492

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/gst-plugins-bad-1.22.4'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk webosose#3 succeeded at 167 (offset 4 lines).
Hunk webosose#4 succeeded at 187 (offset 4 lines).
Hunk webosose#5 succeeded at 197 (offset 4 lines).
Hunk webosose#6 succeeded at 207 (offset 4 lines).
Hunk webosose#7 succeeded at 216 (offset 4 lines).
Hunk webosose#8 succeeded at 271 (offset 4 lines).
Hunk webosose#9 succeeded at 283 (offset 4 lines).
Hunk webosose#10 succeeded at 303 (offset 4 lines).
Hunk webosose#11 succeeded at 318 (offset 4 lines).
Hunk webosose#12 succeeded at 348 (offset 4 lines).
Hunk webosose#13 succeeded at 387 (offset 4 lines).
Hunk webosose#14 succeeded at 402 (offset 4 lines).
Hunk webosose#15 succeeded at 435 (offset 4 lines).
Hunk webosose#16 succeeded at 458 (offset 4 lines).
Hunk webosose#17 FAILED at 476.
Hunk webosose#18 succeeded at 616 (offset 5 lines).
Hunk webosose#19 succeeded at 669 (offset 5 lines).
1 out of 19 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c
Patch 0004-waylandsink-remove-unsupported-subcompositor.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRQ-691] Create GPVB with Yocto 4.3 Nanbield
[WRQ-693] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I65381c6a3b7e0f65ceabf592d34d807972867b1c
shr-project added a commit to shr-project/meta-webosose that referenced this issue Jun 10, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=ff2fc789e08c42903f5e528d4836dd482227291c
backported to mickledore in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=f481d973d7f942f8a9492cd71985bd1d428ac59a

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/710585

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/gst-plugins-bad-1.22.6'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk #2 succeeded at 67 (offset 3 lines).
Hunk webosose#3 succeeded at 170 (offset 3 lines).
Hunk webosose#4 succeeded at 190 (offset 3 lines).
Hunk webosose#5 succeeded at 200 (offset 3 lines).
Hunk webosose#6 succeeded at 210 (offset 3 lines).
Hunk webosose#7 succeeded at 219 (offset 3 lines).
Hunk webosose#8 succeeded at 274 (offset 3 lines).
Hunk webosose#9 succeeded at 286 (offset 3 lines).
Hunk webosose#10 succeeded at 306 (offset 3 lines).
Hunk webosose#11 succeeded at 321 (offset 3 lines).
Hunk webosose#12 succeeded at 351 (offset 3 lines).
Hunk webosose#13 succeeded at 390 (offset 3 lines).
Hunk webosose#14 succeeded at 405 (offset 3 lines).
Hunk webosose#15 succeeded at 441 (offset 6 lines).
Hunk webosose#16 succeeded at 464 (offset 6 lines).
Hunk webosose#17 succeeded at 487 with fuzz 1 (offset 7 lines).
Hunk webosose#18 FAILED at 503.
Hunk webosose#19 succeeded at 625 (offset 7 lines).
Hunk webosose#20 succeeded at 678 (offset 7 lines).
1 out of 20 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRQ-691] Create GPVB with Yocto 4.3 Nanbield
[WRQ-693] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I444ab46e8b664357f9aac468b3dc35b510664d57
shr-project added a commit to shr-project/meta-webosose that referenced this issue Jun 10, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=d7bf88db7f2f55540bf7891474a3a28f5681ddbb
backported to mickledore as well in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=a071696747ece93409d533a2e966cd59195a056d

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/623492

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/gst-plugins-bad-1.22.4'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk webosose#3 succeeded at 167 (offset 4 lines).
Hunk webosose#4 succeeded at 187 (offset 4 lines).
Hunk webosose#5 succeeded at 197 (offset 4 lines).
Hunk webosose#6 succeeded at 207 (offset 4 lines).
Hunk webosose#7 succeeded at 216 (offset 4 lines).
Hunk webosose#8 succeeded at 271 (offset 4 lines).
Hunk webosose#9 succeeded at 283 (offset 4 lines).
Hunk webosose#10 succeeded at 303 (offset 4 lines).
Hunk webosose#11 succeeded at 318 (offset 4 lines).
Hunk webosose#12 succeeded at 348 (offset 4 lines).
Hunk webosose#13 succeeded at 387 (offset 4 lines).
Hunk webosose#14 succeeded at 402 (offset 4 lines).
Hunk webosose#15 succeeded at 435 (offset 4 lines).
Hunk webosose#16 succeeded at 458 (offset 4 lines).
Hunk webosose#17 FAILED at 476.
Hunk webosose#18 succeeded at 616 (offset 5 lines).
Hunk webosose#19 succeeded at 669 (offset 5 lines).
1 out of 19 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c
Patch 0004-waylandsink-remove-unsupported-subcompositor.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRQ-691] Create GPVB with Yocto 4.3 Nanbield
[WRQ-693] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I65381c6a3b7e0f65ceabf592d34d807972867b1c
shr-project added a commit to shr-project/meta-webosose that referenced this issue Jun 10, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=ff2fc789e08c42903f5e528d4836dd482227291c
backported to mickledore in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=f481d973d7f942f8a9492cd71985bd1d428ac59a

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/710585

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/gst-plugins-bad-1.22.6'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk #2 succeeded at 67 (offset 3 lines).
Hunk webosose#3 succeeded at 170 (offset 3 lines).
Hunk webosose#4 succeeded at 190 (offset 3 lines).
Hunk webosose#5 succeeded at 200 (offset 3 lines).
Hunk webosose#6 succeeded at 210 (offset 3 lines).
Hunk webosose#7 succeeded at 219 (offset 3 lines).
Hunk webosose#8 succeeded at 274 (offset 3 lines).
Hunk webosose#9 succeeded at 286 (offset 3 lines).
Hunk webosose#10 succeeded at 306 (offset 3 lines).
Hunk webosose#11 succeeded at 321 (offset 3 lines).
Hunk webosose#12 succeeded at 351 (offset 3 lines).
Hunk webosose#13 succeeded at 390 (offset 3 lines).
Hunk webosose#14 succeeded at 405 (offset 3 lines).
Hunk webosose#15 succeeded at 441 (offset 6 lines).
Hunk webosose#16 succeeded at 464 (offset 6 lines).
Hunk webosose#17 succeeded at 487 with fuzz 1 (offset 7 lines).
Hunk webosose#18 FAILED at 503.
Hunk webosose#19 succeeded at 625 (offset 7 lines).
Hunk webosose#20 succeeded at 678 (offset 7 lines).
1 out of 20 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRQ-691] Create GPVB with Yocto 4.3 Nanbield
[WRQ-693] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I444ab46e8b664357f9aac468b3dc35b510664d57
shr-project added a commit to shr-project/meta-webosose that referenced this issue Jul 10, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=d7bf88db7f2f55540bf7891474a3a28f5681ddbb
backported to mickledore as well in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=a071696747ece93409d533a2e966cd59195a056d

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/623492

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/gst-plugins-bad-1.22.4'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk webosose#3 succeeded at 167 (offset 4 lines).
Hunk webosose#4 succeeded at 187 (offset 4 lines).
Hunk webosose#5 succeeded at 197 (offset 4 lines).
Hunk webosose#6 succeeded at 207 (offset 4 lines).
Hunk webosose#7 succeeded at 216 (offset 4 lines).
Hunk webosose#8 succeeded at 271 (offset 4 lines).
Hunk webosose#9 succeeded at 283 (offset 4 lines).
Hunk webosose#10 succeeded at 303 (offset 4 lines).
Hunk webosose#11 succeeded at 318 (offset 4 lines).
Hunk webosose#12 succeeded at 348 (offset 4 lines).
Hunk webosose#13 succeeded at 387 (offset 4 lines).
Hunk webosose#14 succeeded at 402 (offset 4 lines).
Hunk webosose#15 succeeded at 435 (offset 4 lines).
Hunk webosose#16 succeeded at 458 (offset 4 lines).
Hunk webosose#17 FAILED at 476.
Hunk webosose#18 succeeded at 616 (offset 5 lines).
Hunk webosose#19 succeeded at 669 (offset 5 lines).
1 out of 19 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c
Patch 0004-waylandsink-remove-unsupported-subcompositor.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRQ-691] Create GPVB with Yocto 4.3 Nanbield
[WRQ-693] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I65381c6a3b7e0f65ceabf592d34d807972867b1c
shr-project added a commit to shr-project/meta-webosose that referenced this issue Jul 10, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=ff2fc789e08c42903f5e528d4836dd482227291c
backported to mickledore in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=f481d973d7f942f8a9492cd71985bd1d428ac59a

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/710585

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/gst-plugins-bad-1.22.6'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk #2 succeeded at 67 (offset 3 lines).
Hunk webosose#3 succeeded at 170 (offset 3 lines).
Hunk webosose#4 succeeded at 190 (offset 3 lines).
Hunk webosose#5 succeeded at 200 (offset 3 lines).
Hunk webosose#6 succeeded at 210 (offset 3 lines).
Hunk webosose#7 succeeded at 219 (offset 3 lines).
Hunk webosose#8 succeeded at 274 (offset 3 lines).
Hunk webosose#9 succeeded at 286 (offset 3 lines).
Hunk webosose#10 succeeded at 306 (offset 3 lines).
Hunk webosose#11 succeeded at 321 (offset 3 lines).
Hunk webosose#12 succeeded at 351 (offset 3 lines).
Hunk webosose#13 succeeded at 390 (offset 3 lines).
Hunk webosose#14 succeeded at 405 (offset 3 lines).
Hunk webosose#15 succeeded at 441 (offset 6 lines).
Hunk webosose#16 succeeded at 464 (offset 6 lines).
Hunk webosose#17 succeeded at 487 with fuzz 1 (offset 7 lines).
Hunk webosose#18 FAILED at 503.
Hunk webosose#19 succeeded at 625 (offset 7 lines).
Hunk webosose#20 succeeded at 678 (offset 7 lines).
1 out of 20 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRQ-691] Create GPVB with Yocto 4.3 Nanbield
[WRQ-693] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I444ab46e8b664357f9aac468b3dc35b510664d57
shr-project added a commit to shr-project/meta-webosose that referenced this issue Aug 23, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=d7bf88db7f2f55540bf7891474a3a28f5681ddbb
backported to mickledore as well in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=a071696747ece93409d533a2e966cd59195a056d

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/623492

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/gst-plugins-bad-1.22.4'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.4-r0/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk webosose#3 succeeded at 167 (offset 4 lines).
Hunk webosose#4 succeeded at 187 (offset 4 lines).
Hunk webosose#5 succeeded at 197 (offset 4 lines).
Hunk webosose#6 succeeded at 207 (offset 4 lines).
Hunk webosose#7 succeeded at 216 (offset 4 lines).
Hunk webosose#8 succeeded at 271 (offset 4 lines).
Hunk webosose#9 succeeded at 283 (offset 4 lines).
Hunk webosose#10 succeeded at 303 (offset 4 lines).
Hunk webosose#11 succeeded at 318 (offset 4 lines).
Hunk webosose#12 succeeded at 348 (offset 4 lines).
Hunk webosose#13 succeeded at 387 (offset 4 lines).
Hunk webosose#14 succeeded at 402 (offset 4 lines).
Hunk webosose#15 succeeded at 435 (offset 4 lines).
Hunk webosose#16 succeeded at 458 (offset 4 lines).
Hunk webosose#17 FAILED at 476.
Hunk webosose#18 succeeded at 616 (offset 5 lines).
Hunk webosose#19 succeeded at 669 (offset 5 lines).
1 out of 19 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c
Patch 0004-waylandsink-remove-unsupported-subcompositor.patch does not apply (enforce with -f)

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRQ-691] Create GPVB with Yocto 4.3 Nanbield
[WRQ-693] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I65381c6a3b7e0f65ceabf592d34d807972867b1c
shr-project added a commit to shr-project/meta-webosose that referenced this issue Aug 23, 2024
:Release Notes:
Upgraded in:
https://git.openembedded.org/openembedded-core/commit/?id=ff2fc789e08c42903f5e528d4836dd482227291c
backported to mickledore in:
https://git.openembedded.org/openembedded-core/commit/?h=mickledore&id=f481d973d7f942f8a9492cd71985bd1d428ac59a

:Detailed Notes:
Fixes:
http://gecko.lge.com:8000/Errors/Details/710585

ERROR: Applying patch '0004-waylandsink-remove-unsupported-subcompositor.patch' on target directory 'TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/gst-plugins-bad-1.22.6'
CmdError('quilt --quiltrc TOPDIR/BUILD/work/raspberrypi4_64-webos-linux/gstreamer1.0-plugins-bad/1.22.6/recipe-sysroot-native/etc/quiltrc push', 0, 'stdout: Applying patch 0004-waylandsink-remove-unsupported-subcompositor.patch
patching file ext/wayland/gstwaylandsink.c
patching file ext/wayland/gstwaylandsink.h
patching file gst-libs/gst/wayland/gstwldisplay.c
patching file gst-libs/gst/wayland/gstwlwindow.c
Hunk #2 succeeded at 67 (offset 3 lines).
Hunk webosose#3 succeeded at 170 (offset 3 lines).
Hunk webosose#4 succeeded at 190 (offset 3 lines).
Hunk webosose#5 succeeded at 200 (offset 3 lines).
Hunk webosose#6 succeeded at 210 (offset 3 lines).
Hunk webosose#7 succeeded at 219 (offset 3 lines).
Hunk webosose#8 succeeded at 274 (offset 3 lines).
Hunk webosose#9 succeeded at 286 (offset 3 lines).
Hunk webosose#10 succeeded at 306 (offset 3 lines).
Hunk webosose#11 succeeded at 321 (offset 3 lines).
Hunk webosose#12 succeeded at 351 (offset 3 lines).
Hunk webosose#13 succeeded at 390 (offset 3 lines).
Hunk webosose#14 succeeded at 405 (offset 3 lines).
Hunk webosose#15 succeeded at 441 (offset 6 lines).
Hunk webosose#16 succeeded at 464 (offset 6 lines).
Hunk webosose#17 succeeded at 487 with fuzz 1 (offset 7 lines).
Hunk webosose#18 FAILED at 503.
Hunk webosose#19 succeeded at 625 (offset 7 lines).
Hunk webosose#20 succeeded at 678 (offset 7 lines).
1 out of 20 hunks FAILED -- rejects in file gst-libs/gst/wayland/gstwlwindow.c

:Testing Performed:
Only build tested.

:QA Notes:
No change to image.

:Issues Addressed:
[WRQ-691] Create GPVB with Yocto 4.3 Nanbield
[WRQ-693] Create GPVB with Yocto 4.2 Mickledore

Change-Id: I444ab46e8b664357f9aac468b3dc35b510664d57
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

No branches or pull requests

2 participants