source "package/skeleton-custom/Config.in"
source "package/skeleton-init-none/Config.in"
source "package/skeleton-init-systemd/Config.in"
- source "package/skeleton-sysv/Config.in"
+ source "package/skeleton-init-sysv/Config.in"
menu "Audio and video applications"
source "package/alsa-utils/Config.in"
--- /dev/null
+config BR2_PACKAGE_SKELETON_INIT_SYSV
+ bool
+ select BR2_PACKAGE_HAS_SKELETON
+ select BR2_PACKAGE_SKELETON_COMMON
+
+config BR2_PACKAGE_PROVIDES_SKELETON
+ default "skeleton-init-sysv" if BR2_PACKAGE_SKELETON_INIT_SYSV
--- /dev/null
+################################################################################
+#
+# skeleton-init-sysv
+#
+################################################################################
+
+# 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_INIT_SYSV_ADD_TOOLCHAIN_DEPENDENCY = NO
+SKELETON_INIT_SYSV_ADD_SKELETON_DEPENDENCY = NO
+
+SKELETON_INIT_SYSV_DEPENDENCIES = skeleton-common
+
+SKELETON_INIT_SYSV_PROVIDES = skeleton
+
+define SKELETON_INIT_SYSV_INSTALL_TARGET_CMDS
+ $(call SYSTEM_RSYNC,$(SKELETON_INIT_SYSV_PKGDIR)/skeleton,$(TARGET_DIR))
+endef
+
+$(eval $(generic-package))
--- /dev/null
+../tmp/log
\ No newline at end of file
--- /dev/null
+# <file system> <mount pt> <type> <options> <dump> <pass>
+/dev/root / ext2 rw,noauto 0 1
+proc /proc proc defaults 0 0
+devpts /dev/pts devpts defaults,gid=5,mode=620,ptmxmode=0666 0 0
+tmpfs /dev/shm tmpfs mode=0777 0 0
+tmpfs /tmp tmpfs mode=1777 0 0
+tmpfs /run tmpfs mode=0755,nosuid,nodev 0 0
+sysfs /sys sysfs defaults 0 0
--- /dev/null
+../tmp
\ No newline at end of file
--- /dev/null
+../../tmp
\ No newline at end of file
--- /dev/null
+../tmp
\ No newline at end of file
--- /dev/null
+../tmp
\ No newline at end of file
--- /dev/null
+../run
\ No newline at end of file
--- /dev/null
+../tmp
\ No newline at end of file
--- /dev/null
+../tmp
\ No newline at end of file
+++ /dev/null
-config BR2_PACKAGE_SKELETON_SYSV
- bool
- select BR2_PACKAGE_HAS_SKELETON
- select BR2_PACKAGE_SKELETON_COMMON
-
-config BR2_PACKAGE_PROVIDES_SKELETON
- default "skeleton-sysv" if BR2_PACKAGE_SKELETON_SYSV
+++ /dev/null
-################################################################################
-#
-# skeleton-sysv
-#
-################################################################################
-
-# 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_SYSV_ADD_TOOLCHAIN_DEPENDENCY = NO
-SKELETON_SYSV_ADD_SKELETON_DEPENDENCY = NO
-
-SKELETON_SYSV_DEPENDENCIES = skeleton-common
-
-SKELETON_SYSV_PROVIDES = skeleton
-
-define SKELETON_SYSV_INSTALL_TARGET_CMDS
- $(call SYSTEM_RSYNC,$(SKELETON_SYSV_PKGDIR)/skeleton,$(TARGET_DIR))
-endef
-
-$(eval $(generic-package))
+++ /dev/null
-../tmp/log
\ No newline at end of file
+++ /dev/null
-# <file system> <mount pt> <type> <options> <dump> <pass>
-/dev/root / ext2 rw,noauto 0 1
-proc /proc proc defaults 0 0
-devpts /dev/pts devpts defaults,gid=5,mode=620,ptmxmode=0666 0 0
-tmpfs /dev/shm tmpfs mode=0777 0 0
-tmpfs /tmp tmpfs mode=1777 0 0
-tmpfs /run tmpfs mode=0755,nosuid,nodev 0 0
-sysfs /sys sysfs defaults 0 0
+++ /dev/null
-../tmp
\ No newline at end of file
+++ /dev/null
-../../tmp
\ No newline at end of file
+++ /dev/null
-../tmp
\ No newline at end of file
+++ /dev/null
-../tmp
\ No newline at end of file
+++ /dev/null
-../run
\ No newline at end of file
+++ /dev/null
-../tmp
\ No newline at end of file
+++ /dev/null
-../tmp
\ No newline at end of file
config BR2_ROOTFS_SKELETON_DEFAULT
bool "default target skeleton"
- select BR2_PACKAGE_SKELETON_SYSV if BR2_INIT_SYSV
- select BR2_PACKAGE_SKELETON_SYSV if BR2_INIT_BUSYBOX
+ select BR2_PACKAGE_SKELETON_INIT_SYSV if BR2_INIT_SYSV
+ select BR2_PACKAGE_SKELETON_INIT_SYSV if BR2_INIT_BUSYBOX
select BR2_PACKAGE_SKELETON_INIT_SYSTEMD if BR2_INIT_SYSTEMD
select BR2_PACKAGE_SKELETON_INIT_NONE if BR2_INIT_NONE
help