mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@db180c0
This commit is contained in:
6
package/skeleton-custom/Config.in
Normal file
6
package/skeleton-custom/Config.in
Normal file
@@ -0,0 +1,6 @@
|
||||
config BR2_PACKAGE_SKELETON_CUSTOM
|
||||
bool
|
||||
select BR2_PACKAGE_HAS_SKELETON
|
||||
|
||||
config BR2_PACKAGE_PROVIDES_SKELETON
|
||||
default "skeleton-custom" if BR2_PACKAGE_SKELETON_CUSTOM
|
||||
61
package/skeleton-custom/skeleton-custom.mk
Normal file
61
package/skeleton-custom/skeleton-custom.mk
Normal file
@@ -0,0 +1,61 @@
|
||||
################################################################################
|
||||
#
|
||||
# skeleton-custom
|
||||
#
|
||||
################################################################################
|
||||
|
||||
# The skeleton can't depend on the toolchain, since all packages depends on the
|
||||
# skeleton and the toolchain is a target package, as is skeleton.
|
||||
# Hence, skeleton would depends on the toolchain and the toolchain would depend
|
||||
# on skeleton.
|
||||
SKELETON_CUSTOM_ADD_TOOLCHAIN_DEPENDENCY = NO
|
||||
SKELETON_CUSTOM_ADD_SKELETON_DEPENDENCY = NO
|
||||
|
||||
SKELETON_CUSTOM_PROVIDES = skeleton
|
||||
|
||||
SKELETON_CUSTOM_INSTALL_STAGING = YES
|
||||
|
||||
SKELETON_CUSTOM_PATH = $(call qstrip,$(BR2_ROOTFS_SKELETON_CUSTOM_PATH))
|
||||
|
||||
ifeq ($(BR2_PACKAGE_SKELETON_CUSTOM)$(BR_BUILDING),yy)
|
||||
ifeq ($(SKELETON_CUSTOM_PATH),)
|
||||
$(error No path specified for the custom skeleton)
|
||||
endif
|
||||
endif
|
||||
|
||||
# For a merged /usr, ensure that /lib, /bin and /sbin and their /usr
|
||||
# counterparts are appropriately setup as symlinks ones to the others.
|
||||
ifeq ($(BR2_ROOTFS_MERGED_USR),y)
|
||||
SKELETON_CUSTOM_NOT_MERGED_USR_DIRS = \
|
||||
$(shell support/scripts/check-merged-usr.sh $(SKELETON_CUSTOM_PATH))
|
||||
endif # merged /usr
|
||||
|
||||
ifeq ($(BR2_PACKAGE_SKELETON_CUSTOM)$(BR_BUILDING),yy)
|
||||
ifneq ($(SKELETON_CUSTOM_NOT_MERGED_USR_DIRS),)
|
||||
$(error The custom skeleton in $(SKELETON_CUSTOM_PATH) is not \
|
||||
using a merged /usr for the following directories: \
|
||||
$(SKELETON_CUSTOM_NOT_MERGED_USR_DIRS))
|
||||
endif
|
||||
endif
|
||||
|
||||
# The target-dir-warning file and the lib{32,64} symlinks are the only
|
||||
# things we customise in the custom skeleton.
|
||||
define SKELETON_CUSTOM_INSTALL_TARGET_CMDS
|
||||
$(call SYSTEM_RSYNC,$(SKELETON_CUSTOM_PATH),$(TARGET_DIR))
|
||||
$(call SYSTEM_USR_SYMLINKS_OR_DIRS,$(TARGET_DIR))
|
||||
$(call SYSTEM_LIB_SYMLINK,$(TARGET_DIR))
|
||||
$(INSTALL) -m 0644 support/misc/target-dir-warning.txt \
|
||||
$(TARGET_DIR_WARNING_FILE)
|
||||
endef
|
||||
|
||||
# For the staging dir, we don't really care what we install, but we
|
||||
# need the /lib and /usr/lib appropriately setup. Since we ensure,
|
||||
# above, that they are correct in the skeleton, we can simply copy the
|
||||
# skeleton to staging.
|
||||
define SKELETON_CUSTOM_INSTALL_STAGING_CMDS
|
||||
$(call SYSTEM_RSYNC,$(SKELETON_CUSTOM_PATH),$(STAGING_DIR))
|
||||
$(call SYSTEM_USR_SYMLINKS_OR_DIRS,$(STAGING_DIR))
|
||||
$(call SYSTEM_LIB_SYMLINK,$(STAGING_DIR))
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user