mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 12:49:46 +00:00
base-files: provide a mechanism to skip creation of the hostname file
The existence of a /etc/hostname file causes any hostname provided on the kernel command line or via dhcp to be overwritten by the initscripts 'init.d/hostname.sh'. This change allows you to set a value of "" for 'hostname' which will skip the creation of the /etc/hostname file by the base-files package. (From OE-Core rev: 5fd3503d4a438d126f44fe8118e9ea465e7699c2) Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Jason Wessel <jason.wessel@windriver.com> Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
03109ba97d
commit
9c2bb6822c
@@ -1,7 +1,7 @@
|
|||||||
SUMMARY = "Miscellaneous files for the base system."
|
SUMMARY = "Miscellaneous files for the base system."
|
||||||
DESCRIPTION = "The base-files package creates the basic system directory structure and provides a small set of key configuration files for the system."
|
DESCRIPTION = "The base-files package creates the basic system directory structure and provides a small set of key configuration files for the system."
|
||||||
SECTION = "base"
|
SECTION = "base"
|
||||||
PR = "r71"
|
PR = "r72"
|
||||||
LICENSE = "GPLv2"
|
LICENSE = "GPLv2"
|
||||||
LIC_FILES_CHKSUM = "file://licenses/GPL-2;md5=94d55d512a9ba36caa9b7df079bae19f"
|
LIC_FILES_CHKSUM = "file://licenses/GPL-2;md5=94d55d512a9ba36caa9b7df079bae19f"
|
||||||
# Removed all license related tasks in this recipe as license.bbclass
|
# Removed all license related tasks in this recipe as license.bbclass
|
||||||
@@ -107,10 +107,12 @@ do_install () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
do_install_basefilesissue () {
|
do_install_basefilesissue () {
|
||||||
if [ -n "${MACHINE}" -a "${hostname}" = "openembedded" ]; then
|
if [ "${hostname}" != "" ]; then
|
||||||
echo ${MACHINE} > ${D}${sysconfdir}/hostname
|
if [ -n "${MACHINE}" -a "${hostname}" = "openembedded" ]; then
|
||||||
else
|
echo ${MACHINE} > ${D}${sysconfdir}/hostname
|
||||||
echo ${hostname} > ${D}${sysconfdir}/hostname
|
else
|
||||||
|
echo ${hostname} > ${D}${sysconfdir}/hostname
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
install -m 644 ${WORKDIR}/issue* ${D}${sysconfdir}
|
install -m 644 ${WORKDIR}/issue* ${D}${sysconfdir}
|
||||||
@@ -144,5 +146,5 @@ FILES_${PN}-doc = "${docdir} ${datadir}/common-licenses"
|
|||||||
|
|
||||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||||
|
|
||||||
CONFFILES_${PN} = "${sysconfdir}/fstab ${sysconfdir}/hostname"
|
CONFFILES_${PN} = "${sysconfdir}/fstab ${@['', '${sysconfdir}/hostname'][(d.getVar('hostname', True) != '')]}"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user