Skip to content
This repository was archived by the owner on Apr 13, 2024. It is now read-only.

Commit 4cdb9d9

Browse files
committed
buildroot: Add MIPS 32-bit little endian config and check in images
Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
1 parent 665f548 commit 4cdb9d9

File tree

4 files changed

+16
-1
lines changed

4 files changed

+16
-1
lines changed

buildroot/mipsel.config

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
BR2_mipsel=y
2+
BR2_OPTIMIZE_3=y
3+
BR2_KERNEL_HEADERS_4_4=y
4+
BR2_BINUTILS_VERSION_2_31_X=y
5+
BR2_GCC_VERSION_8_X=y
6+
BR2_TARGET_GENERIC_ROOT_PASSWD="root"
7+
BR2_TARGET_GENERIC_GETTY_PORT="ttyAMA0"
8+
BR2_ROOTFS_OVERLAY="../overlay-poweroff"
9+
BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
10+
BR2_PACKAGE_BASH=y
11+
BR2_TARGET_ROOTFS_CPIO=y
12+
BR2_TARGET_ROOTFS_EXT2=y
13+
BR2_TARGET_ROOTFS_EXT2_4=y
14+
BR2_TARGET_ROOTFS_EXT2_SIZE="20M"
15+
# BR2_TARGET_ROOTFS_TAR is not set

buildroot/rebuild.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ CONFIGS=()
2525
while (( ${#} )); do
2626
case ${1} in
2727
all) for CONFIG in *.config; do CONFIGS+=( "../${CONFIG}" ); done ;;
28-
arm64|arm|ppc32|ppc64le|x86_64) CONFIGS+=( "../${1}.config" ) ;;
28+
arm64|arm|mipsel|ppc32|ppc64le|x86_64) CONFIGS+=( "../${1}.config" ) ;;
2929
*) echo "Unknown parameter '${1}', exiting!"; exit 1 ;;
3030
esac
3131
shift

images/mipsel/rootfs.cpio

3.63 MB
Binary file not shown.

images/mipsel/rootfs.ext4

20 MB
Binary file not shown.

0 commit comments

Comments
 (0)