-
Notifications
You must be signed in to change notification settings - Fork 14
Add partition scheme for IQ-9075-EVK, IQ-8275-EVK boards #42
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
Conversation
4602676
to
a6f06dc
Compare
Could you close #41 with your first commit? (Use "fixes: #xyz" in the commit message)? |
|
This failure is little surprising. Exact same schema working fine on qcs6490-rb3gen2 platform. Seems ptool is generating an unwanted gpt entry. Will investigate and get back. |
It's not that surprising. Somebody has hardcoded into qcom-ptool that UFS devices have LUNs 0-5. I've stumbled upon that while being at XDC, but I didn't have time to fix it. Please adjust qcom-ptool not to write unused LUNs to partition.xml |
gen_partition.py assumes there can be up to 5 LUNs, and generate an XML file with 5 physical_partition entries. For QCS615, there are only 4 LUNs, and we end up generating partitions.xml with an extra, empty physical_partition entry. The right thing would probably be to parse partition.conf and detect how many LUNs we have in there, but a simpler solution is to keep trying 5 LUNs but only create the physical_partition entry once we find at least one partition, which is what this patch does. It should fix the problem we've noticed in qualcomm-linux#42. Signed-off-by: Nicolas Dechesne <[email protected]>
Add contents.xml template for both emmc and ufs storage types of qcs615-adp-air board. Signed-off-by: Viswanath Kraleti <[email protected]>
Add initial partition scheme, contents.xml template for IQ-9075-EVK board Signed-off-by: Viswanath Kraleti <[email protected]>
Add initial partition scheme, contents.xml template for IQ-8275-EVK board Signed-off-by: Viswanath Kraleti <[email protected]>
a6f06dc
to
eeae352
Compare
Add initial partition scheme, contents.xml template for IQ-9075-EVK, IQ-8275-EVK boards. Also add missing contents.xml template for QCS615-ADP-AIR board.
Fixes: #41