We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
return consts.BasePhysAddr - addr, nil
This calculates the offset from the end of the image, but what we need is the offset from the beginning of the image.
return <image size likely 16MB> - (consts.BasePhysAddr - addr), nil
I hard coded this to 16MB (0x1000000) for my image and it worked like a charm. The real fix probably needs to use the actual image size.
This is how the problem manifested, just in case someone is searching for this issue:
bg-prov: error: new ACM size doesn't equal old ACM size
converged-security-suite/pkg/tools/ifd.go
Line 49 in 5f38440
The text was updated successfully, but these errors were encountered:
No branches or pull requests
return consts.BasePhysAddr - addr, nil
This calculates the offset from the end of the image, but what we need is the offset from the beginning of the image.
return <image size likely 16MB> - (consts.BasePhysAddr - addr), nil
I hard coded this to 16MB (0x1000000) for my image and it worked like a charm. The real fix probably needs to use the actual image size.
This is how the problem manifested, just in case someone is searching for this issue:
bg-prov: error: new ACM size doesn't equal old ACM size
converged-security-suite/pkg/tools/ifd.go
Line 49 in 5f38440
The text was updated successfully, but these errors were encountered: