|
PREMIRROR
Russell, You don't need PREMIRROR for this functionality. It's not exactly intended for that use. The simplest way to achieve what you are looking for is to use devtool. If I understand you correctly
Russell, You don't need PREMIRROR for this functionality. It's not exactly intended for that use. The simplest way to achieve what you are looking for is to use devtool. If I understand you correctly
|
By
Rudolf J Streif
· #46064
·
|
|
Creating my own bsp
Larry, You would want to be more specific with your question and eventually post error messages you are encountering. It looks like you are hung up at the machine configuration file. You may want to p
Larry, You would want to be more specific with your question and eventually post error messages you are encountering. It looks like you are hung up at the machine configuration file. You may want to p
|
By
Rudolf J Streif
· #45719
·
|
|
Running Yocto inside Docker
That's more of a Gitlab than Yocto question. I am doing this all the time with my GL server on AWS. You need to add deploy a key to the repo you want to access and then push the key to your Docker ins
That's more of a Gitlab than Yocto question. I am doing this all the time with my GL server on AWS. You need to add deploy a key to the repo you want to access and then push the key to your Docker ins
|
By
Rudolf J Streif
· #45633
·
|
|
problem adding a user
Greg, It eluded me earlier but in both instances the variable containing the password does not seem to be expanded. First version without the single quotes: SAKURA_PASS = "$1$QVO3K6Ii$fvkoDKnlzz3d5uVo
Greg, It eluded me earlier but in both instances the variable containing the password does not seem to be expanded. First version without the single quotes: SAKURA_PASS = "$1$QVO3K6Ii$fvkoDKnlzz3d5uVo
|
By
Rudolf J Streif
· #45300
·
|
|
problem adding a user
Greg, Can you share the logfile via Pastebin? :rjs
Greg, Can you share the logfile via Pastebin? :rjs
|
By
Rudolf J Streif
· #45270
·
|
|
problem adding a user
Greg, usermod does not work for the MD5 algorithm with the explicit password hash as it contains the $ field delimiters which are interpreted by the shell executing the usermod command. Use single quo
Greg, usermod does not work for the MD5 algorithm with the explicit password hash as it contains the $ field delimiters which are interpreted by the shell executing the usermod command. Use single quo
|
By
Rudolf J Streif
· #45253
·
|
|
[meta-raspberrypi] RPi 7" Touch Display
Khem, Yes, the 32-bit image (raspberrypi3 machine) works. :rjs
Khem, Yes, the 32-bit image (raspberrypi3 machine) works. :rjs
|
By
Rudolf J Streif
· #45243
·
|
|
[meta-raspberrypi] RPi 7" Touch Display
I tried to build for 32 bit with: Build Configuration: BB_VERSION = "1.43.0" BUILD_SYS = "x86_64-linux" NATIVELSBSTRING = "universal" TARGET_SYS = "arm-poky-linux-gnueabi" MACHINE = "raspberrypi3" DIS
I tried to build for 32 bit with: Build Configuration: BB_VERSION = "1.43.0" BUILD_SYS = "x86_64-linux" NATIVELSBSTRING = "universal" TARGET_SYS = "arm-poky-linux-gnueabi" MACHINE = "raspberrypi3" DIS
|
By
Rudolf J Streif
· #45228
·
|
|
[meta-raspberrypi] RPi 7" Touch Display
Thanks, Khem. 64 bit, raspberrypi3-64 machine with vc4graphics.
Thanks, Khem. 64 bit, raspberrypi3-64 machine with vc4graphics.
|
By
Rudolf J Streif
· #45225
·
|
|
[meta-raspberrypi] RPi 7" Touch Display
No, unfortunately not. HDMI works just fine but no video on the touch display.
No, unfortunately not. HDMI works just fine but no video on the touch display.
|
By
Rudolf J Streif
· #45216
·
|
|
[meta-raspberrypi] RPi 7" Touch Display
Thank you, Paul. I did read Andrei's excellent documentation and enabled I2C and SPI etc. :rjs
Thank you, Paul. I did read Andrei's excellent documentation and enabled I2C and SPI etc. :rjs
|
By
Rudolf J Streif
· #45214
·
|
|
[meta-raspberrypi] RPi 7" Touch Display
Thank you, Andrei. Much appreciated. https://pastebin.com/bHUHaRkL It's the config.txt that is packaged with the image. :rjs
Thank you, Andrei. Much appreciated. https://pastebin.com/bHUHaRkL It's the config.txt that is packaged with the image. :rjs
|
By
Rudolf J Streif
· #45213
·
|
|
[meta-raspberrypi] RPi 7" Touch Display
I am trying to use the "official" RPi 7" touch display (https://www.raspberrypi.org/products/raspberry-pi-touch-display/) with meta-raspberrypi (most recent from master). However, I cannot get it to w
I am trying to use the "official" RPi 7" touch display (https://www.raspberrypi.org/products/raspberry-pi-touch-display/) with meta-raspberrypi (most recent from master). However, I cannot get it to w
|
By
Rudolf J Streif
· #45208
·
|
|
problem adding a user
Glad to hear that it works now. I am planning on attending the YP DevDay. :rjs
Glad to hear that it works now. I am planning on attending the YP DevDay. :rjs
|
By
Rudolf J Streif
· #45198
·
|
|
problem adding a user
Instead of useradd -p `openssl passwd test` sakura which attempts to add the user and set the password which fails if the user already exists, use usermod -p `openssl passwd test` sakura which sets th
Instead of useradd -p `openssl passwd test` sakura which attempts to add the user and set the password which fails if the user already exists, use usermod -p `openssl passwd test` sakura which sets th
|
By
Rudolf J Streif
· #45194
·
|
|
problem adding a user
The ! for the password in /etc/shadow indicates that the account is disabled: sakura:!:18031:0:99999:7::: Either there is something wrong with the password generation or it gets disabled by something
The ! for the password in /etc/shadow indicates that the account is disabled: sakura:!:18031:0:99999:7::: Either there is something wrong with the password generation or it gets disabled by something
|
By
Rudolf J Streif
· #45191
·
|
|
problem adding a user
Hi Greg, > I've also tried both the back-quote and the single-quote, no difference. Help me to understand this. the back-quotes are the right ones. If you use the single ones your password in the /etc
Hi Greg, > I've also tried both the back-quote and the single-quote, no difference. Help me to understand this. the back-quotes are the right ones. If you use the single ones your password in the /etc
|
By
Rudolf J Streif
· #45189
·
|
|
problem adding a user
Hi Greg, Well, I suppose I wrote the book you are referring to... Using useradd -p PASSWORD USER takes the password hash for PASSWORD hence the use of openssl in: useadd -p `openssl passwd PASSWORD` U
Hi Greg, Well, I suppose I wrote the book you are referring to... Using useradd -p PASSWORD USER takes the password hash for PASSWORD hence the use of openssl in: useadd -p `openssl passwd PASSWORD` U
|
By
Rudolf J Streif
· #45187
·
|
|
[Yocto-Advocacy] Yocto Project Upcoming Conferences and Developer Days
Chiming in here There are always people who are prepared to the T and others who just casually stroll into the class. We all know that as we all went through various stages of schooling. :) No matter
Chiming in here There are always people who are prepared to the T and others who just casually stroll into the class. We all know that as we all went through various stages of schooling. :) No matter
|
By
Rudolf J Streif
· #45094
·
|
|
Yocto Project @ ELC NA 2019
Hi Andrea, Great. I can bring some wooden blocks to prop up the rear-end. People could sit in it and spin the wheels. :rjs
Hi Andrea, Great. I can bring some wooden blocks to prop up the rear-end. People could sit in it and spin the wheels. :rjs
|
By
Rudolf J Streif
· #44980
·
|