LetoThe2nd changed the topic of #yocto to: Welcome to the Yocto Project | Learn more: https://www.yoctoproject.org | Community: https://www.yoctoproject.org/community | IRC logs: http://irc.yoctoproject.org/irc/ | Having difficulty on the list, with someone on the list or on IRC, contact Yocto Project Community Manager Letothe2nd | CoC: https://www.yoctoproject.org/community/code-of-conduct
Wouter01002 has quit [Quit: The Lounge - https://thelounge.chat]
Wouter01002 has joined #yocto
xmn has joined #yocto
davidinux has quit [Ping timeout: 252 seconds]
davidinux has joined #yocto
sotaoverride has joined #yocto
AdrianF has quit [Ping timeout: 245 seconds]
Saur_Home27 has quit [Quit: Client closed]
AdrianF has joined #yocto
Saur_Home27 has joined #yocto
jclsn has quit [Ping timeout: 265 seconds]
jclsn has joined #yocto
AdrianF has quit [Ping timeout: 252 seconds]
AdrianF has joined #yocto
steelswords94 has quit [Read error: Connection reset by peer]
steelswords94 has joined #yocto
mbulut has joined #yocto
mbulut has quit [Quit: Leaving]
nerdboy has quit [Ping timeout: 276 seconds]
nerdboy has joined #yocto
xmn has quit [Quit: xmn]
vthor has quit [Ping timeout: 252 seconds]
vthor has joined #yocto
amitk has joined #yocto
ehussain has joined #yocto
rob_w has joined #yocto
enok has joined #yocto
Chaser has joined #yocto
goliath has joined #yocto
Guest66 has joined #yocto
<Guest66> Can anyone tell me what is this error and how to remove it?
<Guest66> ERROR: nodejs-16.18.1-r0 do_package: QA Issue: File '/usr/bin/node' from nodejs was already stripped, this will prevent future debugging! [already-stripped] ERROR: nodejs-16.18.1-r0 do_package: Fatal QA errors found, failing task. ERROR: nodejs-16.18.1-r0 do_package: Function failed: do_package
enok has quit [Ping timeout: 252 seconds]
Wouter01002 has quit [Quit: The Lounge - https://thelounge.chat]
Wouter01002 has joined #yocto
<mcfrisk_> Guest66: yocto build system builds all recipes (== SW components) with debug flags (-g) to collect debug symbols for later use. The debug symbols get automatically stripped to -dbg binary packages which can be used in SDK etc to decode back traces from core dumps, installed to target to work with gdb etc. This QA check noticed that nodejs binary did not include any debug symbols when it should have. The
<mcfrisk_> QA check can be disabled in the recipe, or if you care about the debug symbols, then fix nodejs recipe to compile the binary with -g which is in the default bitbake CFLAGS/CXXFLAGS
florian has joined #yocto
<Guest66> mcfrisk_ could you please tell me how can I disable QA check
tlwoerner has joined #yocto
<landgraf> Guest66: :INSANE_SKIP:${PN} = "already-stripped"
<landgraf> but better fix your recipe
<Guest66> landgraf mcfrisk should I then add in nodejs recipe CXXFLAGS=-g and CFLAGS=-g
<mcfrisk_> Guest66: that would overwrite the flags and break cross compilation. Rather, check why nodejs is overwriting the defaults inside nodejs side config and build scripts
enok has joined #yocto
<Guest66> that would be tough for me I try
rfuentess has joined #yocto
Kubu_work has joined #yocto
<mcfrisk_> Guest66: without debug symbols you will not be able to decode crashes/core dumps or debug nodejs
zpfvo has joined #yocto
mckoan|away is now known as mckoan
<landgraf> Guest66: nodejs_20.12.2.bb works fine in our env without insane_skip
enok has quit [Ping timeout: 252 seconds]
frieder has joined #yocto
mvlad has joined #yocto
alperak has joined #yocto
Guest66 has quit [Quit: Client closed]
xmn has joined #yocto
frieder has quit [Ping timeout: 252 seconds]
leon-anavi has joined #yocto
prabhakalad has joined #yocto
Tyaku has joined #yocto
frieder has joined #yocto
Tyaku has quit [Quit: leaving]
Guest66 has joined #yocto
xmn has quit [Ping timeout: 265 seconds]
<Guest66> mcfrisk_ for me as a beginner it's bit hard to find out, what make nodejs overwrites flags. As I am also not familiar with debug tools, which I can use to find out
<Guest66> landgraf we can't use nodejs_20 for our application
Guest66 has quit [Quit: Client closed]
<mcfrisk_> Guest66: using yocto means you create your own custom Linux distro. It is hard work with a lot of compromises. In the end you maintain all of it, including nodejs. Sometimes it would be better for users to take general purpose Linux distros like Debian. If applications etc dictate SW component revisions without maintenance or upstream aspects even considered, then I think at some point the house of cards
<mcfrisk_> will fall badly.
Guest66 has joined #yocto
prabhakalad has quit [Quit: Konversation terminated!]
prabhakalad has joined #yocto
sakoman has quit [Read error: Connection reset by peer]
sakoman has joined #yocto
tlwoerner has quit [Quit: Leaving]
sakoman has quit [Ping timeout: 255 seconds]
Perflosopher has quit [Read error: Connection reset by peer]
Perflosopher has joined #yocto
ehussain has quit [Ping timeout: 252 seconds]
sakoman has joined #yocto
ehussain has joined #yocto
Guest96 has joined #yocto
<Guest96> user add recipe outputs configuration error - unknown item 'SYSLOG_SU_ENAB' (notify administrator)
<Guest96> any suggestion?
ehussain has quit [Ping timeout: 252 seconds]
Guest96 has quit [Quit: Client closed]
sukbeom has quit [Quit: The Lounge - https://thelounge.chat]
sukbeom has joined #yocto
wooosaiiii has joined #yocto
frieder has quit [Remote host closed the connection]
sotaoverride has quit [Ping timeout: 246 seconds]
frieder has joined #yocto
sotaoverride has joined #yocto
vthor has quit [Ping timeout: 252 seconds]
goliath has quit [Quit: SIGSEGV]
pbsds3 has quit [Ping timeout: 248 seconds]
pbsds3 has joined #yocto
sotaoverride has quit [Ping timeout: 248 seconds]
reatmon_ has quit [Remote host closed the connection]
reatmon_ has joined #yocto
MarioMariollini has joined #yocto
<MarioMariollini> Hi guys. I am trying to ship one of u-boot's tools into my sdk (relocate-rela). I need to compile this under the target architecture toolchain (aarch64), but for x86. This part is fine, I get an x86 binary. The problem is I don't know how to put it into the sdk files instead of the arm image. I am getting now an error at do_package because
<MarioMariollini> aarch64-oe-linux-objcopy doesn't recognize the architecture.
<MarioMariollini> How would I change the do_package for this to work?
<MarioMariollini> My do_install looks like this:
<MarioMariollini> do_install () {
<MarioMariollini>  install -d ${D}${bindir}
<MarioMariollini>  install -m 0755 ${B}/tools/relocate-rela ${D}${bindir}/uboot-relocate-rela
<MarioMariollini>  ln -sf uboot-relocate-rela ${D}${bindir}/relocate-rela
<MarioMariollini> }
fabatera has joined #yocto
MarioMariollini has quit [Ping timeout: 256 seconds]
MarioMariollini has joined #yocto
MarioMariollini1 has joined #yocto
MarioMariollini has quit [Client Quit]
rob_w has quit [Remote host closed the connection]
MarioMariollini1 has quit [Quit: Client closed]
MarioMariollini1 has joined #yocto
xmn has joined #yocto
fabatera has quit [Quit: Client closed]
frieder has quit [Remote host closed the connection]
goliath has joined #yocto
jbo_ has joined #yocto
jbo has quit [Ping timeout: 252 seconds]
vthor has joined #yocto
jbo has joined #yocto
jbo_ has quit [Ping timeout: 260 seconds]
steelswords94 has quit [Read error: Connection reset by peer]
steelswords94 has joined #yocto
ray-san has quit [Ping timeout: 245 seconds]
MarioMariollini1 has quit [Quit: Client closed]
Wouter01002 has quit [Quit: The Lounge - https://thelounge.chat]
Wouter01002 has joined #yocto
Saur_Home47 has joined #yocto
Saur_Home27 has quit [Ping timeout: 256 seconds]
rob_w has joined #yocto
mckoan is now known as mckoan|away
jmd has joined #yocto
florian_kc has joined #yocto
zwelch has quit [Ping timeout: 260 seconds]
steelswords94 has quit [Read error: Connection reset by peer]
steelswords94 has joined #yocto
druppy has joined #yocto
zpfvo has quit [Remote host closed the connection]
zwelch has joined #yocto
goliath has quit [Quit: SIGSEGV]
rfuentess has quit [Remote host closed the connection]
mjm has joined #yocto
druppy has quit [Quit: druppy]
druppy has joined #yocto
druppy has quit [Ping timeout: 245 seconds]
amitk has quit [Ping timeout: 245 seconds]
jmiehe has joined #yocto
nerdboy has quit [Ping timeout: 252 seconds]
gspbirel56 has joined #yocto
nerdboy has joined #yocto
florian_kc has quit [Quit: Ex-Chat]
sotaoverride has joined #yocto
leon-anavi has quit [Quit: Leaving]
jkale has joined #yocto
joekale has quit [Ping timeout: 255 seconds]
Wouter01002 has quit [Quit: The Lounge - https://thelounge.chat]
Wouter01002 has joined #yocto
Vonter has quit [Ping timeout: 265 seconds]
DixitP has joined #yocto
<DixitP> I am trying to emulate battery device in the QEMU x86-64. I am building QEMU images using Yocto reference distribution poky, I am building core-image-sato image for the qemux86-64 machine. My goal is to see battery icon in to the QEMU GUI.
<DixitP> As per my understanding, Battery device communicates using acpi so the target needs to have acpi support. I have modified qemux86-64 machine file to have acpi as MACHINE_FEATURES. Now the QEMU needs to have an emulated/fake battery device which can populate the battety device and its information so it can be visible as icon in to the GUI. From
<DixitP> exploration I found that below commands (-device option) emulates battery device, But I don't see any battery device in the GUI with these.
<DixitP> QEMU_EXTRAARGS="-device acpi-battery -enable-kvm -display sdl,show-menubar=on -show-cursor" runqemu qemux86-64
<DixitP> QEMU_EXTRAARGS="-device ich9-lpc -enable-kvm -display sdl,show-menubar=on -show-cursor" runqemu qemux86-64
<DixitP> QEMU_EXTRAARGS="-device piix4-acpi -enable-kvm -display sdl,show-menubar=on -show-cursor" runqemu qemux86-64
<DixitP> Can someone help me get a battery device emulated in the Yocto QEMU image?
DixitP has quit [Client Quit]
sotaoverride has quit [Ping timeout: 260 seconds]
ablu has quit [Ping timeout: 276 seconds]
ablu has joined #yocto
florian has quit [Ping timeout: 252 seconds]
goliath has joined #yocto
Haxxa has quit [Quit: Haxxa flies away.]
Haxxa has joined #yocto
florian has joined #yocto
jmiehe has quit [Quit: jmiehe]
enok has joined #yocto
rob_w has quit [Quit: Leaving]
dankm has quit [Remote host closed the connection]
enok has quit [Ping timeout: 255 seconds]
enok has joined #yocto
dankm has joined #yocto
enok has quit [Read error: Connection reset by peer]
enok has joined #yocto
enok has quit [Ping timeout: 244 seconds]
alperak has quit [Quit: Connection closed for inactivity]
Guest24 has joined #yocto
enok has joined #yocto
enok71 has joined #yocto
enok has quit [Ping timeout: 265 seconds]
enok71 is now known as enok
enok has quit [Ping timeout: 248 seconds]
Guest24 has quit [Quit: Client closed]
dgriego has quit [Quit: Computer going to sleep]
dgriego has joined #yocto
dgriego has quit [Client Quit]
dgriego has joined #yocto
jmd has quit [Remote host closed the connection]
enok has joined #yocto
mvlad has quit [Quit: Leaving]
dgriego has quit [Quit: Computer going to sleep]
enok has quit [Ping timeout: 252 seconds]
alimon has joined #yocto
Chaser has quit [Quit: My Unrecognized Mac has gone to sleep. ZZZzzz…]
Kubu_work has quit [Quit: Leaving.]
khem has quit [Quit: WeeChat 4.4.2]
goliath has quit [Quit: SIGSEGV]
khem has joined #yocto
florian has quit [Ping timeout: 252 seconds]
kilobyte_ch has quit [Ping timeout: 255 seconds]
kilobyte_ch has joined #yocto
kilobyte_ch has quit [Ping timeout: 265 seconds]
sudip has quit [Quit: ZNC - http://znc.in]
sudip has joined #yocto
mjm has quit [Quit: mjm]
kilobyte_ch has joined #yocto
kilobyte_ch has quit [Ping timeout: 252 seconds]
wicki41 has joined #yocto
wicki4 has quit [Ping timeout: 260 seconds]
wicki41 is now known as wicki4
kilobyte_ch has joined #yocto
steelswords94 has quit [Read error: Connection reset by peer]
steelswords94 has joined #yocto
wicki4 has quit [Ping timeout: 252 seconds]
wicki4 has joined #yocto
mjm has joined #yocto
tangofoxtrot has quit [Remote host closed the connection]
tangofoxtrot has joined #yocto