rust-console/gba

License header for linker_scripts/mono_boot.ld?

jturcotte opened this issue · 2 comments

I'm guessing from the documentation that I'm supposed to copy https://github.com/rust-console/gba/blob/main/linker_scripts/mono_boot.ld into my own project so that the cargo config's rustflags can refer to it. I would however prefer the license of that file to be clear if I'm copying it.

I can see license = "Zlib OR Apache-2.0 OR MIT" in your Cargo.toml, but I'm not sure what I would have to put as the copyright holder anyway.

So I'm wondering if you could put some license header specifically in that file, or have some other idea how to deal with this.
Thanks

Ah, very good point that having to copy the linker script itself out of this repo into another can present confusion.

In 8bb1d42 I added a line at the top saying that the linker script specifically will just be CC0 public domain, for maximum simplicity. I've also explained this in the changelog for 0.11.1.

That's awesome, thanks.