Skip to content

Commit

Permalink
Added buildroot options for BASH to be built and be default shell. Ne… (
Browse files Browse the repository at this point in the history
#171)

* Added buildroot options for BASH to be built and be default shell. Needed for test framework to run.
  • Loading branch information
dkohlbre committed Apr 22, 2020
1 parent 1883a98 commit 4f2ee71
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions conf/qemu_riscv32_virt_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ BR2_TOOLCHAIN_EXTERNAL_CUSTOM_GLIBC=y
BR2_TOOLCHAIN_EXTERNAL_INET_RPC=y
BR2_TOOLCHAIN_EXTERNAL_CXX=y

# Shell
BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
BR2_PACKAGE_BASH=y
BR2_SYSTEM_BIN_SH_BASH=y

# System
BR2_SYSTEM_DHCP="eth0"
# BR2_TARGET_GENERIC_GETTY=y
Expand Down
5 changes: 5 additions & 0 deletions conf/qemu_riscv64_virt_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ BR2_TOOLCHAIN_EXTERNAL_CUSTOM_GLIBC=y
BR2_TOOLCHAIN_EXTERNAL_INET_RPC=y
BR2_TOOLCHAIN_EXTERNAL_CXX=y

# Shell
BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
BR2_PACKAGE_BASH=y
BR2_SYSTEM_BIN_SH_BASH=y

# System
BR2_SYSTEM_DHCP="eth0"
#BR2_TARGET_GENERIC_GETTY=y
Expand Down

1 comment on commit 4f2ee71

@jctullos
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for adding this! I was just doing this today with buildroot with the test package.

Please sign in to comment.