Dmitrii Okunev
Dmitrii Okunev
Prepare "debian/" directory to simplify debian maintainers/uploaders work and mail about that to [email protected] [1]. [1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=620511
How to add custom CFLAGS and LDFLAGS? I was have to use `sed [...] -i Makefile` in file `debian/rules` of Debian package to make that.
It's required to be able to clone with ``` git clone https://git.example.com/user/project ``` instead of ``` git clone https://git.example.com/user/project.git ``` as it already is on GitHub.
Hello! I'm wondering: is it possible to publish variable `brandId` (to make it `BrandID`)? We are trying to execute different code depending on is it Intel or AMD. https://github.com/intel-go/cpuid/blob/5747e5cec0d96c427e569cfa14cb539bf116f7ad/cpuid.go#L323
I'm considering to try this library from Go. And I'm wondering if it makes sense to make a pull request with Go bindings into here. or it won't be merged...
Hello! I'm parsing firmwares to analyze corruptions. But there is a non-corrupted firmware (provided by our ODM), which is non-parsible by fiano, it returns an error: ``` conflicting erase polarities,...
Hello. It looks like verb `create-fv` does not work in the `utk` tool on an empty image: ``` xaionaro@void:~/go/src/github.com/linuxboot/fiano$ dd if=/dev/zero of=/tmp/image bs=1K count=64 64+0 records in 64+0 records out...
Currently if I call `uefi.Parse` on an image with just a bunch of zeros inside, it will be parsed as a BIOS region with a padding. While I use `uefi.Parse`...
Hello. I'm wondering if there's any specific reason of this copyings: ``` newBuf := data[:fv.Length] fv.buf = make([]byte, fv.Length) copy(fv.buf, newBuf) ``` I've removed copying in my sandbox and everything...
Hello. I was wondering what is the best practice to extract a GUID of a module? Right now I use this way: ```go func (v *visitor) Visit(f fianoUEFI.Firmware) error {...