All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 0/5] synopsys: boards maintenance
@ 2022-01-31  8:12 Sergey Matyukevich
  2022-01-31  8:12 ` [Buildroot] [PATCH 1/5] configs/snps_arc700_axs101: bump kernel and u-boot versions Sergey Matyukevich
                   ` (6 more replies)
  0 siblings, 7 replies; 15+ messages in thread
From: Sergey Matyukevich @ 2022-01-31  8:12 UTC (permalink / raw)
  To: buildroot; +Cc: Joao Pinto, ARC Maintainers, Sergey Matyukevich

Hi all,

This is a maintenance patch series for Synopsys boards. Outdated
and unused VDK configurations are removed. All the other boards
receive Linux kernel and U-Boot updates.

Regards,
Sergey


Sergey Matyukevich (5):
  configs/snps_arc700_axs101: bump kernel and u-boot versions
  configs/snps_archs32_axs103: bump kernel and u-boot versions
  configs/snps_archs38_hsdk: bump kernel and u-boot versions
  configs/snps_archs38_haps: bump kernel and u-boot versions
  board/synopsys: remove outdated vdk boards

 board/synopsys/axs10x/uboot-fragment.config   |   1 +
 .../synopsys/vdk/linux-vdk-aarch64-defconfig  | 143 ------------------
 board/synopsys/vdk/readme.txt                 |  65 --------
 configs/snps_aarch64_vdk_defconfig            |  12 --
 configs/snps_arc700_axs101_defconfig          |  10 +-
 configs/snps_archs38_axs103_defconfig         |  10 +-
 configs/snps_archs38_haps_defconfig           |   6 +-
 configs/snps_archs38_hsdk_defconfig           |   7 +-
 configs/snps_archs38_vdk_defconfig            |  20 ---
 9 files changed, 20 insertions(+), 254 deletions(-)
 create mode 100644 board/synopsys/axs10x/uboot-fragment.config
 delete mode 100644 board/synopsys/vdk/linux-vdk-aarch64-defconfig
 delete mode 100644 board/synopsys/vdk/readme.txt
 delete mode 100644 configs/snps_aarch64_vdk_defconfig
 delete mode 100644 configs/snps_archs38_vdk_defconfig

-- 
2.35.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Buildroot] [PATCH 1/5] configs/snps_arc700_axs101: bump kernel and u-boot versions
  2022-01-31  8:12 [Buildroot] [PATCH 0/5] synopsys: boards maintenance Sergey Matyukevich
@ 2022-01-31  8:12 ` Sergey Matyukevich
  2022-02-07 10:07   ` [Buildroot] [arc-buildroot] " Alexey Brodkin via buildroot
  2022-01-31  8:12 ` [Buildroot] [PATCH 2/5] configs/snps_archs32_axs103: " Sergey Matyukevich
                   ` (5 subsequent siblings)
  6 siblings, 1 reply; 15+ messages in thread
From: Sergey Matyukevich @ 2022-01-31  8:12 UTC (permalink / raw)
  To: buildroot
  Cc: Joao Pinto, ARC Maintainers, Sergey Matyukevich, Sergey Matyukevich

From: Sergey Matyukevich <sergey.matyukevich@synopsys.com>

Bump versions:
- use U-Boot 2022.01
- use Linux kernel v5.16

Add U-Boot configuration fragment increasing early malloc pool size.

Signed-off-by: Sergey Matyukevich <sergey.matyukevich@synopsys.com>
---
 board/synopsys/axs10x/uboot-fragment.config |  1 +
 configs/snps_arc700_axs101_defconfig        | 10 ++++++----
 2 files changed, 7 insertions(+), 4 deletions(-)
 create mode 100644 board/synopsys/axs10x/uboot-fragment.config

diff --git a/board/synopsys/axs10x/uboot-fragment.config b/board/synopsys/axs10x/uboot-fragment.config
new file mode 100644
index 0000000000..92fe20f463
--- /dev/null
+++ b/board/synopsys/axs10x/uboot-fragment.config
@@ -0,0 +1 @@
+CONFIG_SYS_MALLOC_F_LEN=0x0500
diff --git a/configs/snps_arc700_axs101_defconfig b/configs/snps_arc700_axs101_defconfig
index 080250e92b..3a6bd5c0d3 100644
--- a/configs/snps_arc700_axs101_defconfig
+++ b/configs/snps_arc700_axs101_defconfig
@@ -8,13 +8,13 @@ BR2_TARGET_ROOTFS_INITRAMFS=y
 BR2_SYSTEM_DHCP="eth0"
 BR2_ROOTFS_POST_BUILD_SCRIPT="board/synopsys/axs10x/post-build.sh"
 
-# Linux headers same as kernel, a 5.6 series
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_6=y
+# Linux headers same as kernel, a 5.16 series
+BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_16=y
 
 # Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.6.3"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.16"
 BR2_LINUX_KERNEL_DEFCONFIG="axs101"
 BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
 
@@ -22,6 +22,8 @@ BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
 BR2_TARGET_UBOOT=y
 BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
 BR2_TARGET_UBOOT_CUSTOM_VERSION=y
-BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2018.05"
+BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2022.01"
 BR2_TARGET_UBOOT_BOARD_DEFCONFIG="axs101"
