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
tgamblin has quit [Ping timeout: 264 seconds]
sugoi has quit [Ping timeout: 246 seconds]
mithro has quit [Ping timeout: 245 seconds]
denix has quit [Ping timeout: 245 seconds]
mithro has joined #yocto
denix has joined #yocto
tgamblin has joined #yocto
starblue has quit [Ping timeout: 246 seconds]
starblue has joined #yocto
tgamblin has quit [Ping timeout: 245 seconds]
jclsn has quit [Ping timeout: 260 seconds]
jclsn has joined #yocto
JPEW has quit [Ping timeout: 260 seconds]
JPEW has joined #yocto
bradfa has quit [Ping timeout: 245 seconds]
bradfa has joined #yocto
lexano has quit [Ping timeout: 252 seconds]
jonmason has quit [Ping timeout: 245 seconds]
jonmason has joined #yocto
Daanct12 has joined #yocto
Crofton has quit [Ping timeout: 245 seconds]
Crofton has joined #yocto
shivamurthy has quit [Ping timeout: 245 seconds]
shivamurthy has joined #yocto
ehussain has quit [Quit: ehussain]
Articulus has joined #yocto
khem has joined #yocto
ehussain has joined #yocto
xmn has quit [Ping timeout: 260 seconds]
ehussain has quit [Remote host closed the connection]
jmd has joined #yocto
goliath has joined #yocto
CapEnt has quit [Ping timeout: 246 seconds]
rob_w has joined #yocto
jmd has quit [Remote host closed the connection]
<ray-san> hi there, the recipe for openssh in the openembedded-core layer already has a do_install:append function. how i am supposed to install my custom sshd_config file in a .bbappend file?
mbulut has joined #yocto
rfuentess has joined #yocto
enok has joined #yocto
<JaMa> ray-san: you can have as many :append operations as needed
<ray-san> JaMa: ah, didn't know that, i thought you can only have one. in which order are the :append appendet?
fotte has joined #yocto
<JaMa> in order how they were parsed (which in turn depends on order of layers in BBLAYERS)
<ray-san> ok, got it. thank you
<JaMa> always use bitbake -e or bitbake-getvar to see what it does
mckoan|away is now known as mckoan
fotte has quit [Quit: Leaving]
enok has quit [Ping timeout: 252 seconds]
frieder has joined #yocto
leon-anavi has joined #yocto
CrazyGecko has joined #yocto
Kubu_work has joined #yocto
Saur_Home74 has joined #yocto
Articulus has quit [Quit: Leaving]
Saur_Home has quit [Ping timeout: 256 seconds]
sugoi has joined #yocto
sugoi has quit [Ping timeout: 260 seconds]
wojci has joined #yocto
Saur_Home74 has quit [Quit: Client closed]
Saur_Home74 has joined #yocto
vquicksilver has joined #yocto
wojci_ has joined #yocto
wojci has quit [Read error: Connection reset by peer]
Guest13 has joined #yocto
florian has joined #yocto
<Guest13> hi. i want to download apache2 on a old image already flashed. i did "bitbake apache2" and i have these packages
<Guest13> $ find . | grep apache
<Guest13> ./armv8a/apache2-src_2.4.60-r0_armv8a.ipk
<Guest13> ./armv8a/apache2-scripts_2.4.60-r0_armv8a.ipk
<Guest13> ./armv8a/apache2-dev_2.4.60-r0_armv8a.ipk
<Guest13> ./armv8a/apache2-doc_2.4.60-r0_armv8a.ipk
<Guest13> ./armv8a/apache2-dbg_2.4.60-r0_armv8a.ipk
<Guest13> ./armv8a/apache2_2.4.60-r0_armv8a.ipk
<Guest13> however, im concerned the build system generated more packages than this. can i somehow check what packages I need?
rber|res has joined #yocto
<JaMa> Guest13: you can look what files are packaged inside
<JaMa> I think the package suffixes are quite self-explanatory (and the same is used for almost all the recipes), so the only question is if you want -scripts in the image as well or not
<Guest13> JaMa well yes but the packages can depend on libraries that are not named by apache
<Guest13> e.g nothing provides libapr-1-0 >= 1.7.5 needed by apache2-2.4.60-r0.armv8a
<JaMa> your package manager will figure it out, if you really want to do it manually, then check Depends in every package you want to install
<rburton> Guest13: if you're trying to identify the list of packages to copy to the target, then the easier solution is to just run a httpd on your build machine and use it as a feed. The docs cover this (see PACKAGE_FEED_URIS)
starblue has quit [Ping timeout: 255 seconds]
starblue has joined #yocto
Daanct12 has quit [Quit: WeeChat 4.4.1]
Daanct12 has joined #yocto
sakoman has quit [Ping timeout: 260 seconds]
lowfi has joined #yocto
sakoman has joined #yocto
mbulut has quit [Quit: Leaving]
mbulut has joined #yocto
lowfi has quit [Quit: Leaving]
Saur_Home74 has quit [Quit: Client closed]
Saur_Home74 has joined #yocto
<wojci_> I have a recipe with PACKAGES set to "${PN} ${PN}-util ${PN}-dev ${PN}-staticdev ${PN}-dbg" and for each package a FILES: entry such as FILES:${PN}-util += "${bindir}/ff_dump". Can I then use the individual packages (such as ${PN}-dev) in for instance TOOLCHAIN_TARGET_TASK? Are there any rules as to which packages can be used where?
mbulut has quit [Remote host closed the connection]
<wojci_> The reason that I'm asking is because I tried to use one of the packages "${PN}-util", but got an error about bitbake not being able to find it. There were no errors about it not being built so the FILES: entry is correct AFAIK.
mbulut has joined #yocto
<rburton> wojci_: yes, TOOLCHAIN_TARGET_TASK is a recipe list
<rburton> argh, *package* list
<rburton> did you actually use ${PN} or the actual package name?
<wojci_> I used the actual package name. :D
<wojci_> So mypackage-util and mypackage-dev etc.
Ad0 has joined #yocto
<wojci_> rburton, How do I know when to use a package name and when to use recipe?
<wojci_> (Besides reading the class "source code")
<rburton> the docs should make it clear and if it doesn't please send a patch or file a bug
<wojci_> The documentation use "packages" and not recipes. For example: https://docs.yoctoproject.org/sdk-manual/appendix-customizing-standard.html
Saur_Home74 has quit [Quit: Client closed]
Saur_Home74 has joined #yocto
lexano has joined #yocto
Saur_Home74 has quit [Quit: Client closed]
Saur_Home74 has joined #yocto
Daanct12 has quit [Quit: WeeChat 4.4.2]
Daanct12 has joined #yocto
Daanct12 has quit [Quit: WeeChat 4.4.2]
sugoi has joined #yocto
sugoi has quit [Ping timeout: 245 seconds]
|Xagen has quit [Ping timeout: 252 seconds]
tgamblin has joined #yocto
dmoseley has quit [Quit: ZNC 1.9.1 - https://znc.in]
Saur_Home74 has quit [Quit: Client closed]
Saur_Home74 has joined #yocto
dmoseley has joined #yocto
belsirk has joined #yocto
rob_w has quit [Remote host closed the connection]
rfuentess has quit [Ping timeout: 246 seconds]
jmiehe has joined #yocto
jmiehe has quit [Client Quit]
xmn has joined #yocto
albeu has joined #yocto
wojci_ has quit [Ping timeout: 260 seconds]
deribaucourt has quit [Quit: ZNC 1.8.2 - https://znc.in]
Granjow has joined #yocto
ederibaucourt has joined #yocto
<Granjow> Hi all, I'm trying to build scarthgap with kas, and bitbake cannot connect to hashserve.sock with ConnectionRefusedError. Any idea why that is happening?
<Granjow> I'm building in a docker container based on Ubuntu 22.04 and did not have that problem on kirkstone.
goliath has quit [Quit: SIGSEGV]
<Granjow> This is the build output: https://pastebin.com/EMyJ0rUx
Xagen has joined #yocto
ederibaucourt has quit [Quit: ZNC 1.8.2 - https://znc.in]
jmiehe has joined #yocto
sugoi has joined #yocto
ederibaucourt has joined #yocto
sugoi has quit [Ping timeout: 246 seconds]
ederibaucourt has quit [Client Quit]
ederibaucourt has joined #yocto
jmd has joined #yocto
fbre has joined #yocto
jmiehe has quit [Quit: jmiehe]
<Granjow> (I'm not using yocto's hash server but the local one)
sugoi has joined #yocto
Saur_Home88 has joined #yocto
Granjow has quit [Ping timeout: 256 seconds]
sugoi has quit [Ping timeout: 255 seconds]
fbre has quit [Quit: Client closed]
Saur_Home74 has quit [Ping timeout: 256 seconds]
ray-san has quit [Ping timeout: 276 seconds]
CapEnt has joined #yocto
Granjow has joined #yocto
CrazyGecko has quit [Ping timeout: 248 seconds]
<Granjow> Where can I get more info or help on the hashserve.sock issue?
goliath has joined #yocto
mckoan is now known as mckoan|away
belsirk has quit [Remote host closed the connection]
sugoi has joined #yocto
Granjow has quit [Quit: Client closed]
albeu has quit [Quit: Client closed]
nerdboy has quit [Ping timeout: 276 seconds]
ecdhe has quit [Ping timeout: 248 seconds]
ecdhe has joined #yocto
leon-anavi has quit [Quit: Leaving]
steelswords has quit [Read error: Connection reset by peer]
steelswords has joined #yocto
nerdboy has joined #yocto
frieder has quit [Remote host closed the connection]
Jones42 has joined #yocto
sugoi has quit [Ping timeout: 265 seconds]
Guest13 has quit [Quit: Client closed]
sugoi has joined #yocto
albeu has joined #yocto
florian has quit [Quit: Ex-Chat]
enok has joined #yocto
jmiehe has joined #yocto
florian_kc has joined #yocto
goliath has quit [Quit: SIGSEGV]
enok has quit [Quit: enok]
sugoi has quit [Ping timeout: 252 seconds]
goliath has joined #yocto
albeu has quit [Quit: Client closed]
reatmon_ has quit [Remote host closed the connection]
reatmon_ has joined #yocto
sugoi has joined #yocto
florian_kc has quit [Ping timeout: 248 seconds]
dankm has quit [Remote host closed the connection]
dankm has joined #yocto
CrazyGecko has joined #yocto
sugoi has quit [Ping timeout: 272 seconds]
Saur_Home88 has quit [Quit: Client closed]
Saur_Home88 has joined #yocto
florian_kc has joined #yocto
norvil has joined #yocto
<norvil> hi i've created an image for a beagleboardx15 and i want to flash it to an sd card but i can´t seem to find the correct file. does anyone know wich fiile should i flash?
<norvil> thanks in advance
enok has joined #yocto
sugoi has joined #yocto
<tgamblin> norvil: usually I have bitbake generate a .wic by adding 'IMAGE_FSTYPES += "wic wic.bmap"' to local.conf, then using bmaptool to flash the .wic
<tgamblin> There are probably other valid options :)
jmd has quit [Remote host closed the connection]
<norvil> tgamblin: Thank you, i appreciate the help !! I'll try it that way
<tgamblin> norvil: for clarification, the files you're looking to write are usually found in tmp/deploy/images/<machine>/
norvil has quit [Quit: Client closed]
enok has quit [Remote host closed the connection]
sugoi has quit [Ping timeout: 248 seconds]
goliath has quit [Ping timeout: 260 seconds]
goliath has joined #yocto
sugoi has joined #yocto
ablu has quit [Ping timeout: 245 seconds]
ablu has joined #yocto
sugoi has quit [Ping timeout: 246 seconds]
sugoi has joined #yocto
sugoi has quit [Remote host closed the connection]
sugoi1 has joined #yocto
sugoi1 is now known as sugoi
jsbronder has quit [Quit: WeeChat 4.1.2]
jsbronder has joined #yocto
Haxxa has quit [Quit: Haxxa flies away.]
jsbronder has quit [Quit: WeeChat 4.1.2]
Haxxa has joined #yocto
jsbronder has joined #yocto
goliath has quit [Quit: SIGSEGV]
dmoseley has quit [Quit: ZNC 1.9.1 - https://znc.in]
sugoi has quit [Ping timeout: 246 seconds]
dmoseley has joined #yocto
sugoi has joined #yocto
dankm has quit [Remote host closed the connection]
dankm has joined #yocto
dankm has quit [Remote host closed the connection]
dankm has joined #yocto
Shaun has quit [Ping timeout: 252 seconds]
Shaun has joined #yocto
Xagen has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jsbronder has quit [Quit: WeeChat 4.1.2]
jsbronder has joined #yocto
sugoi has quit [Remote host closed the connection]
sugoi has joined #yocto
Kubu_work has quit [Quit: Leaving.]
Saur_Home88 has quit [Quit: Client closed]
Saur_Home88 has joined #yocto
florian_kc has quit [Ping timeout: 252 seconds]
sugoi has quit [Ping timeout: 255 seconds]
sugoi1 has joined #yocto
sugoi1 is now known as sugoi
sugoi1 has joined #yocto
sugoi has quit [Ping timeout: 246 seconds]
sugoi1 is now known as sugoi
sugoi1 has joined #yocto
sugoi has quit [Ping timeout: 245 seconds]
sugoi1 is now known as sugoi
jmiehe has quit [Quit: jmiehe]
mbulut has quit [Ping timeout: 252 seconds]
vthor has quit [Ping timeout: 272 seconds]