diff options
author | Andrii Pientsov <andrii.pientsov@globallogic.com> | 2020-05-21 22:22:15 +0300 |
---|---|---|
committer | Andrii Pientsov <andrii.pientsov@globallogic.com> | 2020-05-21 22:22:15 +0300 |
commit | 4547de32517aac4a6cc63b5ae65664017cd88a76 (patch) | |
tree | 2d3b0024daf20485876c47180ac4b35cd89e46db /recipes-core/initrdscripts/readonly-rootfs-overlay-init-script.inc | |
parent | ca5c55acb366ff5f80af00737a8110673ccf252b (diff) | |
download | meta-mlinux-atmel-4547de32517aac4a6cc63b5ae65664017cd88a76.tar.gz meta-mlinux-atmel-4547de32517aac4a6cc63b5ae65664017cd88a76.tar.bz2 meta-mlinux-atmel-4547de32517aac4a6cc63b5ae65664017cd88a76.zip |
Remove duplicates
Diffstat (limited to 'recipes-core/initrdscripts/readonly-rootfs-overlay-init-script.inc')
-rw-r--r-- | recipes-core/initrdscripts/readonly-rootfs-overlay-init-script.inc | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/recipes-core/initrdscripts/readonly-rootfs-overlay-init-script.inc b/recipes-core/initrdscripts/readonly-rootfs-overlay-init-script.inc deleted file mode 100644 index d1b8104..0000000 --- a/recipes-core/initrdscripts/readonly-rootfs-overlay-init-script.inc +++ /dev/null @@ -1,36 +0,0 @@ -SUMMARY = "Read only rootfs with overlay init script" -LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" -DEPENDS = "virtual/kernel" - -# This was derived from https://github.com/cmhe/meta-readonly-rootfs-overlay - -# script uses bash, findfs, busybox is problematic, so use real fsck, -# and add ext4 utilities in case some one needs to try to recover the -# user_data file system -RDEPENDS_${PN} = " \ - bash \ - util-linux-findfs \ - util-linux-fsck \ - e2fsprogs \ - e2fsprogs-mke2fs \ - e2fsprogs-badblocks \ - e2fsprogs-e2fsck \ - e2fsprogs-tune2fs \ - e2fsprogs-resize2fs \ - " - -SRC_URI = "file://init-readonly-rootfs-overlay-boot.sh" - -S = "${WORKDIR}" - -do_install() { - install -m 0755 ${WORKDIR}/init-readonly-rootfs-overlay-boot.sh ${D}/init - install -d "${D}/run/media/rfs/ro" - install -d "${D}/run/media/rfs/rw" -} - -FILES_${PN} += " /init /run" - -# Due to kernel dependency -PACKAGE_ARCH = "${MACHINE_ARCH}" |