+BR2_TARGET_UBOOT_CONFIG_FRAGMENT_FILES="board/synopsys/axs10x/uboot-fragment.config"
 BR2_TARGET_UBOOT_NEEDS_DTC=y
+BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
-- 
2.35.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [Buildroot] [PATCH 2/5] configs/snps_archs32_axs103: bump kernel and u-boot versions
  2022-01-31  8:12 [Buildroot] [PATCH 0/5] synopsys: boards maintenance Sergey Matyukevich
  2022-01-31  8:12 ` [Buildroot] [PATCH 1/5] configs/snps_arc700_axs101: bump kernel and u-boot versions Sergey Matyukevich
@ 2022-01-31  8:12 ` Sergey Matyukevich
  2022-02-07 10:08   ` [Buildroot] [arc-buildroot] " Alexey Brodkin via buildroot
  2022-01-31  8:12 ` [Buildroot] [PATCH 3/5] configs/snps_archs38_hsdk: " Sergey Matyukevich
                   ` (4 subsequent siblings)
  6 siblings, 1 reply; 15+ messages in thread
From: Sergey Matyukevich @ 2022-01-31  8:12 UTC (permalink / raw)
  To: buildroot
  Cc: Joao Pinto, ARC Maintainers, Sergey Matyukevich, Sergey Matyukevich

From: Sergey Matyukevich <sergey.matyukevich@synopsys.com>

Bump versions:
- use U-Boot 2022.01
- use Linux kernel v5.16

Add U-Boot configuration fragment increasing early malloc pool size.

Signed-off-by: Sergey Matyukevich <sergey.matyukevich@synopsys.com>
---
 configs/snps_archs38_axs103_defconfig | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/configs/snps_archs38_axs103_defconfig b/configs/snps_archs38_axs103_defconfig
index c5847809ba..2002520d1b 100644
--- a/configs/snps_archs38_axs103_defconfig
+++ b/configs/snps_archs38_axs103_defconfig
@@ -9,13 +9,13 @@ BR2_TARGET_ROOTFS_INITRAMFS=y
 BR2_SYSTEM_DHCP="eth0"
 BR2_ROOTFS_POST_BUILD_SCRIPT="board/synopsys/axs10x/post-build.sh"
 
-# Linux headers same as kernel, a 5.6 series
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_6=y
+# Linux headers same as kernel, a 5.16 series
+BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_16=y
 
 # Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.6.3"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.16"
 BR2_LINUX_KERNEL_DEFCONFIG="axs103_smp"
 BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
 
@@ -23,6 +23,8 @@ BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
 BR2_TARGET_UBOOT=y
 BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
 BR2_TARGET_UBOOT_CUSTOM_VERSION=y
-BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2018.05"
+BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2022.01"
 BR2_TARGET_UBOOT_BOARD_DEFCONFIG="axs103"
+BR2_TARGET_UBOOT_CONFIG_FRAGMENT_FILES="board/synopsys/axs10x/uboot-fragment.config"
 BR2_TARGET_UBOOT_NEEDS_DTC=y
+BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
-- 
2.35.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [Buildroot] [PATCH 3/5] configs/snps_archs38_hsdk: bump kernel and u-boot versions
  2022-01-31  8:12 [Buildroot] [PATCH 0/5] synopsys: boards maintenance Sergey Matyukevich
  2022-01-31  8:12 ` [Buildroot] [PATCH 1/5] configs/snps_arc700_axs101: bump kernel and u-boot versions Sergey Matyukevich
  2022-01-31  8:12 ` [Buildroot] [PATCH 2/5] configs/snps_archs32_axs103: " Sergey Matyukevich
@ 2022-01-31  8:12 ` Sergey Matyukevich
  2022-02-07 10:09   ` [Buildroot] [arc-buildroot] " Alexey Brodkin via buildroot
  2022-01-31  8:12 ` [Buildroot] [PATCH 4/5] configs/snps_archs38_haps: " Sergey Matyukevich
                   ` (3 subsequent siblings)
  6 siblings, 1 reply; 15+ messages in thread
From: Sergey Matyukevich @ 2022-01-31  8:12 UTC (permalink / raw)
  To: buildroot
  Cc: Joao Pinto, ARC Maintainers, Sergey Matyukevich, Sergey Matyukevich

From: Sergey Matyukevich <sergey.matyukevich@synopsys.com>

Bump versions:
- use U-Boot 2022.01
- use Linux kernel v5.16

Signed-off-by: Sergey Matyukevich <sergey.matyukevich@synopsys.com>
---
 configs/snps_archs38_hsdk_defconfig | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/configs/snps_archs38_hsdk_defconfig b/configs/snps_archs38_hsdk_defconfig
index 4a1ac3fcff..413ca5098c 100644
--- a/configs/snps_archs38_hsdk_defconfig
+++ b/configs/snps_archs38_hsdk_defconfig
@@ -1,7 +1,7 @@
 BR2_arcle=y
 BR2_archs38_full=y
 BR2_TOOLCHAIN_BUILDROOT_GLIBC=y
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_6=y
+BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_16=y
 BR2_PACKAGE_GLIBC_UTILS=y
 BR2_TOOLCHAIN_BUILDROOT_CXX=y
 BR2_TARGET_OPTIMIZATION="-mfpu=fpud_all"
@@ -12,7 +12,7 @@ BR2_ROOTFS_POST_IMAGE_SCRIPT="support/scripts/genimage.sh"
 BR2_ROOTFS_POST_SCRIPT_ARGS="-c board/synopsys/hsdk/genimage.cfg"
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.6.3"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.16"
 BR2_LINUX_KERNEL_DEFCONFIG="hsdk"
 BR2_LINUX_KERNEL_CONFIG_FRAGMENT_FILES="board/synopsys/hsdk/linux.fragment"
 BR2_TARGET_ROOTFS_EXT2=y
@@ -21,10 +21,11 @@ BR2_TARGET_ROOTFS_EXT2_4=y
 BR2_TARGET_UBOOT=y
 BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
 BR2_TARGET_UBOOT_CUSTOM_VERSION=y
-BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2018.05"
+BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2022.01"
 BR2_TARGET_UBOOT_BOARD_DEFCONFIG="hsdk"
 BR2_TARGET_UBOOT_NEEDS_DTC=y
 BR2_TARGET_UBOOT_FORMAT_ELF=y
+BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
 BR2_PACKAGE_HOST_DOSFSTOOLS=y
 BR2_PACKAGE_HOST_GENIMAGE=y
 BR2_PACKAGE_HOST_MTOOLS=y
-- 
2.35.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [Buildroot] [PATCH 4/5] configs/snps_archs38_haps: bump kernel and u-boot versions
  2022-01-31  8:12 [Buildroot] [PATCH 0/5] synopsys: boards maintenance Sergey Matyukevich
                   ` (2 preceding siblings ...)
  2022-01-31  8:12 ` [Buildroot] [PATCH 3/5] configs/snps_archs38_hsdk: " Sergey Matyukevich
@ 2022-01-31  8:12 ` Sergey Matyukevich
  2022-02-07 10:09   ` [Buildroot] [arc-buildroot] " Alexey Brodkin via buildroot
  2022-01-31  8:12 ` [Buildroot] [PATCH 5/5] board/synopsys: remove outdated vdk boards Sergey Matyukevich
                   ` (2 subsequent siblings)
  6 siblings, 1 reply; 15+ messages in thread
From: Sergey Matyukevich @ 2022-01-31  8:12 UTC (permalink / raw)
  To: buildroot
  Cc: Joao Pinto, ARC Maintainers, Sergey Matyukevich, Sergey Matyukevich

From: Sergey Matyukevich <sergey.matyukevich@synopsys.com>

Bump versions:
- use U-Boot 2022.01
- use Linux kernel v5.16

Signed-off-by: Sergey Matyukevich <sergey.matyukevich@synopsys.com>
---
 configs/snps_archs38_haps_defconfig | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/configs/snps_archs38_haps_defconfig b/configs/snps_archs38_haps_defconfig
index a95d760df2..02e020bb47 100644
--- a/configs/snps_archs38_haps_defconfig
+++ b/configs/snps_archs38_haps_defconfig
@@ -7,12 +7,12 @@ BR2_TARGET_GENERIC_HOSTNAME="zebu_hs"
 BR2_TARGET_GENERIC_ISSUE="Welcome to the HAPS Development Platform"
 BR2_TARGET_ROOTFS_INITRAMFS=y
 
-# Linux headers same as kernel, a 5.6 series
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_6=y
+# Linux headers same as kernel, a 5.16 series
+BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_16=y
 
 # Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.6.3"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.16"
 BR2_LINUX_KERNEL_DEFCONFIG="haps_hs_smp"
 BR2_LINUX_KERNEL_VMLINUX=y
-- 
2.35.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [Buildroot] [PATCH 5/5] board/synopsys: remove outdated vdk boards
  2022-01-31  8:12 [Buildroot] [PATCH 0/5] synopsys: boards maintenance Sergey Matyukevich
                   ` (3 preceding siblings ...)
  2022-01-31  8:12 ` [Buildroot] [PATCH 4/5] configs/snps_archs38_haps: " Sergey Matyukevich
@ 2022-01-31  8:12 ` Sergey Matyukevich
  2022-02-07 10:11   ` [Buildroot] [arc-buildroot] " Alexey Brodkin via buildroot
  2022-01-31 12:05 ` [Buildroot] [PATCH 0/5] synopsys: boards maintenance Giulio Benetti
  2022-02-12 11:53 ` Arnout Vandecappelle
  6 siblings, 1 reply; 15+ messages in thread
From: Sergey Matyukevich @ 2022-01-31  8:12 UTC (permalink / raw)
  To: buildroot
  Cc: Joao Pinto, ARC Maintainers, Sergey Matyukevich, Sergey Matyukevich

From: Sergey Matyukevich <sergey.matyukevich@synopsys.com>

Remove outdated and unused aarch64 and archs38 Synopsys VDK boards.

Signed-off-by: Sergey Matyukevich <sergey.matyukevich@synopsys.com>
---
 DEVELOPERS                                    |   5 -
 .../synopsys/vdk/linux-vdk-aarch64-defconfig  | 143 ------------------
 board/synopsys/vdk/readme.txt                 |  65 --------
 configs/snps_aarch64_vdk_defconfig            |  12 --
 configs/snps_archs38_vdk_defconfig            |  20 ---
 5 files changed, 245 deletions(-)
 delete mode 100644 board/synopsys/vdk/linux-vdk-aarch64-defconfig
 delete mode 100644 board/synopsys/vdk/readme.txt
 delete mode 100644 configs/snps_aarch64_vdk_defconfig
 delete mode 100644 configs/snps_archs38_vdk_defconfig

diff --git a/DEVELOPERS b/DEVELOPERS
index a1ec9a091e..5ae5ce18f4 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -217,7 +217,6 @@ F:	configs/snps_arc700_axs101_defconfig
 F:	configs/snps_archs38_axs103_defconfig
 F:	configs/snps_archs38_haps_defconfig
 F:	configs/snps_archs38_hsdk_defconfig
-F:	configs/snps_archs38_vdk_defconfig
 
 N:	Ariel D'Alessandro <ariel@vanguardiasur.com.ar>
 F:	package/axfsutils/
@@ -1424,10 +1423,6 @@ F:	package/ssdp-responder/
 F:	package/sysklogd/
 F:	package/watchdogd/
 
-N:	Joao Pinto <jpinto@synopsys.com>
-F:	board/synopsys/vdk/
-F:	configs/snps_aarch64_vdk_defconfig
-
 N:	Jochen Baltes <jochen.baltes@gmail.com>
 F:	package/altera-stapl
 
diff --git a/board/synopsys/vdk/linux-vdk-aarch64-defconfig b/board/synopsys/vdk/linux-vdk-aarch64-defconfig
deleted file mode 100644
index 8109e16925..0000000000
--- a/board/synopsys/vdk/linux-vdk-aarch64-defconfig
+++ /dev/null
@@ -1,143 +0,0 @@
-CONFIG_SYSVIPC=y
-CONFIG_POSIX_MQUEUE=y
-CONFIG_NO_HZ=y
-CONFIG_HIGH_RES_TIMERS=y
-CONFIG_BSD_PROCESS_ACCT=y
-CONFIG_IKCONFIG=y
-CONFIG_IKCONFIG_PROC=y
-CONFIG_LOG_BUF_SHIFT=16
-CONFIG_CGROUPS=y
-CONFIG_BLK_DEV_INITRD=y
-CONFIG_EMBEDDED=y
-CONFIG_SLAB=y
-CONFIG_PROFILING=y
-CONFIG_CC_STACKPROTECTOR_REGULAR=y
-CONFIG_MODULES=y
-CONFIG_MODULE_UNLOAD=y
-CONFIG_SMP=y
-CONFIG_SCHED_MC=y
-CONFIG_SCHED_SMT=y
-CONFIG_NR_CPUS=8
-CONFIG_PREEMPT=y
-CONFIG_DEFAULT_MMAP_MIN_ADDR=32768
-CONFIG_TRANSPARENT_HUGEPAGE=y
-CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y
-CONFIG_CMDLINE="console=ttyAMA0 earlyprintk=pl011,0x1c090000 debug user_debug=31 loglevel=9 root=/dev/vda"
-CONFIG_CMDLINE_FORCE=y
-CONFIG_BINFMT_MISC=y
-CONFIG_CPU_IDLE=y
-CONFIG_CPU_FREQ=y
-CONFIG_CPU_FREQ_GOV_USERSPACE=y
-CONFIG_CPU_FREQ_GOV_ONDEMAND=y
-CONFIG_ARM_BIG_LITTLE_CPUFREQ=y
-CONFIG_ARM_DT_BL_CPUFREQ=y
-CONFIG_ARM_SPCI_CPUFREQ=y
-CONFIG_NET=y
-CONFIG_PACKET=y
-CONFIG_UNIX=y
-CONFIG_XFRM_USER=y
-CONFIG_NET_KEY=y
-CONFIG_NET_KEY_MIGRATE=y
-CONFIG_INET=y
-CONFIG_IP_MULTICAST=y
-CONFIG_IP_PNP=y
-CONFIG_IP_PNP_DHCP=y
-CONFIG_IP_PNP_BOOTP=y
-CONFIG_IP_PNP_RARP=y
-CONFIG_SYN_COOKIES=y
-CONFIG_NETWORK_PHY_TIMESTAMPING=y
-CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
-CONFIG_DEVTMPFS=y
-CONFIG_DEVTMPFS_MOUNT=y
-CONFIG_VEXPRESS_CONFIG=y
-CONFIG_CONNECTOR=m
-CONFIG_BLK_DEV_LOOP=y
-CONFIG_BLK_DEV_NBD=y
-CONFIG_BLK_DEV_RAM=y
-CONFIG_BLK_DEV_RAM_SIZE=65536
-CONFIG_VIRTIO_BLK=y
-CONFIG_SCSI=y
-CONFIG_BLK_DEV_SD=y
-CONFIG_BLK_DEV_DM=y
-CONFIG_NETDEVICES=y
-CONFIG_STMMAC_ETH=m
-CONFIG_INPUT_EVDEV=y
-CONFIG_INPUT_MISC=y
-CONFIG_INPUT_UINPUT=y
-CONFIG_SERIO_AMBAKMI=y
-CONFIG_SERIAL_8250=y
-CONFIG_SERIAL_8250_CONSOLE=y
-CONFIG_SERIAL_AMBA_PL011=y
-CONFIG_SERIAL_AMBA_PL011_CONSOLE=y
-CONFIG_SERIAL_OF_PLATFORM=y
-CONFIG_VIRTIO_CONSOLE=y
-CONFIG_I2C=y
-CONFIG_I2C_CHARDEV=y
-CONFIG_I2C_DESIGNWARE_PLATFORM=y
-CONFIG_GPIOLIB=y
-CONFIG_GPIO_SYSFS=y
-CONFIG_POWER_RESET_VEXPRESS=y
-CONFIG_FB=y
-CONFIG_FB_ARMCLCD=y
-CONFIG_FRAMEBUFFER_CONSOLE=y
-CONFIG_LOGO=y
-CONFIG_USB_HIDDEV=y
-CONFIG_USB=y
-CONFIG_USB_EHCI_HCD=y
-CONFIG_USB_EHCI_HCD_SYNOPSYS=y
-CONFIG_USB_OHCI_HCD=y
-CONFIG_NOP_USB_XCEIV=y
-CONFIG_USB_ULPI=y
-CONFIG_USB_DUMMY_HCD=m
-CONFIG_USB_G_SERIAL=m
-CONFIG_MMC=y
-CONFIG_MMC_ARMMMCI=y
-CONFIG_NEW_LEDS=y
-CONFIG_LEDS_CLASS=y
-CONFIG_LEDS_GPIO=y
-CONFIG_LEDS_TRIGGERS=y
-CONFIG_LEDS_TRIGGER_TIMER=y
-CONFIG_LEDS_TRIGGER_ONESHOT=y
-CONFIG_LEDS_TRIGGER_HEARTBEAT=y
-CONFIG_LEDS_TRIGGER_BACKLIGHT=y
-CONFIG_LEDS_TRIGGER_CPU=y
-CONFIG_LEDS_TRIGGER_GPIO=y
-CONFIG_SWITCH=y
-CONFIG_RTC_CLASS=y
-CONFIG_RTC_DRV_PL031=y
-CONFIG_VIRTIO_BALLOON=y
-CONFIG_VIRTIO_MMIO=y
-CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES=y
-CONFIG_COMMON_CLK_VERSATILE=y
-CONFIG_CLK_SP810=y
-CONFIG_CLK_VEXPRESS_OSC=y
-CONFIG_COMMON_CLK_SCPI=y
-CONFIG_MAILBOX=y
-CONFIG_ARM_SCPI_PROTOCOL=y
-CONFIG_EXT4_FS=y
-CONFIG_EXT4_FS_SECURITY=y
-CONFIG_BTRFS_FS=m
-CONFIG_QFMT_V2=y
-CONFIG_AUTOFS4_FS=m
-CONFIG_MSDOS_FS=m
-CONFIG_VFAT_FS=m
-CONFIG_TMPFS=y
-CONFIG_TMPFS_POSIX_ACL=y
-CONFIG_HUGETLBFS=m
-CONFIG_ECRYPT_FS=m
-CONFIG_CRAMFS=m
-CONFIG_NLS_CODEPAGE_437=y
-CONFIG_NLS_ISO8859_1=y
-CONFIG_VIRTUALIZATION=y
-CONFIG_KVM=y
-CONFIG_DYNAMIC_DEBUG=y
-CONFIG_DEBUG_INFO=y
-CONFIG_MAGIC_SYSRQ=y
-CONFIG_SCHEDSTATS=y
-CONFIG_TIMER_STATS=y
-CONFIG_FUNCTION_TRACER=y
-CONFIG_STRICT_DEVMEM=y
-CONFIG_SECURITY=y
-CONFIG_SECURITY_NETWORK_XFRM=y
-CONFIG_LSM_MMAP_MIN_ADDR=0
-
diff --git a/board/synopsys/vdk/readme.txt b/board/synopsys/vdk/readme.txt
deleted file mode 100644
index 9804647340..0000000000
--- a/board/synopsys/vdk/readme.txt
+++ /dev/null
@@ -1,65 +0,0 @@
-Synopsys VDK Software Development Platform
-
-Intro
-=====
-
-The Virtualizer Development Kit (VDK) Family for ARM Cortex Products
-consists of a set of virtual prototypes that provide a virtualizer for
-the ARM core variants. The VDK is a standalone package that runs on an
-host computer.
-
-Buildroot will generate the kernel image and a minimal root filesystem.
-
-How to build it
-===============
-
-Configure Buildroot
--------------------
-
-Configuring Buildroot is pretty simple, just execute:
-
-  $ make snps_aarch64_vdk_defconfig
-
-Build the rootfs and kernel
----------------------------
-
-Note: you will need to have access to the network, since Buildroot will
-download the packages' sources.
-
-You may now build your rootfs with:
-
-  $ make
-
-(This may take a while)
-
-Result of the build
--------------------
-
-After building, you should obtain this tree:
-
-    output/images/
-    -- rootfs.ext2
-    -- Image
-
-Installing your rootfs and Image
-================================
-
-Now copy the content of the output/images folder to the VDK' skins
-folder:
-
-   $ cp rootfs.ext2 Image <vdk_installation_path>/skins/Vanilla-Cortex/ARMv8
-
-
-Starting the VDK
-================================
-
-Go the VDK' installation root and execute the 'start' script:
-
-   $ cd <vdk_installation_path>
-   $ ./start.sh
-
-The VP Explorer application will be executed, starting the simulation
-automatically.
-
-For more information about Synopsys' VDK please check:
-http://www.synopsys.com/Prototyping/VirtualPrototyping/Pages/default.aspx
diff --git a/configs/snps_aarch64_vdk_defconfig b/configs/snps_aarch64_vdk_defconfig
deleted file mode 100644
index b55dce1ad6..0000000000
--- a/configs/snps_aarch64_vdk_defconfig
+++ /dev/null
@@ -1,12 +0,0 @@
-BR2_aarch64=y
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_6=y
-BR2_TARGET_GENERIC_HOSTNAME="vdk-buildroot"
-BR2_TARGET_GENERIC_ISSUE="Welcome to SNPS VDK by Buildroot"
-BR2_LINUX_KERNEL=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.6"
-BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
-BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/synopsys/vdk/linux-vdk-aarch64-defconfig"
-BR2_TARGET_ROOTFS_EXT2=y
-BR2_TARGET_ROOTFS_EXT2_4=y
-# BR2_TARGET_ROOTFS_TAR is not set
diff --git a/configs/snps_archs38_vdk_defconfig b/configs/snps_archs38_vdk_defconfig
deleted file mode 100644
index 8d8e9f7559..0000000000
--- a/configs/snps_archs38_vdk_defconfig
+++ /dev/null
@@ -1,20 +0,0 @@
-# Architecture
-BR2_arcle=y
-BR2_archs38=y
-
-# System
-BR2_TARGET_GENERIC_HOSTNAME="archs38_vdk"
-BR2_TARGET_GENERIC_ISSUE="Welcome to the HS38 VDK Software Development Platform"
-BR2_ROOTFS_POST_BUILD_SCRIPT="board/synopsys/axs10x/post-build.sh"
-BR2_TARGET_ROOTFS_EXT2=y
-
-# Linux headers same as kernel, a 5.6 series
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_6=y
-
-# Kernel
-BR2_LINUX_KERNEL=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.6.3"
-BR2_LINUX_KERNEL_DEFCONFIG="vdk_hs38_smp"
-BR2_LINUX_KERNEL_VMLINUX=y
-BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
-- 
2.35.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 15+ messages in thread

* Re: [Buildroot] [PATCH 0/5] synopsys: boards maintenance
  2022-01-31  8:12 [Buildroot] [PATCH 0/5] synopsys: boards maintenance Sergey Matyukevich
                   ` (4 preceding siblings ...)
  2022-01-31  8:12 ` [Buildroot] [PATCH 5/5] board/synopsys: remove outdated vdk boards Sergey Matyukevich
@ 2022-01-31 12:05 ` Giulio Benetti
  2022-01-31 13:09   ` Sergey Matyukevich
  2022-02-12 11:53 ` Arnout Vandecappelle
  6 siblings, 1 reply; 15+ messages in thread
