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

Commit

Permalink
Merge pull request #221 from tpimh/initramfs
Browse files Browse the repository at this point in the history
Drop ext4 images and use initramfs for all targets
  • Loading branch information
nickdesaulniers authored Dec 16, 2019
2 parents 45427a0 + d38be29 commit 52ca57f
Show file tree
Hide file tree
Showing 16 changed files with 11 additions and 35 deletions.
3 changes: 0 additions & 3 deletions buildroot/arm.config
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,4 @@ BR2_ROOTFS_OVERLAY="../overlay-reboot"
BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
BR2_PACKAGE_BASH=y
BR2_TARGET_ROOTFS_CPIO=y
BR2_TARGET_ROOTFS_EXT2=y
BR2_TARGET_ROOTFS_EXT2_4=y
BR2_TARGET_ROOTFS_EXT2_SIZE="20M"
# BR2_TARGET_ROOTFS_TAR is not set
3 changes: 0 additions & 3 deletions buildroot/arm64.config
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,4 @@ BR2_ROOTFS_OVERLAY="../overlay-poweroff"
BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
BR2_PACKAGE_BASH=y
BR2_TARGET_ROOTFS_CPIO=y
BR2_TARGET_ROOTFS_EXT2=y
BR2_TARGET_ROOTFS_EXT2_4=y
BR2_TARGET_ROOTFS_EXT2_SIZE="20M"
# BR2_TARGET_ROOTFS_TAR is not set
3 changes: 0 additions & 3 deletions buildroot/mipsel.config
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,4 @@ BR2_ROOTFS_OVERLAY="../overlay-poweroff"
BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
BR2_PACKAGE_BASH=y
BR2_TARGET_ROOTFS_CPIO=y
BR2_TARGET_ROOTFS_EXT2=y
BR2_TARGET_ROOTFS_EXT2_4=y
BR2_TARGET_ROOTFS_EXT2_SIZE="20M"
# BR2_TARGET_ROOTFS_TAR is not set
3 changes: 0 additions & 3 deletions buildroot/ppc32.config
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,4 @@ BR2_TARGET_GENERIC_GETTY_PORT="ttyS0"
BR2_ROOTFS_OVERLAY="../overlay-reboot"
BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
BR2_TARGET_ROOTFS_CPIO=y
BR2_TARGET_ROOTFS_EXT2=y
BR2_TARGET_ROOTFS_EXT2_4=y
BR2_TARGET_ROOTFS_EXT2_SIZE="20M"
# BR2_TARGET_ROOTFS_TAR is not set
3 changes: 0 additions & 3 deletions buildroot/ppc64.config
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,4 @@ BR2_TARGET_GENERIC_GETTY_PORT="hvc0"
BR2_ROOTFS_OVERLAY="../overlay-poweroff"
BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
BR2_TARGET_ROOTFS_CPIO=y
BR2_TARGET_ROOTFS_EXT2=y
BR2_TARGET_ROOTFS_EXT2_4=y
BR2_TARGET_ROOTFS_EXT2_SIZE="20M"
# BR2_TARGET_ROOTFS_TAR is not set
3 changes: 0 additions & 3 deletions buildroot/ppc64le.config
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,4 @@ BR2_TARGET_GENERIC_GETTY_PORT="hvc0"
BR2_ROOTFS_OVERLAY="../overlay-poweroff"
BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
BR2_TARGET_ROOTFS_CPIO=y
BR2_TARGET_ROOTFS_EXT2=y
BR2_TARGET_ROOTFS_EXT2_4=y
BR2_TARGET_ROOTFS_EXT2_SIZE="20M"
# BR2_TARGET_ROOTFS_TAR is not set
2 changes: 1 addition & 1 deletion buildroot/rebuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ for CONFIG in "${CONFIGS[@]}"; do

# Copy new images
# Make sure images exist before moving them
IMAGES=( "output/images/rootfs.cpio" "output/images/rootfs.ext4" )
IMAGES=( "output/images/rootfs.cpio" )
for IMAGE in "${IMAGES[@]}"; do
if [[ ! -f ${IMAGE} ]]; then
echo "${IMAGE} could not be found! Did the build error?"
Expand Down
3 changes: 0 additions & 3 deletions buildroot/x86_64.config
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,4 @@ BR2_ROOTFS_OVERLAY="../overlay-poweroff"
BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
BR2_PACKAGE_BASH=y
BR2_TARGET_ROOTFS_CPIO=y
BR2_TARGET_ROOTFS_EXT2=y
BR2_TARGET_ROOTFS_EXT2_4=y
BR2_TARGET_ROOTFS_EXT2_SIZE="20M"
# BR2_TARGET_ROOTFS_TAR is not set
Loading

0 comments on commit 52ca57f

Please sign in to comment.