blob: 9fab53ce63c24901fe2848223180c4a1ac776b83 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "Miscellaneous files for the base system"
2DESCRIPTION = "The base-files package creates the basic system directory structure and provides a small set of key configuration files for the system."
3SECTION = "base"
Andrew Geissler7e0e3c02022-02-25 20:34:39 +00004LICENSE = "GPL-2.0-only"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05005LIC_FILES_CHKSUM = "file://licenses/GPL-2;md5=94d55d512a9ba36caa9b7df079bae19f"
6# Removed all license related tasks in this recipe as license.bbclass
7# now deals with this. In order to get accurate licensing on to the image:
8# Set COPY_LIC_MANIFEST to just copy just the license.manifest to the image
9# For the manifest and the license text for each package:
10# Set COPY_LIC_MANIFEST and COPY_LIC_DIRS
11
12SRC_URI = "file://rotation \
13 file://nsswitch.conf \
14 file://motd \
Brad Bishop19323692019-04-05 15:28:33 -040015 file://hosts \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050016 file://host.conf \
17 file://profile \
18 file://shells \
19 file://fstab \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050020 file://issue.net \
21 file://issue \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050022 file://share/dot.bashrc \
23 file://share/dot.profile \
24 file://licenses/GPL-2 \
25 "
Patrick Williamsac13d5f2023-11-24 18:59:46 -060026SRC_URI:append:libc-glibc = "${@bb.utils.contains('DISTRO_FEATURES', 'systemd systemd-resolved', ' file://0001-add-nss-resolve-to-nsswitch.patch', '', d)}"
27
Patrick Williamsc124f4f2015-09-15 14:41:29 -050028S = "${WORKDIR}"
29
30INHIBIT_DEFAULT_DEPS = "1"
31
Patrick Williams213cb262021-08-07 19:21:33 -050032docdir:append = "/${P}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050033dirs1777 = "/tmp ${localstatedir}/volatile/tmp"
34dirs2775 = ""
Brad Bishop6f8dcde2018-10-16 10:47:12 +080035dirs555 = "/sys /proc"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050036dirs755 = "/boot /dev ${base_bindir} ${base_sbindir} ${base_libdir} \
37 ${sysconfdir} ${sysconfdir}/default \
Brad Bishop6f8dcde2018-10-16 10:47:12 +080038 ${sysconfdir}/skel ${nonarch_base_libdir} /mnt ${ROOT_HOME} /run \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050039 ${prefix} ${bindir} ${docdir} /usr/games ${includedir} \
40 ${libdir} ${sbindir} ${datadir} \
41 ${datadir}/common-licenses ${datadir}/dict ${infodir} \
42 ${mandir} ${datadir}/misc ${localstatedir} \
43 ${localstatedir}/backups ${localstatedir}/lib \
Brad Bishop6f8dcde2018-10-16 10:47:12 +080044 ${localstatedir}/lib/misc ${localstatedir}/spool \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050045 ${localstatedir}/volatile \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050046 ${localstatedir}/${@'volatile/' if oe.types.boolean('${VOLATILE_LOG_DIR}') else ''}log \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050047 /home ${prefix}/src ${localstatedir}/local \
48 /media"
49
50dirs755-lsb = "/srv \
51 ${prefix}/local ${prefix}/local/bin ${prefix}/local/games \
52 ${prefix}/local/include ${prefix}/local/lib ${prefix}/local/sbin \
53 ${prefix}/local/share ${prefix}/local/src \
54 ${prefix}/lib/locale"
55dirs2775-lsb = "/var/mail"
56
Brad Bishopd7bf8c12018-02-25 22:55:05 -050057volatiles = "${@'log' if oe.types.boolean('${VOLATILE_LOG_DIR}') else ''} tmp"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050058conffiles = "${sysconfdir}/debian_version ${sysconfdir}/host.conf \
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050059 ${sysconfdir}/issue /${sysconfdir}/issue.net \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050060 ${sysconfdir}/nsswitch.conf ${sysconfdir}/profile \
61 ${sysconfdir}/default"
62
63# By default the hostname is the machine name. If the hostname is unset then a
64# /etc/hostname file isn't written, suitable for environments with dynamic
65# hostnames.
66#
67# The hostname can be changed outside of this recipe by using
Patrick Williams213cb262021-08-07 19:21:33 -050068# hostname:pn-base-files = "my-host-name".
Patrick Williamsc124f4f2015-09-15 14:41:29 -050069hostname = "${MACHINE}"
70
71BASEFILESISSUEINSTALL ?= "do_install_basefilesissue"
72
73# In previous versions of base-files, /run was a softlink to /var/run and the
74# directory was located in /var/volatlie/run. Also, /var/lock was a softlink
75# to /var/volatile/lock which is where the real directory was located. Now,
76# /run and /run/lock are the real directories. If we are upgrading, we may
77# need to remove the symbolic links first before we create the directories.
78# Otherwise the directory creation will fail and we will have circular symbolic
79# links.
80#
Patrick Williams213cb262021-08-07 19:21:33 -050081pkg_preinst:${PN} () {
Patrick Williamsc124f4f2015-09-15 14:41:29 -050082 #!/bin/sh -e
83 if [ x"$D" = "x" ]; then
84 if [ -h "/var/lock" ]; then
85 # Remove the symbolic link
86 rm -f /var/lock
87 fi
88
89 if [ -h "/run" ]; then
90 # Remove the symbolic link
91 rm -f /run
92 fi
93 fi
94}
95
96do_install () {
Brad Bishop6f8dcde2018-10-16 10:47:12 +080097 for d in ${dirs555}; do
98 install -m 0555 -d ${D}$d
99 done
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500100 for d in ${dirs755}; do
101 install -m 0755 -d ${D}$d
102 done
103 for d in ${dirs1777}; do
104 install -m 1777 -d ${D}$d
105 done
106 for d in ${dirs2775}; do
107 install -m 2775 -d ${D}$d
108 done
109 for d in ${volatiles}; do
110 ln -sf volatile/$d ${D}${localstatedir}/$d
111 done
112
113 ln -snf ../run ${D}${localstatedir}/run
114 ln -snf ../run/lock ${D}${localstatedir}/lock
115
Brad Bishop19323692019-04-05 15:28:33 -0400116 install -m 0644 ${WORKDIR}/hosts ${D}${sysconfdir}/hosts
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500117 ${BASEFILESISSUEINSTALL}
118
119 rotation=`cat ${WORKDIR}/rotation`
120 if [ "$rotation" != "0" ]; then
121 install -m 0644 ${WORKDIR}/rotation ${D}${sysconfdir}/rotation
122 fi
123
124 install -m 0644 ${WORKDIR}/fstab ${D}${sysconfdir}/fstab
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500125 install -m 0644 ${WORKDIR}/profile ${D}${sysconfdir}/profile
126 sed -i 's#ROOTHOME#${ROOT_HOME}#' ${D}${sysconfdir}/profile
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800127 sed -i 's#@BINDIR@#${bindir}#g' ${D}${sysconfdir}/profile
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500128 install -m 0644 ${WORKDIR}/shells ${D}${sysconfdir}/shells
129 install -m 0755 ${WORKDIR}/share/dot.profile ${D}${sysconfdir}/skel/.profile
130 install -m 0755 ${WORKDIR}/share/dot.bashrc ${D}${sysconfdir}/skel/.bashrc
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500131 install -m 0644 ${WORKDIR}/host.conf ${D}${sysconfdir}/host.conf
132 install -m 0644 ${WORKDIR}/motd ${D}${sysconfdir}/motd
133
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500134 ln -sf /proc/mounts ${D}${sysconfdir}/mtab
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500135
Brad Bishopc342db32019-05-15 21:57:59 -0400136 # deal with hostname
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500137 if [ "${hostname}" ]; then
138 echo ${hostname} > ${D}${sysconfdir}/hostname
Brad Bishop19323692019-04-05 15:28:33 -0400139 echo "127.0.1.1 ${hostname}" >> ${D}${sysconfdir}/hosts
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500140 fi
Patrick Williamsac13d5f2023-11-24 18:59:46 -0600141
142 if ${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'false', 'true', d)}; then
143 sed -i '/^::1/s/ localhost//' ${D}${sysconfdir}/hosts
144 fi
Brad Bishopc342db32019-05-15 21:57:59 -0400145}
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500146
Patrick Williams213cb262021-08-07 19:21:33 -0500147do_install:append:libc-glibc () {
Brad Bishop79641f22019-09-10 07:20:22 -0400148 install -m 0644 ${WORKDIR}/nsswitch.conf ${D}${sysconfdir}/nsswitch.conf
149}
150
Brad Bishopc342db32019-05-15 21:57:59 -0400151DISTRO_VERSION[vardepsexclude] += "DATE"
152do_install_basefilesissue () {
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500153 install -m 644 ${WORKDIR}/issue* ${D}${sysconfdir}
154 if [ -n "${DISTRO_NAME}" ]; then
155 printf "${DISTRO_NAME} " >> ${D}${sysconfdir}/issue
156 printf "${DISTRO_NAME} " >> ${D}${sysconfdir}/issue.net
157 if [ -n "${DISTRO_VERSION}" ]; then
Brad Bishop19323692019-04-05 15:28:33 -0400158 distro_version_nodate="${@d.getVar('DISTRO_VERSION').replace('snapshot-${DATE}','snapshot').replace('${DATE}','')}"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500159 printf "%s " $distro_version_nodate >> ${D}${sysconfdir}/issue
160 printf "%s " $distro_version_nodate >> ${D}${sysconfdir}/issue.net
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500161 fi
162 printf "\\\n \\\l\n" >> ${D}${sysconfdir}/issue
163 echo >> ${D}${sysconfdir}/issue
164 echo "%h" >> ${D}${sysconfdir}/issue.net
165 echo >> ${D}${sysconfdir}/issue.net
166 fi
167}
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500168do_install_basefilesissue[vardepsexclude] += "DATE"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500169
Patrick Williams213cb262021-08-07 19:21:33 -0500170do_install:append:linuxstdbase() {
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500171 for d in ${dirs755-lsb}; do
172 install -m 0755 -d ${D}$d
173 done
174
175 for d in ${dirs2775-lsb}; do
176 install -m 2775 -d ${D}$d
177 done
178}
179
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600180SYSROOT_DIRS += "${sysconfdir}/skel"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500181
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500182PACKAGES = "${PN}-doc ${PN} ${PN}-dev ${PN}-dbg"
Patrick Williams213cb262021-08-07 19:21:33 -0500183FILES:${PN} = "/"
184FILES:${PN}-doc = "${docdir} ${datadir}/common-licenses"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500185
186PACKAGE_ARCH = "${MACHINE_ARCH}"
187
Patrick Williams213cb262021-08-07 19:21:33 -0500188CONFFILES:${PN} = "${sysconfdir}/fstab ${@['', '${sysconfdir}/hostname ${sysconfdir}/hosts'][(d.getVar('hostname') != '')]} ${sysconfdir}/shells"
189CONFFILES:${PN} += "${sysconfdir}/motd ${sysconfdir}/nsswitch.conf ${sysconfdir}/profile"
Andrew Geissler595f6302022-01-24 19:11:47 +0000190
191INSANE_SKIP:${PN} += "empty-dirs"