From: Giulio Benetti @ 2022-01-31 12:05 UTC (permalink / raw)
  To: Sergey Matyukevich, buildroot; +Cc: Joao Pinto, ARC Maintainers

Hi Sergey,

On 31/01/22 09:12, Sergey Matyukevich wrote:
> Hi all,
> 
> This is a maintenance patch series for Synopsys boards. Outdated
> and unused VDK configurations are removed. All the other boards
> receive Linux kernel and U-Boot updates.

Have you tested on the real boards or only check if they built successfully?

Best regards
-- 
Giulio Benetti
Benetti Engineering sas

> Regards,
> Sergey
> 
> 
> Sergey Matyukevich (5):
>    configs/snps_arc700_axs101: bump kernel and u-boot versions
>    configs/snps_archs32_axs103: bump kernel and u-boot versions
>    configs/snps_archs38_hsdk: bump kernel and u-boot versions
>    configs/snps_archs38_haps: bump kernel and u-boot versions
>    board/synopsys: remove outdated vdk boards
> 
>   board/synopsys/axs10x/uboot-fragment.config   |   1 +
>   .../synopsys/vdk/linux-vdk-aarch64-defconfig  | 143 ------------------
>   board/synopsys/vdk/readme.txt                 |  65 --------
>   configs/snps_aarch64_vdk_defconfig            |  12 --
>   configs/snps_arc700_axs101_defconfig          |  10 +-
>   configs/snps_archs38_axs103_defconfig         |  10 +-
>   configs/snps_archs38_haps_defconfig           |   6 +-
>   configs/snps_archs38_hsdk_defconfig           |   7 +-
>   configs/snps_archs38_vdk_defconfig            |  20 ---
>   9 files changed, 20 insertions(+), 254 deletions(-)
>   create mode 100644 board/synopsys/axs10x/uboot-fragment.config
>   delete mode 100644 board/synopsys/vdk/linux-vdk-aarch64-defconfig
>   delete mode 100644 board/synopsys/vdk/readme.txt
>   delete mode 100644 configs/snps_aarch64_vdk_defconfig
>   delete mode 100644 configs/snps_archs38_vdk_defconfig
> 

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [Buildroot] [PATCH 0/5] synopsys: boards maintenance
  2022-01-31 12:05 ` [Buildroot] [PATCH 0/5] synopsys: boards maintenance Giulio Benetti
@ 2022-01-31 13:09   ` Sergey Matyukevich
  2022-01-31 13:10     ` Giulio Benetti
  0 siblings, 1 reply; 15+ messages in thread
From: Sergey Matyukevich @ 2022-01-31 13:09 UTC (permalink / raw)
  To: Giulio Benetti; +Cc: Joao Pinto, ARC Maintainers, buildroot

Hi Giulio,

> Hi Sergey,
> 
> On 31/01/22 09:12, Sergey Matyukevich wrote:
> > Hi all,
> > 
> > This is a maintenance patch series for Synopsys boards. Outdated
> > and unused VDK configurations are removed. All the other boards
> > receive Linux kernel and U-Boot updates.
> 
> Have you tested on the real boards or only check if they built successfully?
 
I have tested all the images on hardware.

Regards,
Sergey
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [Buildroot] [PATCH 0/5] synopsys: boards maintenance
  2022-01-31 13:09   ` Sergey Matyukevich
@ 2022-01-31 13:10     ` Giulio Benetti
  0 siblings, 0 replies; 15+ messages in thread
From: Giulio Benetti @ 2022-01-31 13:10 UTC (permalink / raw)
  To: Sergey Matyukevich; +Cc: Joao Pinto, ARC Maintainers, buildroot


> Il giorno 31 gen 2022, alle ore 14:09, Sergey Matyukevich <geomatsi@gmail.com> ha scritto:
> 
> Hi Giulio,
> 
>> Hi Sergey,
>> 
>>> On 31/01/22 09:12, Sergey Matyukevich wrote:
>>> Hi all,
>>> 
>>> This is a maintenance patch series for Synopsys boards. Outdated
>>> and unused VDK configurations are removed. All the other boards
>>> receive Linux kernel and U-Boot updates.
>> 
>> Have you tested on the real boards or only check if they built successfully?
> 
> I have tested all the images on hardware.

Perfect :-)

Best regards
Giulio Benetti

> 
> Regards,
> Sergey

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [Buildroot] [arc-buildroot] [PATCH 1/5] configs/snps_arc700_axs101: bump kernel and u-boot versions
  2022-01-31  8:12 ` [Buildroot] [PATCH 1/5] configs/snps_arc700_axs101: bump kernel and u-boot versions Sergey Matyukevich
