-
Notifications
You must be signed in to change notification settings - Fork 1
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
tools: Pass device part number and rev as args. #6
Conversation
It would be good if all the tools took lots of command line arguments, to specify all the things (part number, revision, file for ToC configuration, etc). But, the way I was trying to do things (eg with #5) is to keep the changes minimal, and reuse the existing "Alif way" of having config files that specify everything. I know it's not very clean or that easy to use, but if we need to keep rebasing these patches on new Alif releases, then we don't want to make changes that are too big. Otherwise it's a lot of effort to update the toolkit from Alif. OTOH, if Alif are not interested in improving this tool, and their updates are minor and few, we could do a lot more here to improve the ergonomics of the tools. |
Actually #5 makes more changes, and also adds args, but I feel that many changes have already been made, so maybe we're beyond that and may as well fix this issue in a way that works for us? Note that I kept a fallback to reading the config from file, unchanged, so both options are available. And if part/rev are specified, I use the exiting functions to load them. The main issue I have with #5 is that there's no way to specify the |
Well, most of the changes there are in the new
Yes, that would be nice, to specify In that case we should also go ahead and change how the |
It is now complete. However, that's exactly my point: we've already added code and args to all tools, so may as well make this change too.
There are 3 different approaches/possible fix/improvements here: 1- Allow specifying the Option 3:
Those are not mutually exclusive though, 1&2 are not really needed, but you can still support them if you want.
This is specified in the AToC file, and already works very well. Why change it though? |
Option 3 is good, let's go with that (and can improve/extend later if needed).
So that it's possible to use the |
But this is already possible via The fix: we can just run a single json file through CPP, and enable images conditionally. This way only a single file is needed per board, but we could also define this |
Just be careful of adding too much complexity, and complexity in lots of different direction. Because if that file is generated it must go in the And then if one config file is generated, why not generate them all from options set in |
This is the app-cfg file which is already passed to the tools in |
2c1a339
to
2c93449
Compare
Signed-off-by: iabdalkader <[email protected]>
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.
Tested with an AE3. Works well.
Just a proof of concept.
The proposed fix here allows the following:
global-cfg.db
The part/rev can be set in
mpconfigboard.mk
, which is very consistent with other ports.