diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-11-07 13:31:53 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-11-07 13:31:53 +0000 |
| commit | 8c22ff0d8b70d9b12f0487ef696a7e915b9e3173 (patch) | |
| tree | efdc32587159d0050a69009bdf2330a531727d95 /meta-skeleton/recipes-skeleton | |
| parent | d412d2747595c1cc4a5e3ca975e3adc31b2f7891 (diff) | |
| download | poky-8c22ff0d8b70d9b12f0487ef696a7e915b9e3173.tar.gz | |
The poky repository master branch is no longer being updated.
You can either:
a) switch to individual clones of bitbake, openembedded-core, meta-yocto and yocto-docs
b) use the new bitbake-setup
You can find information about either approach in our documentation:
https://docs.yoctoproject.org/
Note that "poky" the distro setting is still available in meta-yocto as
before and we continue to use and maintain that.
Long live Poky!
Some further information on the background of this change can be found
in: https://lists.openembedded.org/g/openembedded-architecture/message/2179
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-skeleton/recipes-skeleton')
13 files changed, 0 insertions, 377 deletions
diff --git a/meta-skeleton/recipes-skeleton/hello-autotools/hello_2.10.bb b/meta-skeleton/recipes-skeleton/hello-autotools/hello_2.10.bb deleted file mode 100644 index a64088fbaa..0000000000 --- a/meta-skeleton/recipes-skeleton/hello-autotools/hello_2.10.bb +++ /dev/null | |||
| @@ -1,9 +0,0 @@ | |||
| 1 | DESCRIPTION = "GNU Helloworld application" | ||
| 2 | SECTION = "examples" | ||
| 3 | LICENSE = "GPL-3.0-only" | ||
| 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | ||
| 5 | |||
| 6 | SRC_URI = "${GNU_MIRROR}/hello/hello-${PV}.tar.gz" | ||
| 7 | SRC_URI[sha256sum] = "31e066137a962676e89f69d1b65382de95a7ef7d914b8cb956f41ea72e0f516b" | ||
| 8 | |||
| 9 | inherit autotools-brokensep gettext | ||
diff --git a/meta-skeleton/recipes-skeleton/hello-single/files/helloworld.c b/meta-skeleton/recipes-skeleton/hello-single/files/helloworld.c deleted file mode 100644 index fc7169b7b8..0000000000 --- a/meta-skeleton/recipes-skeleton/hello-single/files/helloworld.c +++ /dev/null | |||
| @@ -1,8 +0,0 @@ | |||
| 1 | #include <stdio.h> | ||
| 2 | |||
| 3 | int main(void) | ||
| 4 | { | ||
| 5 | printf("Hello world!\n"); | ||
| 6 | |||
| 7 | return 0; | ||
| 8 | } | ||
diff --git a/meta-skeleton/recipes-skeleton/hello-single/hello_1.0.bb b/meta-skeleton/recipes-skeleton/hello-single/hello_1.0.bb deleted file mode 100644 index cb07b13974..0000000000 --- a/meta-skeleton/recipes-skeleton/hello-single/hello_1.0.bb +++ /dev/null | |||
| @@ -1,17 +0,0 @@ | |||
| 1 | DESCRIPTION = "Simple helloworld application" | ||
| 2 | SECTION = "examples" | ||
| 3 | LICENSE = "MIT" | ||
| 4 | LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" | ||
| 5 | |||
| 6 | SRC_URI = "file://helloworld.c" | ||
| 7 | |||
| 8 | S = "${UNPACKDIR}" | ||
| 9 | |||
| 10 | do_compile() { | ||
| 11 | ${CC} ${LDFLAGS} helloworld.c -o helloworld | ||
| 12 | } | ||
| 13 | |||
| 14 | do_install() { | ||
| 15 | install -d ${D}${bindir} | ||
| 16 | install -m 0755 helloworld ${D}${bindir} | ||
| 17 | } | ||
diff --git a/meta-skeleton/recipes-skeleton/libxpm/libxpm_3.5.6.bb b/meta-skeleton/recipes-skeleton/libxpm/libxpm_3.5.6.bb deleted file mode 100644 index 1fcbbdd65e..0000000000 --- a/meta-skeleton/recipes-skeleton/libxpm/libxpm_3.5.6.bb +++ /dev/null | |||
| @@ -1,13 +0,0 @@ | |||
| 1 | require recipes-graphics/xorg-lib/xorg-lib-common.inc | ||
| 2 | |||
| 3 | DESCRIPTION = "X11 Pixmap library" | ||
| 4 | LICENSE = "X-BSD" | ||
| 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=3e07763d16963c3af12db271a31abaa5" | ||
| 6 | DEPENDS += "libxext" | ||
| 7 | PE = "1" | ||
| 8 | |||
| 9 | XORG_PN = "libXpm" | ||
| 10 | |||
| 11 | PACKAGES =+ "sxpm cxpm" | ||
| 12 | FILES:cxpm = "${bindir}/cxpm" | ||
| 13 | FILES:sxpm = "${bindir}/sxpm" | ||
diff --git a/meta-skeleton/recipes-skeleton/service/service/COPYRIGHT b/meta-skeleton/recipes-skeleton/service/service/COPYRIGHT deleted file mode 100644 index ec3e171131..0000000000 --- a/meta-skeleton/recipes-skeleton/service/service/COPYRIGHT +++ /dev/null | |||
| @@ -1,15 +0,0 @@ | |||
| 1 | Sysvinit is Copyright (C) 1991-2004 Miquel van Smoorenburg | ||
| 2 | |||
| 3 | This program is free software; you can redistribute it and/or modify | ||
| 4 | it under the terms of the GNU General Public License as published by | ||
| 5 | the Free Software Foundation; either version 2 of the License, or | ||
| 6 | (at your option) any later version. | ||
| 7 | |||
| 8 | This program is distributed in the hope that it will be useful, | ||
| 9 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | GNU General Public License for more details. | ||
| 12 | |||
| 13 | You should have received a copy of the GNU General Public License | ||
| 14 | along with this program; if not, write to the Free Software | ||
| 15 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
diff --git a/meta-skeleton/recipes-skeleton/service/service/skeleton b/meta-skeleton/recipes-skeleton/service/service/skeleton deleted file mode 100644 index a3edc9d08d..0000000000 --- a/meta-skeleton/recipes-skeleton/service/service/skeleton +++ /dev/null | |||
| @@ -1,193 +0,0 @@ | |||
| 1 | #! /bin/sh | ||
| 2 | ### BEGIN INIT INFO | ||
| 3 | # Provides: skeleton | ||
| 4 | # Required-Start: $local_fs | ||
| 5 | # Should-Start: | ||
| 6 | # Required-Stop: $local_fs | ||
| 7 | # Should-Stop: | ||
| 8 | # Default-Start: 2 3 4 5 | ||
| 9 | # Default-Stop: 0 1 6 | ||
| 10 | # Short-Description: Example initscript | ||
| 11 | # Description: This file should be used to construct scripts to be | ||
| 12 | # placed in /etc/init.d | ||
| 13 | ### END INIT INFO | ||
| 14 | |||
| 15 | # The definition of actions: (From LSB 3.1.0) | ||
| 16 | # start start the service | ||
| 17 | # stop stop the service | ||
| 18 | # restart stop and restart the service if the service is already running, | ||
| 19 | # otherwise start the service | ||
| 20 | # try-restart restart the service if the service is already running | ||
| 21 | # reload cause the configuration of the service to be reloaded without | ||
| 22 | # actually stopping and restarting the service | ||
| 23 | # force-reload cause the configuration to be reloaded if the service supports | ||
| 24 | # this, otherwise restart the service if it is running | ||
| 25 | # status print the current status of the service | ||
| 26 | |||
| 27 | # The start, stop, restart, force-reload, and status actions shall be supported | ||
| 28 | # by all init scripts; the reload and the try-restart actions are optional | ||
| 29 | |||
| 30 | # Common steps to convert this skeleton into a real init script | ||
| 31 | # 1) cp skeleton <the_real_name> | ||
| 32 | # 2) Set DESC and NAME | ||
| 33 | # 3) Check whether the daemon app is /usr/sbin/$NAME, if not, set it. | ||
| 34 | # 4) Set DAEMON_ARGS if there is any | ||
| 35 | # 5) Remove the useless code | ||
| 36 | |||
| 37 | # NOTE: The skeleton doesn't support the daemon which is a script unless the | ||
| 38 | # pidof supports "-x" option, please see more comments for pidofproc () | ||
| 39 | # in /etc/init.d/functions | ||
| 40 | |||
| 41 | # PATH should only include /usr/* if it runs after the mountnfs.sh script | ||
| 42 | PATH=/sbin:/usr/sbin:/bin:/usr/bin | ||
| 43 | |||
| 44 | DESC="skeleton" | ||
| 45 | NAME="skeleton-test" | ||
| 46 | DAEMON=/usr/sbin/$NAME | ||
| 47 | DAEMON_ARGS="" | ||
| 48 | PIDFILE=/var/run/$NAME.pid | ||
| 49 | |||
| 50 | . /etc/init.d/functions || exit 1 | ||
| 51 | |||
| 52 | # Exit if the package is not installed | ||
| 53 | [ -x "$DAEMON" ] || exit 0 | ||
| 54 | |||
| 55 | # Read configuration variable file if it is present | ||
| 56 | [ -r /etc/default/$NAME ] && . /etc/default/$NAME | ||
| 57 | |||
| 58 | # | ||
| 59 | # Function that starts the daemon/service | ||
| 60 | # | ||
| 61 | do_start() { | ||
| 62 | local status pid | ||
| 63 | |||
| 64 | status=0 | ||
| 65 | pid=`pidofproc $NAME` || status=$? | ||
| 66 | case $status in | ||
| 67 | 0) | ||
| 68 | echo "$DESC already running ($pid)." | ||
| 69 | exit 1 | ||
| 70 | ;; | ||
| 71 | *) | ||
| 72 | echo "Starting $DESC ..." | ||
| 73 | exec $DAEMON $DAEMON_ARGS >/dev/null 2>&1 || status=$? | ||
| 74 | echo "ERROR: Failed to start $DESC." | ||
| 75 | exit $status | ||
| 76 | ;; | ||
| 77 | esac | ||
| 78 | |||
| 79 | # Add code here, if necessary, that waits for the process to be ready | ||
| 80 | # to handle requests from services started subsequently which depend | ||
| 81 | # on this one. As a last resort, sleep for some time. | ||
| 82 | } | ||
| 83 | |||
| 84 | # | ||
| 85 | # Function that stops the daemon/service | ||
| 86 | # | ||
| 87 | do_stop() { | ||
| 88 | local pid status | ||
| 89 | |||
| 90 | status=0 | ||
| 91 | pid=`pidofproc $NAME` || status=$? | ||
| 92 | case $status in | ||
| 93 | 0) | ||
| 94 | # Exit when fail to stop, the kill would complain when fail | ||
| 95 | kill -s 15 $pid >/dev/null && rm -f $PIDFILE && \ | ||
| 96 | echo "Stopped $DESC ($pid)." || exit $? | ||
| 97 | ;; | ||
| 98 | *) | ||
| 99 | echo "$DESC is not running; none killed." >&2 | ||
| 100 | ;; | ||
| 101 | esac | ||
| 102 | |||
| 103 | # Wait for children to finish too if this is a daemon that forks | ||
| 104 | # and if the daemon is only ever run from this initscript. | ||
| 105 | # If the above conditions are not satisfied then add some other code | ||
| 106 | # that waits for the process to drop all resources that could be | ||
| 107 | # needed by services started subsequently. A last resort is to | ||
| 108 | # sleep for some time. | ||
| 109 | return $status | ||
| 110 | } | ||
| 111 | |||
| 112 | # | ||
| 113 | # Function that sends a SIGHUP to the daemon/service | ||
| 114 | # | ||
| 115 | do_reload() { | ||
| 116 | local pid status | ||
| 117 | |||
| 118 | status=0 | ||
| 119 | # If the daemon can reload its configuration without | ||
| 120 | # restarting (for example, when it is sent a SIGHUP), | ||
| 121 | # then implement that here. | ||
| 122 | pid=`pidofproc $NAME` || status=$? | ||
| 123 | case $status in | ||
| 124 | 0) | ||
| 125 | echo "Reloading $DESC ..." | ||
| 126 | kill -s 1 $pid || exit $? | ||
| 127 | ;; | ||
| 128 | *) | ||
| 129 | echo "$DESC is not running; none reloaded." >&2 | ||
| 130 | ;; | ||
| 131 | esac | ||
| 132 | exit $status | ||
| 133 | } | ||
| 134 | |||
| 135 | |||
| 136 | # | ||
| 137 | # Function that shows the daemon/service status | ||
| 138 | # | ||
| 139 | status_of_proc () { | ||
| 140 | local pid status | ||
| 141 | |||
| 142 | status=0 | ||
| 143 | # pidof output null when no program is running, so no "2>/dev/null". | ||
| 144 | pid=`pidofproc $NAME` || status=$? | ||
| 145 | case $status in | ||
| 146 | 0) | ||
| 147 | echo "$DESC is running ($pid)." | ||
| 148 | exit 0 | ||
| 149 | ;; | ||
| 150 | *) | ||
| 151 | echo "$DESC is not running." >&2 | ||
| 152 | exit $status | ||
| 153 | ;; | ||
| 154 | esac | ||
| 155 | } | ||
| 156 | |||
| 157 | case "$1" in | ||
| 158 | start) | ||
| 159 | do_start | ||
| 160 | ;; | ||
| 161 | stop) | ||
| 162 | do_stop || exit $? | ||
| 163 | ;; | ||
| 164 | status) | ||
| 165 | status_of_proc | ||
| 166 | ;; | ||
| 167 | restart) | ||
| 168 | # Always start the service regardless the status of do_stop | ||
| 169 | do_stop | ||
| 170 | do_start | ||
| 171 | ;; | ||
| 172 | try-restart|force-reload) | ||
| 173 | # force-reload is the same as reload or try-restart according | ||
| 174 | # to its definition, the reload is not implemented here, so | ||
| 175 | # force-reload is the alias of try-restart here, but it should | ||
| 176 | # be the alias of reload if reload is implemented. | ||
| 177 | # | ||
| 178 | # Only start the service when do_stop succeeds | ||
| 179 | do_stop && do_start | ||
| 180 | ;; | ||
| 181 | #reload) | ||
| 182 | # If the "reload" action is implemented properly, then let the | ||
| 183 | # force-reload be the alias of reload, and remove it from | ||
| 184 | # try-restart|force-reload) | ||
| 185 | # | ||
| 186 | #do_reload | ||
| 187 | #;; | ||
| 188 | *) | ||
| 189 | echo "Usage: $0 {start|stop|status|restart|try-restart|force-reload}" >&2 | ||
| 190 | exit 3 | ||
| 191 | ;; | ||
| 192 | esac | ||
| 193 | |||
diff --git a/meta-skeleton/recipes-skeleton/service/service/skeleton_test.c b/meta-skeleton/recipes-skeleton/service/service/skeleton_test.c deleted file mode 100644 index 96c67ac118..0000000000 --- a/meta-skeleton/recipes-skeleton/service/service/skeleton_test.c +++ /dev/null | |||
| @@ -1,12 +0,0 @@ | |||
| 1 | #include <unistd.h> | ||
| 2 | |||
| 3 | /* This demo does nothing except for testing /etc/init.d/skeleton */ | ||
| 4 | |||
| 5 | int main(int argc, char *argv[]) | ||
| 6 | { | ||
| 7 | daemon(0, 0); | ||
| 8 | while (1) { | ||
| 9 | sleep(1); | ||
| 10 | } | ||
| 11 | return 0; | ||
| 12 | } | ||
diff --git a/meta-skeleton/recipes-skeleton/service/service_0.1.bb b/meta-skeleton/recipes-skeleton/service/service_0.1.bb deleted file mode 100644 index f249579310..0000000000 --- a/meta-skeleton/recipes-skeleton/service/service_0.1.bb +++ /dev/null | |||
| @@ -1,34 +0,0 @@ | |||
| 1 | SUMMARY = "The canonical example of init scripts" | ||
| 2 | SECTION = "base" | ||
| 3 | DESCRIPTION = "This recipe is a canonical example of init scripts" | ||
| 4 | LICENSE = "GPL-2.0-only" | ||
| 5 | LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=349c872e0066155e1818b786938876a4" | ||
| 6 | |||
| 7 | SRC_URI = "file://skeleton \ | ||
| 8 | file://skeleton_test.c \ | ||
| 9 | file://COPYRIGHT \ | ||
| 10 | " | ||
| 11 | |||
| 12 | S = "${UNPACKDIR}" | ||
| 13 | |||
| 14 | do_compile () { | ||
| 15 | ${CC} ${CFLAGS} ${LDFLAGS} ${S}/skeleton_test.c -o ${B}/skeleton-test | ||
| 16 | } | ||
| 17 | |||
| 18 | do_install () { | ||
| 19 | install -d ${D}${sysconfdir}/init.d | ||
| 20 | cat ${S}/skeleton | \ | ||
| 21 | sed -e 's,/etc,${sysconfdir},g' \ | ||
| 22 | -e 's,/usr/sbin,${sbindir},g' \ | ||
| 23 | -e 's,/var,${localstatedir},g' \ | ||
| 24 | -e 's,/usr/bin,${bindir},g' \ | ||
| 25 | -e 's,/usr,${prefix},g' > ${D}${sysconfdir}/init.d/skeleton | ||
| 26 | chmod a+x ${D}${sysconfdir}/init.d/skeleton | ||
| 27 | |||
| 28 | install -d ${D}${sbindir} | ||
| 29 | install -m 0755 ${S}/skeleton-test ${D}${sbindir}/ | ||
| 30 | } | ||
| 31 | |||
| 32 | RDEPENDS:${PN} = "initscripts" | ||
| 33 | |||
| 34 | CONFFILES:${PN} += "${sysconfdir}/init.d/skeleton" | ||
diff --git a/meta-skeleton/recipes-skeleton/useradd/useradd-example.bb b/meta-skeleton/recipes-skeleton/useradd/useradd-example.bb deleted file mode 100644 index 5783d9e245..0000000000 --- a/meta-skeleton/recipes-skeleton/useradd/useradd-example.bb +++ /dev/null | |||
| @@ -1,76 +0,0 @@ | |||
| 1 | SUMMARY = "Example recipe for using inherit useradd" | ||
| 2 | DESCRIPTION = "This recipe serves as an example for using features from useradd.bbclass" | ||
| 3 | SECTION = "examples" | ||
| 4 | LICENSE = "MIT" | ||
| 5 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | ||
| 6 | |||
| 7 | SRC_URI = "file://file1 \ | ||
| 8 | file://file2 \ | ||
| 9 | file://file3 \ | ||
| 10 | file://file4" | ||
| 11 | |||
| 12 | S = "${UNPACKDIR}" | ||
| 13 | |||
| 14 | PACKAGES =+ "${PN}-user3" | ||
| 15 | |||
| 16 | EXCLUDE_FROM_WORLD = "1" | ||
| 17 | |||
| 18 | inherit useradd | ||
| 19 | |||
| 20 | # You must set USERADD_PACKAGES when you inherit useradd. This | ||
| 21 | # lists which output packages will include the user/group | ||
| 22 | # creation code. | ||
| 23 | USERADD_PACKAGES = "${PN} ${PN}-user3" | ||
| 24 | |||
| 25 | # You must also set USERADD_PARAM and/or GROUPADD_PARAM when | ||
| 26 | # you inherit useradd. | ||
| 27 | |||
| 28 | # USERADD_PARAM specifies command line options to pass to the | ||
| 29 | # useradd command. Multiple users can be created by separating | ||
| 30 | # the commands with a semicolon. Here we'll create two users, | ||
| 31 | # user1 and user2: | ||
| 32 | USERADD_PARAM:${PN} = "-u 1200 -d /home/user1 -r -s /bin/bash user1; -u 1201 -d /home/user2 -r -s /bin/bash user2" | ||
| 33 | |||
| 34 | # user3 will be managed in the useradd-example-user3 package: | ||
| 35 | # As an example, we use the -p option to set password ('user3') for user3 | ||
| 36 | USERADD_PARAM:${PN}-user3 = "-u 1202 -d /home/user3 -r -s /bin/bash -p '\$6\$XAWr.8nc\$bUE4pYYaVb8n6BbnBitU0zeJMtfhTpFpiOBLL9zRl4e4YQo88UU4r/1kjRzmTimCy.BvDh4xoFwVqcO.pihLa1' user3" | ||
| 37 | |||
| 38 | # GROUPADD_PARAM works the same way, which you set to the options | ||
| 39 | # you'd normally pass to the groupadd command. This will create | ||
| 40 | # groups group1 and group2: | ||
| 41 | GROUPADD_PARAM:${PN} = "-g 880 group1; -g 890 group2" | ||
| 42 | |||
| 43 | # Likewise, we'll manage group3 in the useradd-example-user3 package: | ||
| 44 | GROUPADD_PARAM:${PN}-user3 = "-g 900 group3" | ||
| 45 | |||
| 46 | do_install () { | ||
| 47 | install -d -m 755 ${D}${datadir}/user1 | ||
| 48 | install -d -m 755 ${D}${datadir}/user2 | ||
| 49 | install -d -m 755 ${D}${datadir}/user3 | ||
| 50 | |||
| 51 | install -p -m 644 file1 ${D}${datadir}/user1/ | ||
| 52 | install -p -m 644 file2 ${D}${datadir}/user1/ | ||
| 53 | |||
| 54 | install -p -m 644 file2 ${D}${datadir}/user2/ | ||
| 55 | install -p -m 644 file3 ${D}${datadir}/user2/ | ||
| 56 | |||
| 57 | install -p -m 644 file3 ${D}${datadir}/user3/ | ||
| 58 | install -p -m 644 file4 ${D}${datadir}/user3/ | ||
| 59 | |||
| 60 | # The new users and groups are created before the do_install | ||
| 61 | # step, so you are now free to make use of them: | ||
| 62 | chown -R user1 ${D}${datadir}/user1 | ||
| 63 | chown -R user2 ${D}${datadir}/user2 | ||
| 64 | chown -R user3 ${D}${datadir}/user3 | ||
| 65 | |||
| 66 | chgrp -R group1 ${D}${datadir}/user1 | ||
| 67 | chgrp -R group2 ${D}${datadir}/user2 | ||
| 68 | chgrp -R group3 ${D}${datadir}/user3 | ||
| 69 | } | ||
| 70 | |||
| 71 | FILES:${PN} = "${datadir}/user1/* ${datadir}/user2/*" | ||
| 72 | FILES:${PN}-user3 = "${datadir}/user3/*" | ||
| 73 | |||
| 74 | # Prevents do_package failures with: | ||
| 75 | # debugsources.list: No such file or directory: | ||
| 76 | INHIBIT_PACKAGE_DEBUG_SPLIT = "1" | ||
diff --git a/meta-skeleton/recipes-skeleton/useradd/useradd-example/file1 b/meta-skeleton/recipes-skeleton/useradd/useradd-example/file1 deleted file mode 100644 index e69de29bb2..0000000000 --- a/meta-skeleton/recipes-skeleton/useradd/useradd-example/file1 +++ /dev/null | |||
diff --git a/meta-skeleton/recipes-skeleton/useradd/useradd-example/file2 b/meta-skeleton/recipes-skeleton/useradd/useradd-example/file2 deleted file mode 100644 index e69de29bb2..0000000000 --- a/meta-skeleton/recipes-skeleton/useradd/useradd-example/file2 +++ /dev/null | |||
diff --git a/meta-skeleton/recipes-skeleton/useradd/useradd-example/file3 b/meta-skeleton/recipes-skeleton/useradd/useradd-example/file3 deleted file mode 100644 index e69de29bb2..0000000000 --- a/meta-skeleton/recipes-skeleton/useradd/useradd-example/file3 +++ /dev/null | |||
diff --git a/meta-skeleton/recipes-skeleton/useradd/useradd-example/file4 b/meta-skeleton/recipes-skeleton/useradd/useradd-example/file4 deleted file mode 100644 index e69de29bb2..0000000000 --- a/meta-skeleton/recipes-skeleton/useradd/useradd-example/file4 +++ /dev/null | |||
