Merge pull request #105432 from tadfisher/remarkable-2-cross
Cross-compile configuration for reMarkable 2 tablet
This commit is contained in:
commit
b1d16d8101
|
@ -39,6 +39,11 @@ rec {
|
||||||
platform = platforms.zero-gravitas;
|
platform = platforms.zero-gravitas;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
remarkable2 = {
|
||||||
|
config = "armv7l-unknown-linux-gnueabihf";
|
||||||
|
platform = platforms.zero-sugar;
|
||||||
|
};
|
||||||
|
|
||||||
armv7l-hf-multiplatform = {
|
armv7l-hf-multiplatform = {
|
||||||
config = "armv7l-unknown-linux-gnueabihf";
|
config = "armv7l-unknown-linux-gnueabihf";
|
||||||
platform = platforms.armv7l-hf-multiplatform;
|
platform = platforms.armv7l-hf-multiplatform;
|
||||||
|
|
|
@ -217,6 +217,21 @@ rec {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
zero-sugar = {
|
||||||
|
name = "zero-sugar";
|
||||||
|
kernelBaseConfig = "zero-sugar_defconfig";
|
||||||
|
kernelArch = "arm";
|
||||||
|
kernelDTB = true;
|
||||||
|
kernelAutoModules = false;
|
||||||
|
kernelPreferBuiltin = true;
|
||||||
|
kernelTarget = "zImage";
|
||||||
|
gcc = {
|
||||||
|
cpu = "cortex-a7";
|
||||||
|
fpu = "neon-vfpv4";
|
||||||
|
float-abi = "hard";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
scaleway-c1 = armv7l-hf-multiplatform // {
|
scaleway-c1 = armv7l-hf-multiplatform // {
|
||||||
gcc = {
|
gcc = {
|
||||||
cpu = "cortex-a9";
|
cpu = "cortex-a9";
|
||||||
|
|
Loading…
Reference in New Issue