Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion meta-rdk-mtk-bpir4/recipes-ccsp/hal/files/start_cron.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ CRON_JOB="*/15 * * * * /usr/bin/fwupgrade >> /var/log/fwupgrade_cron.log 2>&1"
crontab -l 2>/dev/null | grep -qF "/usr/bin/fwupgrade" || (
crontab -l 2>/dev/null; echo "$CRON_JOB"
) | crontab -
partitions=(9 10 11 12 13)
partitions=(8 10 11 12 13)

for part_num in "${partitions[@]}"; do
part="/dev/mmcblk0p${part_num}"
Expand Down
6 changes: 3 additions & 3 deletions wic/sdimage-Bananapi_6-6.wks
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ part --source rawcopy --sourceparams="file=atf/bpi-r4_sdmmc_fip_B_6-6.bin" --par
part --source bootimg-partition --ondisk mmcblk0 --fstype=vfat --label boot_b --active --fixed-size 16M --part-type=0FC63DAF-8483-4772-8E79-3D69D8477DE4

# 8. rootfs B
part / --source rootfs --ondisk mmcblk0 --fstype=ext4 --label rootfs_b --fixed-size 1024M
part / --source empty --ondisk mmcblk0 --fstype=ext4 --label rootfs_b --fixed-size 1024M
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

as updated please test end to end with nvram and come up with final test results and update here
https://jira.rdkcentral.com/jira/browse/RDKBACCL-1394

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

okay.


# 9. NVRAM (2MB)
part --source=empty --fstype=ext4 --label=nvram --fixed-size=2M
# 9. NVRAM (16MB)
part --source=empty --fstype=ext4 --label=nvram --fixed-size=16M

# 10. Crash_a Debug (8MB)
part --source=empty --fstype=ext4 --label=crash_a --fixed-size=8M
Expand Down