-
Notifications
You must be signed in to change notification settings - Fork 619
os/: Update Kernel binary and app binary test for bk7239n #7098
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: BK7239N_Support
Are you sure you want to change the base?
Conversation
Current test code considers about kernel/common/app1 partition, not about app2 partition. This commit has been modified to enable testing even when app2 partition present. Signed-off-by: Jaeyong Lee <jaeyong1.lee@samsung.com>
…rnel update test to accept command line arguments - Add support for running specific tests: same_version, new_version, invalid, all - Each test now runs independently with proper error handling - Update main function to parse argc/argv and call appropriate test functions
… update tests separately This commit modifies the wifiapp to allow users to run individual binary update tests instead of only running all tests together
|
This is for OTA test for beken chipset and includes changes done by [jylee9613] for app2 binary support in test. These are verified on both chipsets; bk7239n and rtl8721csm. |
|
Can you test this example is also verified for rtl8730e? |
verified on ailite board. |
jylee9613
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good to me.
…sion test Earlier, teh new_version test shows status as failed because version_up flag was set as false. This flag should be true
|
Added new commit for kernel_update test for new_version. |
| if (bin_names[i] == KERNEL) { | ||
| version_up = true; | ||
| } | ||
| int version_up = true; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I set version_up to true only for kernel, because this is kernel update test.
What I intended is that even if only kernel binary is updated, binary manager should load the latest version of kernel and same version of app1/app2.
app1/app2 version update test need to be tested in loadable_sample/wifiapp/binary_update.c
No description provided.