[fedora-arm] Re: [Test-Announce] Fedora 34 Candidate RC-1.1 Available Now!

2021-04-24 Thread Bengt Fredh
To flash SPI rom a running os on Pinebook Pro you can flash SPI like this:
Writing to SPI Flash:
# flash_erase /dev/mtd0 0 0
# dd if=spiflash.bin of=/dev/mtd0

If dd doesn't work for you (see #2), try nandwrite:
# nandwrite -p /dev/mtd0 spiflash.bin

You can get flash_erase and nandwrite by installing mtd-utils package.

Warning! If somthing go wrong with flashing, you need to short circut the SPI 
to get it reset.
Make sure you flash_erase before trying to write to SPI, I missed that a couple 
of times and I ended up with corrupt SPI and had to short circut.

As far as I have tried the Fedora Kernel can not start the disply on Pinebook 
Pro. You can only get output on serial over UART.
___
arm mailing list -- arm@lists.fedoraproject.org
To unsubscribe send an email to arm-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/arm@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[fedora-arm] Re: [Test-Announce] Fedora 34 Candidate RC-1.1 Available Now!

2021-04-23 Thread Dennis Gilmore
You could use any of the defined variables, they are required to be set to
suitable values as part of the generic distro boot specifications, if it's
not a valid address we have much bigger problems. That particular variable
is where in a regular boot the devicetree file is loaded to.

Dennis

On Fri, Apr 23, 2021, 09:14 Dominik 'Rathann' Mierzejewski <
domi...@greysector.net> wrote:

> On Friday, 23 April 2021 at 15:49, Dennis Gilmore wrote:
> > On Fri, Apr 23, 2021 at 7:14 AM Dominik 'Rathann' Mierzejewski
> >  wrote:
> > >
> > > On Thursday, 22 April 2021 at 18:07, Paul Whalen wrote:
> > > >
> > > > Hi Everyone,
> > > >
> > > > Please help to test the Fedora 34 RC on your favourite ARM or AArch64
> > > > device, and add your results to the Fedora Wiki:
> > > >
> > > > https://fedoraproject.org/wiki/Test_Results:Fedora_34_RC_1.1_Summary
> > > >
> > > > All testing is greatly appreciated!
> > >
> > > I'd be happy to test on my Pinebook Pro, but I'd appreciate some
> > > instructions on how to flash the U-Boot SPI image (idbloader.spi?)
> > > onto the SPI. Peter pointed me to
> > > https://marcin.juszkiewicz.com.pl/2020/06/17/ebbr-on-rockpro64/ on
> IRC,
> > > but it's for a different board. How can I find out the correct address
> > > for load and sf update/write commands?
> >
> > There is no need to know the memory locations, there are variables
> > defined for that. On my RockPro64 I ran the following
> >
> > sf probe
> > load mmc 1:1 ${fdt_addr_r} idbloader.spi
> > sf update ${fdt_addr_r} 0 ${filesize}
> > load mmc 1:1 ${fdt_addr_r} u-boot.itb
> > sf update ${fdt_addr_r} 6 ${filesize}
> >
> > reset and it booted off of SPI,I created the sdcard that I booted off
> > and contained u-boot by running
> >  spi-flashing-disk --media=/dev/sda --target rockpro64-rk3399
> >
> > my desktop has nvme drives so the first USB drive shows up as /dev/sda
> >
> > you may need to use mmc info to get the right device or run
> > ls mmc 0:1
> > ls mmc 1:1
> > until you see the device that contains the right bits, then set the
> > correct device to load from
>
> Thanks, I actually knew as much. How can I make sure that the
> ${fdt_addr_r} variable contains the correct address, though?
>
> Regards,
> Dominik
> --
> Fedora   https://getfedora.org  |  RPM Fusion  http://rpmfusion.org
> There should be a science of discontent. People need hard times and
> oppression to develop psychic muscles.
> -- from "Collected Sayings of Muad'Dib" by the Princess Irulan
>
___
arm mailing list -- arm@lists.fedoraproject.org
To unsubscribe send an email to arm-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/arm@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[fedora-arm] Re: [Test-Announce] Fedora 34 Candidate RC-1.1 Available Now!

2021-04-23 Thread Dominik 'Rathann' Mierzejewski
On Friday, 23 April 2021 at 15:49, Dennis Gilmore wrote:
> On Fri, Apr 23, 2021 at 7:14 AM Dominik 'Rathann' Mierzejewski
>  wrote:
> >
> > On Thursday, 22 April 2021 at 18:07, Paul Whalen wrote:
> > >
> > > Hi Everyone,
> > >
> > > Please help to test the Fedora 34 RC on your favourite ARM or AArch64
> > > device, and add your results to the Fedora Wiki:
> > >
> > > https://fedoraproject.org/wiki/Test_Results:Fedora_34_RC_1.1_Summary
> > >
> > > All testing is greatly appreciated!
> >
> > I'd be happy to test on my Pinebook Pro, but I'd appreciate some
> > instructions on how to flash the U-Boot SPI image (idbloader.spi?)
> > onto the SPI. Peter pointed me to
> > https://marcin.juszkiewicz.com.pl/2020/06/17/ebbr-on-rockpro64/ on IRC,
> > but it's for a different board. How can I find out the correct address
> > for load and sf update/write commands?
> 
> There is no need to know the memory locations, there are variables
> defined for that. On my RockPro64 I ran the following
> 
> sf probe
> load mmc 1:1 ${fdt_addr_r} idbloader.spi
> sf update ${fdt_addr_r} 0 ${filesize}
> load mmc 1:1 ${fdt_addr_r} u-boot.itb
> sf update ${fdt_addr_r} 6 ${filesize}
> 
> reset and it booted off of SPI,I created the sdcard that I booted off
> and contained u-boot by running
>  spi-flashing-disk --media=/dev/sda --target rockpro64-rk3399
> 
> my desktop has nvme drives so the first USB drive shows up as /dev/sda
> 
> you may need to use mmc info to get the right device or run
> ls mmc 0:1
> ls mmc 1:1
> until you see the device that contains the right bits, then set the
> correct device to load from