@ 2022-02-07 10:07   ` Alexey Brodkin via buildroot
  0 siblings, 0 replies; 15+ messages in thread
From: Alexey Brodkin via buildroot @ 2022-02-07 10:07 UTC (permalink / raw)
  To: buildroot, Sergey Matyukevich; +Cc: ARC Maintainers, Sergey Matyukevich

Hi Sergey, all,

> Bump versions:
> - use U-Boot 2022.01
> - use Linux kernel v5.16
> 
> Add U-Boot configuration fragment increasing early malloc pool size.
> 
> Signed-off-by: Sergey Matyukevich <sergey.matyukevich@synopsys.com>

Acked-by: Alexey Brodkin <abrodkin@synopsys.com>
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [Buildroot] [arc-buildroot] [PATCH 2/5] configs/snps_archs32_axs103: bump kernel and u-boot versions
  2022-01-31  8:12 ` [Buildroot] [PATCH 2/5] configs/snps_archs32_axs103: " Sergey Matyukevich
@ 2022-02-07 10:08   ` Alexey Brodkin via buildroot
  0 siblings, 0 replies; 15+ messages in thread
From: Alexey Brodkin via buildroot @ 2022-02-07 10:08 UTC (permalink / raw)
  To: buildroot; +Cc: ARC Maintainers, Sergey Matyukevich, Sergey Matyukevich

Hi Sergey, all,

> Bump versions:
> - use U-Boot 2022.01
> - use Linux kernel v5.16
>
> Add U-Boot configuration fragment increasing early malloc pool size.
> 
> Signed-off-by: Sergey Matyukevich <sergey.matyukevich@synopsys.com>

Acked-by: Alexey Brodkin <abrodkin@synopsys.com>
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [Buildroot] [arc-buildroot] [PATCH 3/5] configs/snps_archs38_hsdk: bump kernel and u-boot versions
  2022-01-31  8:12 ` [Buildroot] [PATCH 3/5] configs/snps_archs38_hsdk: " Sergey Matyukevich
