Upgrade buildroot to 2023.05 (from 2021.08.2), kernel is upgraded to 6.3 (from 5.13.19).

This commit is contained in:
PartialVolume
2023-07-05 19:35:21 +01:00
parent 654cfca2bf
commit 2ad6760d0f
8544 changed files with 208276 additions and 109881 deletions

View File

@@ -60,6 +60,19 @@ config BR2_TARGET_ROOTFS_EXT2_INODES
int "exact number of inodes (leave at 0 for auto calculation)"
default 0
config BR2_TARGET_ROOTFS_EXT2_INODE_SIZE
int "inode size"
default 256
help
Set the size of inodes, in bytes, as a power of 2 larger or
equal to 128.
Set to 0 to let the filesystem generator decide based on the
file system size. If unsure, keep the default, 256.
Note: 128-byte inodes suffer of the Y2K38 problem, and can't
store timestamps beyond 2038-01-19 03:14:07Z.
config BR2_TARGET_ROOTFS_EXT2_RESBLKS
int "reserved blocks percentage"
default 5
@@ -131,6 +144,11 @@ config BR2_TARGET_ROOTFS_EXT2_XZ
help
Do compress the ext2 filesystem with xz.
config BR2_TARGET_ROOTFS_EXT2_ZSTD
bool "zstd"
help
Do compress the ext2 filesystem with zstd.
endchoice
endif # BR2_TARGET_ROOTFS_EXT2