Thanks, I actually knew as much. How can I make sure that the
${fdt_addr_r} variable contains the correct address, though?

Regards,
Dominik
-- 
Fedora   https://getfedora.org  |  RPM Fusion  http://rpmfusion.org
There should be a science of discontent. People need hard times and
oppression to develop psychic muscles.
-- from "Collected Sayings of Muad'Dib" by the Princess Irulan
___
arm mailing list -- arm@lists.fedoraproject.org
To unsubscribe send an email to arm-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/arm@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[fedora-arm] Re: [Test-Announce] Fedora 34 Candidate RC-1.1 Available Now!

2021-04-23 Thread Dominik 'Rathann' Mierzejewski
On Thursday, 22 April 2021 at 18:07, Paul Whalen wrote:
> 
> Hi Everyone, 
> 
> Please help to test the Fedora 34 RC on your favourite ARM or AArch64
> device, and add your results to the Fedora Wiki:
> 
> https://fedoraproject.org/wiki/Test_Results:Fedora_34_RC_1.1_Summary
> 
> All testing is greatly appreciated!

I'd be happy to test on my Pinebook Pro, but I'd appreciate some
instructions on how to flash the U-Boot SPI image (idbloader.spi?)
onto the SPI. Peter pointed me to
https://marcin.juszkiewicz.com.pl/2020/06/17/ebbr-on-rockpro64/ on IRC,
but it's for a different board. How can I find out the correct address
for load and sf update/write commands?

Regards,
Dominik
-- 
Fedora   https://getfedora.org  |  RPM Fusion  http://rpmfusion.org
There should be a science of discontent. People need hard times and
oppression to develop psychic muscles.
-- from "Collected Sayings of Muad'Dib" by the Princess Irulan
___
arm mailing list -- arm@lists.fedoraproject.org
To unsubscribe send an email to arm-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/arm@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[fedora-arm] Re: [Test-Announce] Fedora 34 Candidate RC-1.1 Available Now!

2021-04-22 Thread Paul Whalen

Hi Everyone, 

Please help to test the Fedora 34 RC on your favourite ARM or AArch64
device, and add your results to the Fedora Wiki:

https://fedoraproject.org/wiki/Test_Results:Fedora_34_RC_1.1_Summary

All testing is greatly appreciated!

Thanks!
Paul 

- Original Message -
> On Thu, 2021-04-22 at 03:00 +, rawh...@fedoraproject.org wrote:
> > According to the schedule [1], Fedora 34 Candidate RC-1.1 is now
> > available for testing. Please help us complete all the validation
> > testing! For more information on release validation testing, see:
> > https://fedoraproject.org/wiki/QA:Release_validation_test_plan
> 
> Hey folks! This is the real-deal first RC for F34 Final, with all known
> blockers fixed. We only have a short time before the go/no-go meeting,
> but I am going to see if we can push that to Friday without impacting
> the schedule. In the meantime, please do help test it as much as
> possible. Thanks!
> --
> Adam Williamson
> Fedora QA
> IRC: adamw | Twitter: adamw_ha
> https://www.happyassassin.net
> 
> 
> ___
> test mailing list -- t...@lists.fedoraproject.org
> To unsubscribe send an email to test-le...@lists.fedoraproject.org
> Fedora Code of Conduct:
> https://docs.fedoraproject.org/en-US/project/code-of-conduct/
> List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
> List Archives:
> https://lists.fedoraproject.org/archives/list/t...@lists.fedoraproject.org
> Do not reply to spam on the list, report it:
> https://pagure.io/fedora-infrastructure
> 
___
arm mailing list -- arm@lists.fedoraproject.org
To unsubscribe send an email to arm-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/arm@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[fedora-arm] Re: [Test-Announce] Fedora 34 Candidate RC-1.1 Available Now!

2021-04-21 Thread Adam Williamson
On Thu, 2021-04-22 at 03:00 +, rawh...@fedoraproject.org wrote:
> According to the schedule [1], Fedora 34 Candidate RC-1.1 is now
> available for testing. Please help us complete all the validation
> testing! For more information on release validation testing, see:
> https://fedoraproject.org/wiki/QA:Release_validation_test_plan

Hey folks! This is the real-deal first RC for F34 Final, with all known
blockers fixed. We only have a short time before the go/no-go meeting,
but I am going to see if we can push that to Friday without impacting
the schedule. In the meantime, please do help test it as much as
possible. Thanks!
-- 
Adam Williamson
Fedora QA
IRC: adamw | Twitter: adamw_ha
https://www.happyassassin.net


___
arm mailing list -- arm@lists.fedoraproject.org
To unsubscribe send an email to arm-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/arm@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure