Skip to content

Commit 9a7b954

Browse files
committed
ARC: AXS10x - extras for Synopsys release
This adds extra options on top of Buildroot's existing configuration for AXS10x boards. Important changes: 1. Linux kernel switched to arc-3.18-1 from SNPS GutHub This is required because support for ARC PGU is not upstreamed yet. 2. Additional packages included: * GDB (both server and target gdb) * MPlayer * Dropbear * RT-tests * iperf3 * perf 3. Extra options fr toolchain to build above packages * C++ * RPC * Wchar * Pthread debug Signed-off-by: Alexey Brodkin <[email protected]>
1 parent 6a0cc58 commit 9a7b954

File tree

2 files changed

+38
-6
lines changed

2 files changed

+38
-6
lines changed

configs/snps_axs101_defconfig

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,30 @@ BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_2=y
1515

1616
# Kernel
1717
BR2_LINUX_KERNEL=y
18-
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
19-
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.2"
20-
BR2_LINUX_KERNEL_PATCH="board/synopsys/axs10x/patches/linux"
18+
BR2_LINUX_KERNEL_CUSTOM_GIT=y
19+
BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://github.com/foss-for-synopsys-dwc-arc-processors/linux"
20+
BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="arc-3.18-1"
2121
BR2_LINUX_KERNEL_DEFCONFIG="axs101"
22+
BR2_LINUX_KERNEL_TOOL_PERF=y
2223

2324
# Bootloader
2425
BR2_TARGET_UBOOT=y
2526
BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
2627
BR2_TARGET_UBOOT_CUSTOM_VERSION=y
2728
BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2015.07"
2829
BR2_TARGET_UBOOT_BOARD_DEFCONFIG="axs101"
30+
31+
# Extra toolchain options for HS38 VDK release
32+
BR2_TOOLCHAIN_BUILDROOT_INET_RPC=y
33+
BR2_TOOLCHAIN_BUILDROOT_WCHAR=y
34+
BR2_PTHREAD_DEBUG=y
35+
BR2_TOOLCHAIN_BUILDROOT_CXX=y
36+
37+
# Extra packages options for HS38 VDK release
38+
BR2_PACKAGE_MPLAYER=y
39+
BR2_PACKAGE_GDB=y
40+
BR2_PACKAGE_GDB_SERVER=y
41+
BR2_PACKAGE_GDB_DEBUGGER=y
42+
BR2_PACKAGE_DROPBEAR=y
43+
BR2_PACKAGE_RT_TESTS=y
44+
BR2_PACKAGE_IPERF3=y

configs/snps_axs103_defconfig

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,30 @@ BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_2=y
1616

1717
# Kernel
1818
BR2_LINUX_KERNEL=y
19-
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
20-
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.2"
21-
BR2_LINUX_KERNEL_PATCH="board/synopsys/axs10x/patches/linux"
19+
BR2_LINUX_KERNEL_CUSTOM_GIT=y
20+
BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://github.com/foss-for-synopsys-dwc-arc-processors/linux"
21+
BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="arc-3.18-1"
2222
BR2_LINUX_KERNEL_DEFCONFIG="axs103_smp"
23+
BR2_LINUX_KERNEL_TOOL_PERF=y
2324

2425
# Bootloader
2526
BR2_TARGET_UBOOT=y
2627
BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
2728
BR2_TARGET_UBOOT_CUSTOM_VERSION=y
2829
BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2015.07"
2930
BR2_TARGET_UBOOT_BOARD_DEFCONFIG="axs103"
31+
32+
# Extra toolchain options for HS38 VDK release
33+
BR2_TOOLCHAIN_BUILDROOT_INET_RPC=y
34+
BR2_TOOLCHAIN_BUILDROOT_WCHAR=y
35+
BR2_PTHREAD_DEBUG=y
36+
BR2_TOOLCHAIN_BUILDROOT_CXX=y
37+
38+
# Extra packages options for HS38 VDK release
39+
BR2_PACKAGE_MPLAYER=y
40+
BR2_PACKAGE_GDB=y
41+
BR2_PACKAGE_GDB_SERVER=y
42+
BR2_PACKAGE_GDB_DEBUGGER=y
43+
BR2_PACKAGE_DROPBEAR=y
44+
BR2_PACKAGE_RT_TESTS=y
45+
BR2_PACKAGE_IPERF3=y

0 commit comments

Comments
 (0)