diff options
author | Alejandro Hernandez Samaniego <alhe@linux.microsoft.com> | 2022-01-22 15:33:17 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-02-01 07:32:08 +0000 |
commit | 74a8a74a553a33dc5f41939f8070d75e6d57d3da (patch) | |
tree | 6d3a1851b7819a9d8180b8fcaea81cc20ea9c018 | |
parent | d77178e8df213160d0fe58c5942507f01e7af2bd (diff) | |
download | poky-74a8a74a553a33dc5f41939f8070d75e6d57d3da.tar.gz |
busybox: Add shell arithmetic to work with poky-tiny
Fix error when trying to boot core-image-tiny-initramfs:
/init: line 144: syntax error: support for $((arith)) is disabled
Kernel panic - not syncing: Attempted to kill init!
[YOCTO #14702]
(From meta-yocto rev: 50ac1fcadb07fdbeb4169cdd7a0c4a805a0f8588)
Signed-off-by: Alejandro Enedino Hernandez Samaniego <alhe@linux.microsoft.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta-poky/recipes-core/busybox/busybox/poky-tiny/defconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-poky/recipes-core/busybox/busybox/poky-tiny/defconfig b/meta-poky/recipes-core/busybox/busybox/poky-tiny/defconfig index b0fb88a0c1..6e9faa4119 100644 --- a/meta-poky/recipes-core/busybox/busybox/poky-tiny/defconfig +++ b/meta-poky/recipes-core/busybox/busybox/poky-tiny/defconfig | |||
@@ -1160,7 +1160,7 @@ CONFIG_CTTYHACK=y | |||
1160 | # | 1160 | # |
1161 | # Options common to all shells | 1161 | # Options common to all shells |
1162 | # | 1162 | # |
1163 | # CONFIG_FEATURE_SH_MATH is not set | 1163 | CONFIG_FEATURE_SH_MATH=y |
1164 | # CONFIG_FEATURE_SH_MATH_64 is not set | 1164 | # CONFIG_FEATURE_SH_MATH_64 is not set |
1165 | # CONFIG_FEATURE_SH_MATH_BASE is not set | 1165 | # CONFIG_FEATURE_SH_MATH_BASE is not set |
1166 | CONFIG_FEATURE_SH_EXTRA_QUIET=y | 1166 | CONFIG_FEATURE_SH_EXTRA_QUIET=y |