@ 2022-02-07 10:09   ` Alexey Brodkin via buildroot
  0 siblings, 0 replies; 15+ messages in thread
From: Alexey Brodkin via buildroot @ 2022-02-07 10:09 UTC (permalink / raw)
  To: buildroot, Sergey Matyukevich
  Cc: Joao Pinto, ARC Maintainers, Sergey Matyukevich

Hi Sergey, all,

> Bump versions:
> - use U-Boot 2022.01
> - use Linux kernel v5.16
> 
> Signed-off-by: Sergey Matyukevich <sergey.matyukevich@synopsys.com>

Acked-by: Alexey Brodkin <abrodkin@synopsys.com>
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [Buildroot] [arc-buildroot] [PATCH 4/5] configs/snps_archs38_haps: bump kernel and u-boot versions
  2022-01-31  8:12 ` [Buildroot] [PATCH 4/5] configs/snps_archs38_haps: " Sergey Matyukevich
@ 2022-02-07 10:09   ` Alexey Brodkin via buildroot
  0 siblings, 0 replies; 15+ messages in thread
From: Alexey Brodkin via buildroot @ 2022-02-07 10:09 UTC (permalink / raw)
  To: buildroot, Sergey Matyukevich
  Cc: Joao Pinto, ARC Maintainers, Sergey Matyukevich

Hi Sergey, all,

> Bump versions:
> - use U-Boot 2022.01
> - use Linux kernel v5.16
> 
> Signed-off-by: Sergey Matyukevich <sergey.matyukevich@synopsys.com>

Acked-by: Alexey Brodkin <abrodkin@synopsys.com>
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [Buildroot] [arc-buildroot] [PATCH 5/5] board/synopsys: remove outdated vdk boards
  2022-01-31  8:12 ` [Buildroot] [PATCH 5/5] board/synopsys: remove outdated vdk boards Sergey Matyukevich
