Date
1 - 4 of 4
[isar-cip-core 0/4] SWUpdate on BBB
Jan Kiszka
Hi Shivanand,
On 30.08.22 09:13, Shivanand.Kunijadar@... wrote: Hello Jan,I've hacked up a version that boots the BBB in UEFI mode and uses the same pattern that we have for qemu-arm. But I still need to convert that into commits and send patches to the list. Will do that next days, then we can discuss the pros and cons. Jan -- Siemens AG, Technology Competence Center Embedded Linux |
|
Kunijadar Shivanand
Hello Jan,
Sorry for the late reply. > Why not using the UEFI path, like we have for qemu-arm already? Would be much simpler to add (and likely also to maintain). I don't have experience on using UEFI. I'll check the current implementation for qemu-arm and will try to use UEFI path for BBB. I also created issue [1] in isar-cip-core to discuss SWUpdate on BBB. > Also, I'm skeptical that your changes didn't break the UEFI integration. > Did you test it afterward? It is tested only for BBB SWUpdate. I'll check and update the patches such that they shouldn't break UEFI integration. [1] https://gitlab.com/cip-project/cip-core/isar-cip-core/-/issues/39 Thanks & Regards Shivanand K -----Original Message----- From: Jan Kiszka <jan.kiszka@...> Sent: Thursday, August 18, 2022 5:50 PM To: kunijadar shivanand(TSIP TMIEC ODG Porting) <Shivanand.Kunijadar@...>; cip-dev@... Cc: dinesh kumar(TSIP TMIEC ODG Porting) <dinesh.kumar@...>; hayashi kazuhiro(林 和宏 □SWC◯ACT) <kazuhiro3.hayashi@...> Subject: Re: [isar-cip-core 0/4] SWUpdate on BBB On 18.08.22 07:04, Shivanand.Kunijadar@... wrote: From: Shivanand Kunijadar <Shivanand.Kunijadar@...>Why not using the UEFI path, like we have for qemu-arm already? Would be much simpler to add (and likely also to maintain). Also, I'm skeptical that your changes didn't break the UEFI integration. Did you test it afterward? Jan -- Siemens AG, Technology Competence Center Embedded Linux |
|
Jan Kiszka
On 18.08.22 07:04, Shivanand.Kunijadar@... wrote:
From: Shivanand Kunijadar <Shivanand.Kunijadar@...>Why not using the UEFI path, like we have for qemu-arm already? Would be much simpler to add (and likely also to maintain). Also, I'm skeptical that your changes didn't break the UEFI integration. Did you test it afterward? Jan -- Siemens AG, Technology Competence Center Embedded Linux |
|
Kunijadar Shivanand
From: Shivanand Kunijadar <Shivanand.Kunijadar@...>
The patches are related to swupdate on BBB using u-boot as bootloader. I confirmed swupdate on BBB board with all these patches. These patches are prepared by referring a branch[1] and patches are available at isar-cip-core branch[2]. [1] https://gitlab.com/cip-project/cip-core/isar-cip-core/-/tree/cip-sw-updates/swupdate [2] https://gitlab.com/cip-project/cip-core/isar-cip-core/-/tree/shiva/swupdate-bbb Shivanand Kunijadar (4): U-Boot: Add custom BBB U-Boot and partitioning SWUpdate: add SWUpdate customizations: add custom modifications for swupdate Added README for BBB swupdate conf/machine/bbb.conf | 23 ++++- doc/README.swupdate.bbb.md | 90 ++++++++++++++++++ recipes-bsp/u-boot-bbb/files/boot-bbb.scr.in | 79 +++++++++++++++ recipes-bsp/u-boot-bbb/files/fw_env.config | 1 + recipes-bsp/u-boot-bbb/files/ubootenv-bbb | Bin 0 -> 131072 bytes recipes-bsp/u-boot-bbb/u-boot-bbb_2022.05.bb | 59 ++++++++++++ recipes-core/customizations/common.inc | 5 +- recipes-core/customizations/files/interfaces | 6 ++ recipes-core/images/cip-core-image.bb | 9 ++ recipes-core/images/files/sw-description.tmpl | 15 +-- recipes-core/images/swupdate.inc | 7 +- .../files/swupdate.handler.u-boot.ini | 26 +++++ wic/bbb-u-boot.wks.in | 13 +++ 13 files changed, 315 insertions(+), 18 deletions(-) create mode 100644 doc/README.swupdate.bbb.md create mode 100644 recipes-bsp/u-boot-bbb/files/boot-bbb.scr.in create mode 100644 recipes-bsp/u-boot-bbb/files/fw_env.config create mode 100644 recipes-bsp/u-boot-bbb/files/ubootenv-bbb create mode 100644 recipes-bsp/u-boot-bbb/u-boot-bbb_2022.05.bb create mode 100644 recipes-core/customizations/files/interfaces create mode 100644 recipes-core/swupdate-handler-roundrobin/files/swupdate.handler.u-boot.ini create mode 100644 wic/bbb-u-boot.wks.in -- 2.20.1 |
|