diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm.sh | 3 | ||||
-rw-r--r-- | arch/arm64.sh | 3 | ||||
-rw-r--r-- | arch/x86.sh | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm.sh b/arch/arm.sh new file mode 100644 index 0000000..53462fb --- /dev/null +++ b/arch/arm.sh @@ -0,0 +1,3 @@ +arch_dir=arm32 +cross_compile=arm-buildroot-linux-uclibcgnueabihf- +image_kernel=zImage diff --git a/arch/arm64.sh b/arch/arm64.sh new file mode 100644 index 0000000..a4b4b87 --- /dev/null +++ b/arch/arm64.sh @@ -0,0 +1,3 @@ +arch_dir=arm64 +cross_compile=aarch64-buildroot-linux-gnu- +image_kernel=Image diff --git a/arch/x86.sh b/arch/x86.sh new file mode 100644 index 0000000..50edef3 --- /dev/null +++ b/arch/x86.sh @@ -0,0 +1,3 @@ +arch_dir=x86 +cross_compile= +image_kernel=bzImage |