@ 2022-02-07 10:11   ` Alexey Brodkin via buildroot
  0 siblings, 0 replies; 15+ messages in thread
From: Alexey Brodkin via buildroot @ 2022-02-07 10:11 UTC (permalink / raw)
  To: buildroot, Sergey Matyukevich
  Cc: Joao Pinto, ARC Maintainers, Sergey Matyukevich

Hi Sergey, all,

> Remove outdated and unused aarch64 and archs38 Synopsys VDK boards.
> 
> Signed-off-by: Sergey Matyukevich <sergey.matyukevich@synopsys.com>

Acked-by: Alexey Brodkin <abrodkin@synopsys.com>
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [Buildroot] [PATCH 0/5] synopsys: boards maintenance
  2022-01-31  8:12 [Buildroot] [PATCH 0/5] synopsys: boards maintenance Sergey Matyukevich
                   ` (5 preceding siblings ...)
  2022-01-31 12:05 ` [Buildroot] [PATCH 0/5] synopsys: boards maintenance Giulio Benetti
@ 2022-02-12 11:53 ` Arnout Vandecappelle
  6 siblings, 0 replies; 15+ messages in thread
From: Arnout Vandecappelle @ 2022-02-12 11:53 UTC (permalink / raw)
  To: Sergey Matyukevich, buildroot; +Cc: Joao Pinto, ARC Maintainers



