mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-28 05:36:32 +00:00
- make sure to download fakeroot if needed
This commit is contained in:
parent
8019956f60
commit
73be7f9ef4
2
Makefile
2
Makefile
@ -119,7 +119,7 @@ $(TARGET_DIR):
|
|||||||
-find $(TARGET_DIR) -type d -name CVS | xargs rm -rf
|
-find $(TARGET_DIR) -type d -name CVS | xargs rm -rf
|
||||||
-find $(TARGET_DIR) -type d -name .svn | xargs rm -rf
|
-find $(TARGET_DIR) -type d -name .svn | xargs rm -rf
|
||||||
|
|
||||||
source: $(TARGETS_SOURCE)
|
source: $(TARGETS_SOURCE) $(HOST_SOURCE)
|
||||||
|
|
||||||
#############################################################
|
#############################################################
|
||||||
#
|
#
|
||||||
|
@ -5,3 +5,8 @@ config BR2_PACKAGE_FAKEROOT
|
|||||||
Run commands in an environment faking root privileges.
|
Run commands in an environment faking root privileges.
|
||||||
|
|
||||||
http://joostje.op.het.net/fakeroot/
|
http://joostje.op.het.net/fakeroot/
|
||||||
|
|
||||||
|
# dummy for fakeroot-source
|
||||||
|
config BR2_HOST_FAKEROUTE
|
||||||
|
bool
|
||||||
|
default n
|
||||||
|
@ -122,3 +122,7 @@ fakeroot-dirclean:
|
|||||||
ifeq ($(strip $(BR2_PACKAGE_FAKEROOT)),y)
|
ifeq ($(strip $(BR2_PACKAGE_FAKEROOT)),y)
|
||||||
TARGETS+=fakeroot
|
TARGETS+=fakeroot
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(strip $(BR2_HOST_FAKEROUTE)),y)
|
||||||
|
HOST_SOURCE+=fakeroot-source
|
||||||
|
endif
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
config BR2_TARGET_ROOTFS_CPIO
|
config BR2_TARGET_ROOTFS_CPIO
|
||||||
bool "cpio the root filesystem"
|
bool "cpio the root filesystem"
|
||||||
default n
|
default n
|
||||||
help
|
select BR2_HOST_FAKEROUTE
|
||||||
Build a cpio archive of the root filesystem
|
help
|
||||||
|
Build a cpio archive of the root filesystem
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
config BR2_TARGET_ROOTFS_CRAMFS
|
config BR2_TARGET_ROOTFS_CRAMFS
|
||||||
bool "cramfs root filesystem"
|
bool "cramfs root filesystem"
|
||||||
default n
|
default n
|
||||||
|
select BR2_HOST_FAKEROUTE
|
||||||
help
|
help
|
||||||
Build a cramfs root filesystem
|
Build a cramfs root filesystem
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
config BR2_TARGET_ROOTFS_EXT2
|
config BR2_TARGET_ROOTFS_EXT2
|
||||||
bool "ext2 root filesystem"
|
bool "ext2 root filesystem"
|
||||||
default y
|
default y
|
||||||
|
select BR2_HOST_FAKEROUTE
|
||||||
help
|
help
|
||||||
Build an ext2 root filesystem
|
Build an ext2 root filesystem
|
||||||
|
|
||||||
|
@ -4,6 +4,7 @@ config BR2_TARGET_ROOTFS_ISO9660
|
|||||||
depends on BR2_i386
|
depends on BR2_i386
|
||||||
select BR2_TARGET_ROOTFS_EXT2
|
select BR2_TARGET_ROOTFS_EXT2
|
||||||
select BR2_TARGET_GRUB
|
select BR2_TARGET_GRUB
|
||||||
|
select BR2_HOST_FAKEROUTE
|
||||||
help
|
help
|
||||||
Build a bootable iso9660 image
|
Build a bootable iso9660 image
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
config BR2_TARGET_ROOTFS_JFFS2
|
config BR2_TARGET_ROOTFS_JFFS2
|
||||||
bool "jffs2 root filesystem"
|
bool "jffs2 root filesystem"
|
||||||
default n
|
default n
|
||||||
|
select BR2_HOST_FAKEROUTE
|
||||||
select BR2_PACKAGE_MTD
|
select BR2_PACKAGE_MTD
|
||||||
help
|
help
|
||||||
Build a jffs2 root filesystem
|
Build a jffs2 root filesystem
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
config BR2_TARGET_ROOTFS_SQUASHFS
|
config BR2_TARGET_ROOTFS_SQUASHFS
|
||||||
bool "squashfs root filesystem"
|
bool "squashfs root filesystem"
|
||||||
default n
|
default n
|
||||||
|
select BR2_HOST_FAKEROUTE
|
||||||
help
|
help
|
||||||
Build a squashfs root filesystem
|
Build a squashfs root filesystem
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
config BR2_TARGET_ROOTFS_TAR
|
config BR2_TARGET_ROOTFS_TAR
|
||||||
bool "tar the root filesystem"
|
bool "tar the root filesystem"
|
||||||
default n
|
default n
|
||||||
|
select BR2_HOST_FAKEROUTE
|
||||||
help
|
help
|
||||||
Build a tar archive of the root filesystem
|
Build a tar archive of the root filesystem
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user