ArmbianHelper changed the topic of #armbian to: armbian - Linux for ARM development boards | www.armbian.com | Github: github.com/armbian | Commits: #armbian-commits | Developer talk: #armbian-devel | Forum feed: #armbian-rss | Off-Topic: #armbian-offtopic | Logs: -> irc.armbian.com
Net147 has quit [Ping timeout: 250 seconds]
Dagger has joined #armbian
TheCoffeMaker has joined #armbian
jantones has quit [Quit: Leaving]
TheCoffeMaker has quit [Read error: Connection reset by peer]
TheCoffeMaker has joined #armbian
Lucanis has joined #armbian
tomreyn has quit [Server closed connection]
tomreyn has joined #armbian
jclsn has quit [Ping timeout: 264 seconds]
jclsn has joined #armbian
archetech has joined #armbian
oida has quit [*.net *.split]
qqqhhh861993 has quit [*.net *.split]
willmore has quit [*.net *.split]
ikmaak has quit [*.net *.split]
ikmaak has joined #armbian
willmore has joined #armbian
oida has joined #armbian
qqqhhh861993 has joined #armbian
<DC-IRC>
<rhea_real> yo I need some help, whenever I restart my vm, the changes I make dont save, does anyone know how to fix that?
Perflosopher has joined #armbian
<DC-IRC>
<Werner> What vm? Which board?
<DC-IRC>
<rhea_real> kali linux on vmware
<DC-IRC>
<rhea_real> idk about board lol
buzzmarshall has quit [Quit: Konversation terminated!]
<DC-IRC>
<Werner> We neither deal with VMware nor with kali. Try #ID:854735915787878463 but I doubt you will find answers there as well.
<DC-IRC>
<rhea_real> oh okay
tomaw has quit [*.net *.split]
tomaw has joined #armbian
archetech has quit [Quit: Leaving]
alekksander has joined #armbian
alekksander has quit [Quit: Konversation terminated!]
<BCMM>
everybody seems to have them in stock, so i'm wondering what the problem is
qqqhhh861993 has quit [Ping timeout: 245 seconds]
clever has quit [Ping timeout: 240 seconds]
clever has joined #armbian
clever has quit [Ping timeout: 245 seconds]
buzzmarshall has joined #armbian
clever has joined #armbian
clever has quit [Ping timeout: 240 seconds]
qqqhhh861993 has joined #armbian
archetech has joined #armbian
milkii has quit [Quit: tara]
milkii has joined #armbian
clever has joined #armbian
archetech has quit [Quit: Konversation terminated!]
archetech has joined #armbian
archetech has quit [Quit: Konversation terminated!]
junaid_ has joined #armbian
archetech has joined #armbian
lyri has joined #armbian
oida has quit [Ping timeout: 245 seconds]
junaid_ has quit [Ping timeout: 240 seconds]
junaid_ has joined #armbian
oida has joined #armbian
clever has quit [Ping timeout: 250 seconds]
alekksander has quit [Ping timeout: 240 seconds]
lyri has quit [Ping timeout: 250 seconds]
lyri has joined #armbian
MrFixIt has quit [Ping timeout: 240 seconds]
lyri has quit [Ping timeout: 250 seconds]
MrFixIt has joined #armbian
alekksander has joined #armbian
alekksander has quit [Client Quit]
alekksander has joined #armbian
alekksander has quit [Quit: Konversation terminated!]
alekksander has joined #armbian
jantones has joined #armbian
alekksander has quit [Client Quit]
martinayotte has quit [Ping timeout: 246 seconds]
alekksander has joined #armbian
alekksander has quit [Quit: Konversation terminated!]
alekksander has joined #armbian
alekksander has quit [Client Quit]
alekksander has joined #armbian
archetech has quit [Quit: Konversation terminated!]
martinayotte has joined #armbian
junaid_ has quit [Quit: leaving]
archetech has joined #armbian
<nekomancer[m]>
rpardini: how to use `kernel_config_set_n` from own config file? I add `function armbian_kernel_config__enable_bcachefs()` and call it there, but then all falls with
<nekomancer[m]>
/bin/bash: line 1: ./scripts/config: No such file or directory
<nekomancer[m]>
```
<nekomancer[m]>
```
junaid_ has joined #armbian
oida has quit [Ping timeout: 250 seconds]
zeemate has joined #armbian
danilogondolfo has quit [Remote host closed the connection]
alekksander has quit [Quit: Konversation terminated!]
junaid_ has quit [Remote host closed the connection]
<DC-IRC>
<viraniac> nekomancer, I believe the armbian_kernel_config function gets called multiple times, once when calculating hash value for the kernel and then again when the kernel configuration is done. When its called for hash calculation, at that time its not even in the kernel source directoy and hence throws the error for not able to find script/config file.
<DC-IRC>
<viraniac> You can put the kernel_config_set_n call in a if block that checks whether .config file is present or not
clever has joined #armbian
<DC-IRC>
<viraniac> But looking at the time difference between the question and my reply, I guess you might have already figured that out 🙂
<nekomancer[m]>
yes. but still not understand how to use it right
<nekomancer[m]>
s/use/call/
<ArmbianHelper>
nekomancer[m] meant to say: yes. but still not understand how to call it right
marco44 has quit [Quit: ZNC 1.8.2+deb3.1 - https://znc.in]
<nekomancer[m]>
o! seems I need `if [[ -f .config ]]; then` 😊
<DC-IRC>
<rpardini> yes dudes you figured it out. also _always_ add `kernel_config_modifying_hashes+=("CONFIG_xxx=y/m")` so that hashing actually works
<DC-IRC>
<rpardini> but only actually modify if `.config` exists
<nekomancer[m]>
then, maybe, better include if [[ -f .config ]]; then into kernel_config_set_*?
<nekomancer[m]>
and modiy hash too
<DC-IRC>
<rpardini> yeah this was done _a bit_ in a hurry as you can understand, and set_y set_n are not the only use cases