On 31/01/2022 09:12, Sergey Matyukevich wrote:
> Hi all,
> 
> This is a maintenance patch series for Synopsys boards. Outdated
> and unused VDK configurations are removed. All the other boards
> receive Linux kernel and U-Boot updates.
> 
> Regards,
> Sergey
> 
> 
> Sergey Matyukevich (5):
>    configs/snps_arc700_axs101: bump kernel and u-boot versions
>    configs/snps_archs32_axs103: bump kernel and u-boot versions
>    configs/snps_archs38_hsdk: bump kernel and u-boot versions
>    configs/snps_archs38_haps: bump kernel and u-boot versions
>    board/synopsys: remove outdated vdk boards

  Series applied to master, thanks!

  Regards,
  Arnout

> 
>   board/synopsys/axs10x/uboot-fragment.config   |   1 +
>   .../synopsys/vdk/linux-vdk-aarch64-defconfig  | 143 ------------------
>   board/synopsys/vdk/readme.txt                 |  65 --------
>   configs/snps_aarch64_vdk_defconfig            |  12 --
>   configs/snps_arc700_axs101_defconfig          |  10 +-
>   configs/snps_archs38_axs103_defconfig         |  10 +-
>   configs/snps_archs38_haps_defconfig           |   6 +-
>   configs/snps_archs38_hsdk_defconfig           |   7 +-
>   configs/snps_archs38_vdk_defconfig            |  20 ---
>   9 files changed, 20 insertions(+), 254 deletions(-)
>   create mode 100644 board/synopsys/axs10x/uboot-fragment.config
>   delete mode 100644 board/synopsys/vdk/linux-vdk-aarch64-defconfig
>   delete mode 100644 board/synopsys/vdk/readme.txt
>   delete mode 100644 configs/snps_aarch64_vdk_defconfig
>   delete mode 100644 configs/snps_archs38_vdk_defconfig
> 
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2022-02-12 11:53 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-31  8:12 [Buildroot] [PATCH 0/5] synopsys: boards maintenance Sergey Matyukevich
2022-01-31  8:12 ` [Buildroot] [PATCH 1/5] configs/snps_arc700_axs101: bump kernel and u-boot versions Sergey Matyukevich
2022-02-07 10:07   ` [Buildroot] [arc-buildroot] " Alexey Brodkin via buildroot
2022-01-31  8:12 ` [Buildroot] [PATCH 2/5] configs/snps_archs32_axs103: " Sergey Matyukevich
2022-02-07 10:08   ` [Buildroot] [arc-buildroot] " Alexey Brodkin via buildroot
2022-01-31  8:12 ` [Buildroot] [PATCH 3/5] configs/snps_archs38_hsdk: " Sergey Matyukevich
2022-02-07 10:09   ` [Buildroot] [arc-buildroot] " Alexey Brodkin via buildroot
2022-01-31  8:12 ` [Buildroot] [PATCH 4/5] configs/snps_archs38_haps: " Sergey Matyukevich
2022-02-07 10:09   ` [Buildroot] [arc-buildroot] " Alexey Brodkin via buildroot
2022-01-31  8:12 ` [Buildroot] [PATCH 5/5] board/synopsys: remove outdated vdk boards Sergey Matyukevich
2022-02-07 10:11   ` [Buildroot] [arc-buildroot] " Alexey Brodkin via buildroot
2022-01-31 12:05 ` [Buildroot] [PATCH 0/5] synopsys: boards maintenance Giulio Benetti
2022-01-31 13:09   ` Sergey Matyukevich
2022-01-31 13:10     ` Giulio Benetti
2022-02-12 11:53 ` Arnout Vandecappelle

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.