mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-05 05:04:44 +02:00
recipes: Update WORKDIR references to UNPACKDIR
Since we want to be able to stop unpacking to WORKDIR, correct the WORKDIR references in recipe do_compile/do_install tasks to use UNPACKDIR in the appropraite places instead. (From OE-Core rev: d73595df69667fe9d12ecd407b77a0b8dae2109c) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
3288587aeb
commit
0ea63b6a43
|
@ -11,7 +11,7 @@ SECURITY_CFLAGS = ""
|
|||
SECURITY_LDFLAGS = ""
|
||||
|
||||
do_compile() {
|
||||
${FC} ${LDFLAGS} ${WORKDIR}/hello.f95 -o ${B}/fortran-hello
|
||||
${FC} ${LDFLAGS} ${UNPACKDIR}/hello.f95 -o ${B}/fortran-hello
|
||||
}
|
||||
|
||||
do_install() {
|
||||
|
|
|
@ -17,20 +17,20 @@ SRC_URI = "file://installscript.sh \
|
|||
EXCLUDE_FROM_WORLD = "1"
|
||||
|
||||
install_extrafunc() {
|
||||
install -m 0644 ${WORKDIR}/selftest-replaceme-inst-func ${D}${datadir}/selftest-replaceme-inst-func
|
||||
install -m 0644 ${UNPACKDIR}/selftest-replaceme-inst-func ${D}${datadir}/selftest-replaceme-inst-func
|
||||
}
|
||||
|
||||
do_install() {
|
||||
install -d ${D}${datadir}/
|
||||
install -m 0644 ${WORKDIR}/selftest-replaceme-orig ${D}${datadir}/selftest-replaceme-orig
|
||||
install -m 0644 ${WORKDIR}/selftest-replaceme-todir ${D}${datadir}
|
||||
install -m 0644 ${WORKDIR}/file1 ${D}${datadir}/selftest-replaceme-renamed
|
||||
install -m 0644 ${WORKDIR}/subdir/fileinsubdir ${D}${datadir}/selftest-replaceme-subdir
|
||||
cp ${WORKDIR}/selftest-replaceme-inst-glob* ${D}${datadir}/selftest-replaceme-inst-globfile
|
||||
cp ${WORKDIR}/selftest-replaceme-inst-todir-glob* ${D}${datadir}
|
||||
install -m 0644 ${UNPACKDIR}/selftest-replaceme-orig ${D}${datadir}/selftest-replaceme-orig
|
||||
install -m 0644 ${UNPACKDIR}/selftest-replaceme-todir ${D}${datadir}
|
||||
install -m 0644 ${UNPACKDIR}/file1 ${D}${datadir}/selftest-replaceme-renamed
|
||||
install -m 0644 ${UNPACKDIR}/subdir/fileinsubdir ${D}${datadir}/selftest-replaceme-subdir
|
||||
cp ${UNPACKDIR}/selftest-replaceme-inst-glob* ${D}${datadir}/selftest-replaceme-inst-globfile
|
||||
cp ${UNPACKDIR}/selftest-replaceme-inst-todir-glob* ${D}${datadir}
|
||||
install -d ${D}${sysconfdir}
|
||||
install -m 0644 ${S}/file2 ${D}${sysconfdir}/selftest-replaceme-patched
|
||||
sh ${WORKDIR}/installscript.sh ${D}${datadir}
|
||||
sh ${UNPACKDIR}/installscript.sh ${D}${datadir}
|
||||
install_extrafunc
|
||||
}
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ EXCLUDE_FROM_WORLD = "1"
|
|||
do_install() {
|
||||
install -d ${D}${bindir}
|
||||
# was not able to make ownership preservation check
|
||||
install -m 0400 ${WORKDIR}/test.awk ${D}${bindir}/test
|
||||
install -m 0400 ${UNPACKDIR}/test.awk ${D}${bindir}/test
|
||||
|
||||
perm_old="$(stat --format='%a' ${D}${bindir}/test)"
|
||||
sed -i -e 's|@AWK_BIN@|${bindir}/awk|g' ${D}${bindir}/test
|
||||
|
|
|
@ -27,13 +27,13 @@ SYSTEMD_SERVICE:${PN} = "acpid.service"
|
|||
|
||||
do_install:append () {
|
||||
install -d ${D}${sysconfdir}/init.d
|
||||
sed -e 's,/usr/sbin,${sbindir},g' ${WORKDIR}/init > ${D}${sysconfdir}/init.d/acpid
|
||||
sed -e 's,/usr/sbin,${sbindir},g' ${UNPACKDIR}/init > ${D}${sysconfdir}/init.d/acpid
|
||||
chmod 755 ${D}${sysconfdir}/init.d/acpid
|
||||
|
||||
install -d ${D}${sysconfdir}/acpi
|
||||
install -d ${D}${sysconfdir}/acpi/events
|
||||
|
||||
install -d ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${WORKDIR}/acpid.service ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${UNPACKDIR}/acpid.service ${D}${systemd_system_unitdir}
|
||||
sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_system_unitdir}/acpid.service
|
||||
}
|
||||
|
|
|
@ -157,9 +157,9 @@ do_install () {
|
|||
fi
|
||||
fi
|
||||
|
||||
if [ -e ${WORKDIR}/fw_env.config ] ; then
|
||||
if [ -e ${UNPACKDIR}/fw_env.config ] ; then
|
||||
install -d ${D}${sysconfdir}
|
||||
install -m 644 ${WORKDIR}/fw_env.config ${D}${sysconfdir}/fw_env.config
|
||||
install -m 644 ${UNPACKDIR}/fw_env.config ${D}${sysconfdir}/fw_env.config
|
||||
fi
|
||||
|
||||
if [ -n "${SPL_BINARY}" ]
|
||||
|
|
|
@ -184,8 +184,8 @@ SYSTEMD_SERVICE:${PN}-dnsconfd = "avahi-dnsconfd.service"
|
|||
|
||||
do_install:append() {
|
||||
install -d ${D}${sysconfdir}/udhcpc.d
|
||||
install ${WORKDIR}/00avahi-autoipd ${D}${sysconfdir}/udhcpc.d
|
||||
install ${WORKDIR}/99avahi-autoipd ${D}${sysconfdir}/udhcpc.d
|
||||
install ${UNPACKDIR}/00avahi-autoipd ${D}${sysconfdir}/udhcpc.d
|
||||
install ${UNPACKDIR}/99avahi-autoipd ${D}${sysconfdir}/udhcpc.d
|
||||
}
|
||||
|
||||
# At the time the postinst runs, dbus might not be setup so only restart if running
|
||||
|
|
|
@ -68,15 +68,15 @@ do_install:append() {
|
|||
|
||||
# Install systemd related files
|
||||
install -d ${D}${sbindir}
|
||||
install -m 755 ${WORKDIR}/generate-rndc-key.sh ${D}${sbindir}
|
||||
install -m 755 ${UNPACKDIR}/generate-rndc-key.sh ${D}${sbindir}
|
||||
install -d ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${WORKDIR}/named.service ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${UNPACKDIR}/named.service ${D}${systemd_system_unitdir}
|
||||
sed -i -e 's,@BASE_BINDIR@,${base_bindir},g' \
|
||||
-e 's,@SBINDIR@,${sbindir},g' \
|
||||
${D}${systemd_system_unitdir}/named.service
|
||||
|
||||
install -d ${D}${sysconfdir}/default
|
||||
install -m 0644 ${WORKDIR}/bind9 ${D}${sysconfdir}/default
|
||||
install -m 0644 ${UNPACKDIR}/bind9 ${D}${sysconfdir}/default
|
||||
|
||||
if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then
|
||||
install -d ${D}${sysconfdir}/tmpfiles.d
|
||||
|
|
|
@ -85,7 +85,7 @@ NOINST_TOOLS = " \
|
|||
|
||||
do_install:append() {
|
||||
install -d ${D}${INIT_D_DIR}
|
||||
install -m 0755 ${WORKDIR}/init ${D}${INIT_D_DIR}/bluetooth
|
||||
install -m 0755 ${UNPACKDIR}/init ${D}${INIT_D_DIR}/bluetooth
|
||||
|
||||
if [ -f ${D}/${sysconfdir}/init.d/bluetooth ]; then
|
||||
sed -i -e 's#@LIBEXECDIR@#${libexecdir}#g' ${D}/${sysconfdir}/init.d/bluetooth
|
||||
|
|
|
@ -26,5 +26,5 @@ ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}"
|
|||
RDEPENDS:${PN} = "connman"
|
||||
|
||||
do_install:append() {
|
||||
install -m 0644 ${WORKDIR}/images/* ${D}/usr/share/icons/hicolor/22x22/apps/
|
||||
install -m 0644 ${UNPACKDIR}/images/* ${D}/usr/share/icons/hicolor/22x22/apps/
|
||||
}
|
||||
|
|
|
@ -86,7 +86,7 @@ ALTERNATIVE_LINK_NAME[resolv-conf] = "${@bb.utils.contains('DISTRO_FEATURES','sy
|
|||
do_install:append() {
|
||||
if ${@bb.utils.contains('DISTRO_FEATURES','sysvinit','true','false',d)}; then
|
||||
install -d ${D}${sysconfdir}/init.d
|
||||
install -m 0755 ${WORKDIR}/connman ${D}${sysconfdir}/init.d/connman
|
||||
install -m 0755 ${UNPACKDIR}/connman ${D}${sysconfdir}/init.d/connman
|
||||
sed -i s%@DATADIR@%${datadir}% ${D}${sysconfdir}/init.d/connman
|
||||
fi
|
||||
|
||||
|
|
|
@ -52,7 +52,7 @@ USERADD_PARAM:${PN} = "--system -d ${DBDIR} -M -s /bin/false -U dhcpcd"
|
|||
do_install:append () {
|
||||
# install systemd unit files
|
||||
install -d ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${WORKDIR}/dhcpcd*.service ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${UNPACKDIR}/dhcpcd*.service ${D}${systemd_system_unitdir}
|
||||
|
||||
chmod 700 ${D}${DBDIR}
|
||||
chown dhcpcd:dhcpcd ${D}${DBDIR}
|
||||
|
|
|
@ -80,23 +80,23 @@ do_install:append () {
|
|||
mv ${D}${libexecdir}/telnetd ${D}${sbindir}/in.telnetd
|
||||
if [ -e ${D}${libexecdir}/rexecd ]; then
|
||||
mv ${D}${libexecdir}/rexecd ${D}${sbindir}/in.rexecd
|
||||
cp ${WORKDIR}/rexec.xinetd.inetutils ${D}/${sysconfdir}/xinetd.d/rexec
|
||||
cp ${UNPACKDIR}/rexec.xinetd.inetutils ${D}/${sysconfdir}/xinetd.d/rexec
|
||||
fi
|
||||
if [ -e ${D}${libexecdir}/rlogind ]; then
|
||||
mv ${D}${libexecdir}/rlogind ${D}${sbindir}/in.rlogind
|
||||
cp ${WORKDIR}/rlogin.xinetd.inetutils ${D}/${sysconfdir}/xinetd.d/rlogin
|
||||
cp ${UNPACKDIR}/rlogin.xinetd.inetutils ${D}/${sysconfdir}/xinetd.d/rlogin
|
||||
fi
|
||||
if [ -e ${D}${libexecdir}/rshd ]; then
|
||||
mv ${D}${libexecdir}/rshd ${D}${sbindir}/in.rshd
|
||||
cp ${WORKDIR}/rsh.xinetd.inetutils ${D}/${sysconfdir}/xinetd.d/rsh
|
||||
cp ${UNPACKDIR}/rsh.xinetd.inetutils ${D}/${sysconfdir}/xinetd.d/rsh
|
||||
fi
|
||||
if [ -e ${D}${libexecdir}/talkd ]; then
|
||||
mv ${D}${libexecdir}/talkd ${D}${sbindir}/in.talkd
|
||||
fi
|
||||
mv ${D}${libexecdir}/uucpd ${D}${sbindir}/in.uucpd
|
||||
mv ${D}${libexecdir}/* ${D}${bindir}/
|
||||
cp ${WORKDIR}/telnet.xinetd.inetutils ${D}/${sysconfdir}/xinetd.d/telnet
|
||||
cp ${WORKDIR}/tftpd.xinetd.inetutils ${D}/${sysconfdir}/xinetd.d/tftpd
|
||||
cp ${UNPACKDIR}/telnet.xinetd.inetutils ${D}/${sysconfdir}/xinetd.d/telnet
|
||||
cp ${UNPACKDIR}/tftpd.xinetd.inetutils ${D}/${sysconfdir}/xinetd.d/tftpd
|
||||
|
||||
sed -e 's,@SBINDIR@,${sbindir},g' -i ${D}/${sysconfdir}/xinetd.d/*
|
||||
if [ -e ${D}${libdir}/charset.alias ]; then
|
||||
|
|
|
@ -58,8 +58,8 @@ do_install:append() {
|
|||
install -d ${D}${sysconfdir}/init.d
|
||||
install -d ${D}${systemd_system_unitdir}
|
||||
|
||||
install -m 0644 ${WORKDIR}/kea-dhcp*service ${D}${systemd_system_unitdir}
|
||||
install -m 0755 ${WORKDIR}/kea-*-server ${D}${sysconfdir}/init.d
|
||||
install -m 0644 ${UNPACKDIR}/kea-dhcp*service ${D}${systemd_system_unitdir}
|
||||
install -m 0755 ${UNPACKDIR}/kea-*-server ${D}${sysconfdir}/init.d
|
||||
sed -i -e 's,@SBINDIR@,${sbindir},g' -e 's,@BASE_BINDIR@,${base_bindir},g' \
|
||||
-e 's,@LOCALSTATEDIR@,${localstatedir},g' -e 's,@SYSCONFDIR@,${sysconfdir},g' \
|
||||
${D}${systemd_system_unitdir}/kea-dhcp*service ${D}${sbindir}/keactrl
|
||||
|
|
|
@ -31,7 +31,7 @@ EXTRA_OECONF += "--enable-tools"
|
|||
do_install:append() {
|
||||
if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then
|
||||
install -d ${D}${sysconfdir}/init.d/
|
||||
sed "s:@installpath@:${libexecdir}/nfc:" ${WORKDIR}/neard.in \
|
||||
sed "s:@installpath@:${libexecdir}/nfc:" ${UNPACKDIR}/neard.in \
|
||||
> ${D}${sysconfdir}/init.d/neard
|
||||
chmod 0755 ${D}${sysconfdir}/init.d/neard
|
||||
fi
|
||||
|
|
|
@ -122,22 +122,22 @@ HIGH_RLIMIT_NOFILE ??= "4096"
|
|||
|
||||
do_install:append () {
|
||||
install -d ${D}${sysconfdir}/init.d
|
||||
install -m 0755 ${WORKDIR}/nfsserver ${D}${sysconfdir}/init.d/nfsserver
|
||||
install -m 0755 ${WORKDIR}/nfscommon ${D}${sysconfdir}/init.d/nfscommon
|
||||
install -m 0755 ${UNPACKDIR}/nfsserver ${D}${sysconfdir}/init.d/nfsserver
|
||||
install -m 0755 ${UNPACKDIR}/nfscommon ${D}${sysconfdir}/init.d/nfscommon
|
||||
|
||||
install -m 0755 ${WORKDIR}/nfs-utils.conf ${D}${sysconfdir}
|
||||
install -m 0755 ${UNPACKDIR}/nfs-utils.conf ${D}${sysconfdir}
|
||||
install -m 0755 ${S}/utils/mount/nfsmount.conf ${D}${sysconfdir}
|
||||
|
||||
install -d ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${WORKDIR}/nfs-server.service ${D}${systemd_system_unitdir}/
|
||||
install -m 0644 ${WORKDIR}/nfs-mountd.service ${D}${systemd_system_unitdir}/
|
||||
install -m 0644 ${WORKDIR}/nfs-statd.service ${D}${systemd_system_unitdir}/
|
||||
install -m 0644 ${UNPACKDIR}/nfs-server.service ${D}${systemd_system_unitdir}/
|
||||
install -m 0644 ${UNPACKDIR}/nfs-mountd.service ${D}${systemd_system_unitdir}/
|
||||
install -m 0644 ${UNPACKDIR}/nfs-statd.service ${D}${systemd_system_unitdir}/
|
||||
sed -i -e 's,@SBINDIR@,${sbindir},g' \
|
||||
-e 's,@SYSCONFDIR@,${sysconfdir},g' \
|
||||
-e 's,@HIGH_RLIMIT_NOFILE@,${HIGH_RLIMIT_NOFILE},g' \
|
||||
${D}${systemd_system_unitdir}/*.service
|
||||
if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then
|
||||
install -m 0644 ${WORKDIR}/proc-fs-nfsd.mount ${D}${systemd_system_unitdir}/
|
||||
install -m 0644 ${UNPACKDIR}/proc-fs-nfsd.mount ${D}${systemd_system_unitdir}/
|
||||
install -d ${D}${systemd_system_unitdir}/sysinit.target.wants/
|
||||
ln -sf ../proc-fs-nfsd.mount ${D}${systemd_system_unitdir}/sysinit.target.wants/proc-fs-nfsd.mount
|
||||
fi
|
||||
|
|
|
@ -37,7 +37,7 @@ do_configure:prepend() {
|
|||
|
||||
do_install:append() {
|
||||
install -d ${D}${sysconfdir}/init.d/
|
||||
install -m 0755 ${WORKDIR}/ofono ${D}${sysconfdir}/init.d/ofono
|
||||
install -m 0755 ${UNPACKDIR}/ofono ${D}${sysconfdir}/init.d/ofono
|
||||
}
|
||||
|
||||
PACKAGES =+ "${PN}-tests"
|
||||
|
|
|
@ -102,8 +102,8 @@ CACHED_CONFIGUREVARS += "ac_cv_header_maillock_h=no"
|
|||
|
||||
do_configure:prepend () {
|
||||
export LD="${CC}"
|
||||
install -m 0644 ${WORKDIR}/sshd_config ${B}/
|
||||
install -m 0644 ${WORKDIR}/ssh_config ${B}/
|
||||
install -m 0644 ${UNPACKDIR}/sshd_config ${B}/
|
||||
install -m 0644 ${UNPACKDIR}/ssh_config ${B}/
|
||||
}
|
||||
|
||||
do_compile_ptest() {
|
||||
|
|
|
@ -181,7 +181,7 @@ do_install:append:class-native () {
|
|||
|
||||
do_install:append:class-nativesdk () {
|
||||
mkdir -p ${D}${SDKPATHNATIVE}/environment-setup.d
|
||||
install -m 644 ${WORKDIR}/environment.d-openssl.sh ${D}${SDKPATHNATIVE}/environment-setup.d/openssl.sh
|
||||
install -m 644 ${UNPACKDIR}/environment.d-openssl.sh ${D}${SDKPATHNATIVE}/environment-setup.d/openssl.sh
|
||||
sed 's|/usr/lib/ssl/|/usr/lib/ssl-3/|g' -i ${D}${SDKPATHNATIVE}/environment-setup.d/openssl.sh
|
||||
}
|
||||
|
||||
|
|
|
@ -35,20 +35,20 @@ do_install:append () {
|
|||
mkdir -p ${D}${bindir}/ ${D}${sysconfdir}/init.d
|
||||
mkdir -p ${D}${sysconfdir}/ppp/ip-up.d/
|
||||
mkdir -p ${D}${sysconfdir}/ppp/ip-down.d/
|
||||
install -m 0755 ${WORKDIR}/pon ${D}${bindir}/pon
|
||||
install -m 0755 ${WORKDIR}/poff ${D}${bindir}/poff
|
||||
install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/ppp
|
||||
install -m 0755 ${WORKDIR}/ip-up ${D}${sysconfdir}/ppp/
|
||||
install -m 0755 ${WORKDIR}/ip-down ${D}${sysconfdir}/ppp/
|
||||
install -m 0755 ${WORKDIR}/08setupdns ${D}${sysconfdir}/ppp/ip-up.d/
|
||||
install -m 0755 ${WORKDIR}/92removedns ${D}${sysconfdir}/ppp/ip-down.d/
|
||||
install -m 0755 ${UNPACKDIR}/pon ${D}${bindir}/pon
|
||||
install -m 0755 ${UNPACKDIR}/poff ${D}${bindir}/poff
|
||||
install -m 0755 ${UNPACKDIR}/init ${D}${sysconfdir}/init.d/ppp
|
||||
install -m 0755 ${UNPACKDIR}/ip-up ${D}${sysconfdir}/ppp/
|
||||
install -m 0755 ${UNPACKDIR}/ip-down ${D}${sysconfdir}/ppp/
|
||||
install -m 0755 ${UNPACKDIR}/08setupdns ${D}${sysconfdir}/ppp/ip-up.d/
|
||||
install -m 0755 ${UNPACKDIR}/92removedns ${D}${sysconfdir}/ppp/ip-down.d/
|
||||
mkdir -p ${D}${sysconfdir}/chatscripts
|
||||
mkdir -p ${D}${sysconfdir}/ppp/peers
|
||||
install -m 0755 ${WORKDIR}/pap ${D}${sysconfdir}/chatscripts
|
||||
install -m 0755 ${WORKDIR}/ppp_on_boot ${D}${sysconfdir}/ppp/ppp_on_boot
|
||||
install -m 0755 ${WORKDIR}/provider ${D}${sysconfdir}/ppp/peers/provider
|
||||
install -m 0755 ${UNPACKDIR}/pap ${D}${sysconfdir}/chatscripts
|
||||
install -m 0755 ${UNPACKDIR}/ppp_on_boot ${D}${sysconfdir}/ppp/ppp_on_boot
|
||||
install -m 0755 ${UNPACKDIR}/provider ${D}${sysconfdir}/ppp/peers/provider
|
||||
install -d ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${WORKDIR}/ppp@.service ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${UNPACKDIR}/ppp@.service ${D}${systemd_system_unitdir}
|
||||
sed -i -e 's,@SBINDIR@,${sbindir},g' \
|
||||
${D}${systemd_system_unitdir}/ppp@.service
|
||||
}
|
||||
|
|
|
@ -29,7 +29,7 @@ do_compile () {
|
|||
|
||||
do_install () {
|
||||
install -d ${D}${sysconfdir}/default/volatiles
|
||||
install -m 0644 ${WORKDIR}/99_resolvconf ${D}${sysconfdir}/default/volatiles
|
||||
install -m 0644 ${UNPACKDIR}/99_resolvconf ${D}${sysconfdir}/default/volatiles
|
||||
if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then
|
||||
install -d ${D}${sysconfdir}/tmpfiles.d
|
||||
echo "d /run/${BPN}/interface - - - -" \
|
||||
|
|
|
@ -10,10 +10,10 @@ INHIBIT_DEFAULT_DEPS = "1"
|
|||
|
||||
do_install () {
|
||||
install -d ${D}${sysconfdir}/dropbear
|
||||
install ${WORKDIR}/dropbear_rsa_host_key -m 0600 ${D}${sysconfdir}/dropbear/
|
||||
install ${UNPACKDIR}/dropbear_rsa_host_key -m 0600 ${D}${sysconfdir}/dropbear/
|
||||
|
||||
install -d ${D}${sysconfdir}/ssh
|
||||
install ${WORKDIR}/openssh/* ${D}${sysconfdir}/ssh/
|
||||
install ${UNPACKDIR}/openssh/* ${D}${sysconfdir}/ssh/
|
||||
chmod 0600 ${D}${sysconfdir}/ssh/*
|
||||
chmod 0644 ${D}${sysconfdir}/ssh/*.pub
|
||||
}
|
|
@ -62,15 +62,15 @@ do_install () {
|
|||
oe_runmake -C wpa_supplicant DESTDIR="${D}" install
|
||||
|
||||
install -d ${D}${docdir}/wpa_supplicant
|
||||
install -m 644 wpa_supplicant/README ${WORKDIR}/wpa_supplicant.conf ${D}${docdir}/wpa_supplicant
|
||||
install -m 644 wpa_supplicant/README ${UNPACKDIR}/wpa_supplicant.conf ${D}${docdir}/wpa_supplicant
|
||||
|
||||
install -d ${D}${sysconfdir}
|
||||
install -m 600 ${WORKDIR}/wpa_supplicant.conf-sane ${D}${sysconfdir}/wpa_supplicant.conf
|
||||
install -m 600 ${UNPACKDIR}/wpa_supplicant.conf-sane ${D}${sysconfdir}/wpa_supplicant.conf
|
||||
|
||||
install -d ${D}${sysconfdir}/network/if-pre-up.d/
|
||||
install -d ${D}${sysconfdir}/network/if-post-down.d/
|
||||
install -d ${D}${sysconfdir}/network/if-down.d/
|
||||
install -m 755 ${WORKDIR}/wpa-supplicant.sh ${D}${sysconfdir}/network/if-pre-up.d/wpa-supplicant
|
||||
install -m 755 ${UNPACKDIR}/wpa-supplicant.sh ${D}${sysconfdir}/network/if-pre-up.d/wpa-supplicant
|
||||
ln -sf ../if-pre-up.d/wpa-supplicant ${D}${sysconfdir}/network/if-post-down.d/wpa-supplicant
|
||||
|
||||
install -d ${D}/${sysconfdir}/dbus-1/system.d
|
||||
|
@ -84,7 +84,7 @@ do_install () {
|
|||
fi
|
||||
|
||||
install -d ${D}/etc/default/volatiles
|
||||
install -m 0644 ${WORKDIR}/99_wpa_supplicant ${D}/etc/default/volatiles
|
||||
install -m 0644 ${UNPACKDIR}/99_wpa_supplicant ${D}/etc/default/volatiles
|
||||
|
||||
install -d ${D}${includedir}
|
||||
install -m 0644 ${S}/src/common/wpa_ctrl.h ${D}${includedir}
|
||||
|
|
|
@ -114,7 +114,7 @@ do_prepare_config () {
|
|||
export KCONFIG_NOTIMESTAMP=1
|
||||
|
||||
sed -e '/CONFIG_STATIC/d' \
|
||||
< ${WORKDIR}/defconfig > ${S}/.config
|
||||
< ${UNPACKDIR}/defconfig > ${S}/.config
|
||||
echo "# CONFIG_STATIC is not set" >> .config
|
||||
for i in 'CROSS' 'DISTRO FEATURES'; do echo "### $i"; done >> \
|
||||
${S}/.config
|
||||
|
@ -280,67 +280,67 @@ do_install () {
|
|||
fi
|
||||
|
||||
if grep -q "CONFIG_SYSLOGD=y" ${B}/.config; then
|
||||
install -m 0755 ${WORKDIR}/syslog ${D}${sysconfdir}/init.d/syslog
|
||||
install -m 644 ${WORKDIR}/syslog-startup.conf ${D}${sysconfdir}/syslog-startup.conf
|
||||
install -m 644 ${WORKDIR}/syslog.conf ${D}${sysconfdir}/syslog.conf
|
||||
install -m 0755 ${UNPACKDIR}/syslog ${D}${sysconfdir}/init.d/syslog
|
||||
install -m 644 ${UNPACKDIR}/syslog-startup.conf ${D}${sysconfdir}/syslog-startup.conf
|
||||
install -m 644 ${UNPACKDIR}/syslog.conf ${D}${sysconfdir}/syslog.conf
|
||||
fi
|
||||
if grep -q "CONFIG_CROND=y" ${B}/.config; then
|
||||
install -m 0755 ${WORKDIR}/busybox-cron ${D}${sysconfdir}/init.d/
|
||||
install -m 0755 ${UNPACKDIR}/busybox-cron ${D}${sysconfdir}/init.d/
|
||||
fi
|
||||
if grep -q "CONFIG_HTTPD=y" ${B}/.config; then
|
||||
install -m 0755 ${WORKDIR}/busybox-httpd ${D}${sysconfdir}/init.d/
|
||||
install -m 0755 ${UNPACKDIR}/busybox-httpd ${D}${sysconfdir}/init.d/
|
||||
install -d ${D}/srv/www
|
||||
fi
|
||||
if grep -q "CONFIG_UDHCPD=y" ${B}/.config; then
|
||||
install -m 0755 ${WORKDIR}/busybox-udhcpd ${D}${sysconfdir}/init.d/
|
||||
install -m 0755 ${UNPACKDIR}/busybox-udhcpd ${D}${sysconfdir}/init.d/
|
||||
fi
|
||||
if grep -q "CONFIG_HWCLOCK=y" ${B}/.config; then
|
||||
install -m 0755 ${WORKDIR}/hwclock.sh ${D}${sysconfdir}/init.d/
|
||||
install -m 0755 ${UNPACKDIR}/hwclock.sh ${D}${sysconfdir}/init.d/
|
||||
fi
|
||||
if grep -q "CONFIG_UDHCPC=y" ${B}/.config; then
|
||||
install -d ${D}${sysconfdir}/udhcpc.d
|
||||
install -d ${D}${datadir}/udhcpc
|
||||
install -m 0755 ${WORKDIR}/simple.script ${D}${sysconfdir}/udhcpc.d/50default
|
||||
install -m 0755 ${UNPACKDIR}/simple.script ${D}${sysconfdir}/udhcpc.d/50default
|
||||
sed -i "s:/SBIN_DIR/:${base_sbindir}/:" ${D}${sysconfdir}/udhcpc.d/50default
|
||||
install -m 0755 ${WORKDIR}/default.script ${D}${datadir}/udhcpc/default.script
|
||||
install -m 0755 ${UNPACKDIR}/default.script ${D}${datadir}/udhcpc/default.script
|
||||
fi
|
||||
if grep -q "CONFIG_INETD=y" ${B}/.config; then
|
||||
install -m 0755 ${WORKDIR}/inetd ${D}${sysconfdir}/init.d/inetd.${BPN}
|
||||
install -m 0755 ${UNPACKDIR}/inetd ${D}${sysconfdir}/init.d/inetd.${BPN}
|
||||
sed -i "s:/usr/sbin/:${sbindir}/:" ${D}${sysconfdir}/init.d/inetd.${BPN}
|
||||
install -m 0644 ${WORKDIR}/inetd.conf ${D}${sysconfdir}/
|
||||
install -m 0644 ${UNPACKDIR}/inetd.conf ${D}${sysconfdir}/
|
||||
fi
|
||||
if grep -q "CONFIG_MDEV=y" ${B}/.config; then
|
||||
install -m 0755 ${WORKDIR}/mdev ${D}${sysconfdir}/init.d/mdev
|
||||
install -m 0755 ${UNPACKDIR}/mdev ${D}${sysconfdir}/init.d/mdev
|
||||
if grep "CONFIG_FEATURE_MDEV_CONF=y" ${B}/.config; then
|
||||
install -m 644 ${WORKDIR}/mdev.conf ${D}${sysconfdir}/mdev.conf
|
||||
install -m 644 ${UNPACKDIR}/mdev.conf ${D}${sysconfdir}/mdev.conf
|
||||
install -d ${D}${sysconfdir}/mdev
|
||||
install -m 0755 ${WORKDIR}/find-touchscreen.sh ${D}${sysconfdir}/mdev
|
||||
install -m 0755 ${WORKDIR}/mdev-mount.sh ${D}${sysconfdir}/mdev
|
||||
install -m 0755 ${UNPACKDIR}/find-touchscreen.sh ${D}${sysconfdir}/mdev
|
||||
install -m 0755 ${UNPACKDIR}/mdev-mount.sh ${D}${sysconfdir}/mdev
|
||||
fi
|
||||
fi
|
||||
if grep -q "CONFIG_INIT=y" ${B}/.config && ${@bb.utils.contains('VIRTUAL-RUNTIME_init_manager','busybox','true','false',d)}; then
|
||||
install -D -m 0755 ${WORKDIR}/rcS ${D}${sysconfdir}/init.d/rcS
|
||||
install -D -m 0755 ${WORKDIR}/rcK ${D}${sysconfdir}/init.d/rcK
|
||||
install -D -m 0755 ${WORKDIR}/rcS.default ${D}${sysconfdir}/default/rcS
|
||||
install -D -m 0755 ${UNPACKDIR}/rcS ${D}${sysconfdir}/init.d/rcS
|
||||
install -D -m 0755 ${UNPACKDIR}/rcK ${D}${sysconfdir}/init.d/rcK
|
||||
install -D -m 0755 ${UNPACKDIR}/rcS.default ${D}${sysconfdir}/default/rcS
|
||||
fi
|
||||
|
||||
if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then
|
||||
if grep -q "CONFIG_KLOGD=y" ${B}/.config; then
|
||||
install -d ${D}${systemd_system_unitdir}
|
||||
sed 's,@base_sbindir@,${base_sbindir},g' < ${WORKDIR}/busybox-klogd.service.in \
|
||||
sed 's,@base_sbindir@,${base_sbindir},g' < ${UNPACKDIR}/busybox-klogd.service.in \
|
||||
> ${D}${systemd_system_unitdir}/busybox-klogd.service
|
||||
fi
|
||||
|
||||
if grep -q "CONFIG_SYSLOGD=y" ${B}/.config; then
|
||||
install -d ${D}${systemd_system_unitdir}
|
||||
sed 's,@base_sbindir@,${base_sbindir},g' < ${WORKDIR}/busybox-syslog.service.in \
|
||||
sed 's,@base_sbindir@,${base_sbindir},g' < ${UNPACKDIR}/busybox-syslog.service.in \
|
||||
> ${D}${systemd_system_unitdir}/busybox-syslog.service
|
||||
if [ ! -e ${D}${systemd_system_unitdir}/busybox-klogd.service ] ; then
|
||||
sed -i '/klog/d' ${D}${systemd_system_unitdir}/busybox-syslog.service
|
||||
fi
|
||||
if [ -f ${WORKDIR}/busybox-syslog.default ] ; then
|
||||
if [ -f ${UNPACKDIR}/busybox-syslog.default ] ; then
|
||||
install -d ${D}${sysconfdir}/default
|
||||
install -m 0644 ${WORKDIR}/busybox-syslog.default ${D}${sysconfdir}/default/busybox-syslog
|
||||
install -m 0644 ${UNPACKDIR}/busybox-syslog.default ${D}${sysconfdir}/default/busybox-syslog
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
|
|
@ -129,8 +129,8 @@ do_install() {
|
|||
|
||||
if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then
|
||||
install -d ${D}${sysconfdir}/init.d
|
||||
sed 's:@bindir@:${bindir}:' < ${WORKDIR}/dbus-1.init >${WORKDIR}/dbus-1.init.sh
|
||||
install -m 0755 ${WORKDIR}/dbus-1.init.sh ${D}${sysconfdir}/init.d/dbus-1
|
||||
sed 's:@bindir@:${bindir}:' < ${UNPACKDIR}/dbus-1.init > ${S}/dbus-1.init.sh
|
||||
install -m 0755 ${S}/dbus-1.init.sh ${D}${sysconfdir}/init.d/dbus-1
|
||||
install -d ${D}${sysconfdir}/default/volatiles
|
||||
echo "d messagebus messagebus 0755 /run/dbus none" \
|
||||
> ${D}${sysconfdir}/default/volatiles/99_dbus
|
||||
|
|
|
@ -76,7 +76,7 @@ do_install() {
|
|||
${D}${sbindir} \
|
||||
${D}${localstatedir}
|
||||
|
||||
install -m 0644 ${WORKDIR}/dropbear.default ${D}${sysconfdir}/default/dropbear
|
||||
install -m 0644 ${UNPACKDIR}/dropbear.default ${D}${sysconfdir}/default/dropbear
|
||||
|
||||
install -m 0755 dropbearmulti ${D}${sbindir}/
|
||||
|
||||
|
@ -94,18 +94,18 @@ do_install() {
|
|||
-e 's,/usr/sbin,${sbindir},g' \
|
||||
-e 's,/var,${localstatedir},g' \
|
||||
-e 's,/usr/bin,${bindir},g' \
|
||||
-e 's,/usr,${prefix},g' ${WORKDIR}/init > ${D}${sysconfdir}/init.d/dropbear
|
||||
-e 's,/usr,${prefix},g' ${UNPACKDIR}/init > ${D}${sysconfdir}/init.d/dropbear
|
||||
chmod 755 ${D}${sysconfdir}/init.d/dropbear
|
||||
if [ "${@bb.utils.filter('DISTRO_FEATURES', 'pam', d)}" ]; then
|
||||
install -d ${D}${sysconfdir}/pam.d
|
||||
install -m 0644 ${WORKDIR}/dropbear ${D}${sysconfdir}/pam.d/
|
||||
install -m 0644 ${UNPACKDIR}/dropbear ${D}${sysconfdir}/pam.d/
|
||||
fi
|
||||
|
||||
# deal with systemd unit files
|
||||
install -d ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${WORKDIR}/dropbearkey.service ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${WORKDIR}/dropbear@.service ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${WORKDIR}/dropbear.socket ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${UNPACKDIR}/dropbearkey.service ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${UNPACKDIR}/dropbear@.service ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${UNPACKDIR}/dropbear.socket ${D}${systemd_system_unitdir}
|
||||
sed -i -e 's,@BASE_BINDIR@,${base_bindir},g' \
|
||||
-e 's,@BINDIR@,${bindir},g' \
|
||||
-e 's,@SBINDIR@,${sbindir},g' \
|
||||
|
|
|
@ -69,9 +69,9 @@ inherit multilib_header
|
|||
|
||||
do_install() {
|
||||
oe_runmake install_root=${D} install
|
||||
install -Dm 0644 ${WORKDIR}/etc/ld.so.conf ${D}/${sysconfdir}/ld.so.conf
|
||||
install -Dm 0644 ${UNPACKDIR}/etc/ld.so.conf ${D}/${sysconfdir}/ld.so.conf
|
||||
install -d ${D}${localedir}
|
||||
make -f ${WORKDIR}/generate-supported.mk IN="${S}/localedata/SUPPORTED" OUT="${WORKDIR}/SUPPORTED"
|
||||
make -f ${UNPACKDIR}/generate-supported.mk IN="${S}/localedata/SUPPORTED" OUT="${WORKDIR}/SUPPORTED"
|
||||
# get rid of some broken files...
|
||||
for i in ${GLIBC_BROKEN_LOCALES}; do
|
||||
sed -i "/$i/d" ${WORKDIR}/SUPPORTED
|
||||
|
@ -101,7 +101,7 @@ do_install() {
|
|||
install -d ${D}${localstatedir}/db/nscd
|
||||
install -m 0755 ${S}/nscd/nscd.init ${D}${sysconfdir}/init.d/nscd
|
||||
install -m 0755 ${S}/nscd/nscd.conf ${D}${sysconfdir}/nscd.conf
|
||||
install -m 0755 ${WORKDIR}/makedbs.sh ${D}${localstatedir}/db
|
||||
install -m 0755 ${UNPACKDIR}/makedbs.sh ${D}${localstatedir}/db
|
||||
sed -i "s%daemon%start-stop-daemon --start --exec%g" ${D}${sysconfdir}/init.d/nscd
|
||||
sed -i "s|\(enable-cache\t\+netgroup\t\+\)yes|\1no|" ${D}${sysconfdir}/nscd.conf
|
||||
|
||||
|
|
|
@ -76,7 +76,7 @@ do_install_ptest_base () {
|
|||
done
|
||||
|
||||
install -d ${D}${PTEST_PATH}
|
||||
cp ${WORKDIR}/run-ptest ${D}${PTEST_PATH}/
|
||||
cp ${UNPACKDIR}/run-ptest ${D}${PTEST_PATH}/
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ do_install () {
|
|||
|
||||
# If volatiles are used, then we'll also need /run/network there too.
|
||||
install -d ${D}/etc/default/volatiles
|
||||
install -m 0644 ${WORKDIR}/99_network ${D}/etc/default/volatiles
|
||||
install -m 0644 ${UNPACKDIR}/99_network ${D}/etc/default/volatiles
|
||||
|
||||
install -m 0755 ifup ${D}${base_sbindir}/
|
||||
ln ${D}${base_sbindir}/ifup ${D}${base_sbindir}/ifdown
|
||||
|
|
|
@ -80,7 +80,7 @@ python do_compile () {
|
|||
import subprocess
|
||||
|
||||
# Build a separate executable for each splash image
|
||||
workdir = d.getVar('WORKDIR')
|
||||
workdir = d.getVar('UNPACKDIR')
|
||||
convertscript = "%s/make-image-header.sh" % d.getVar('S')
|
||||
destfile = "%s/psplash-poky-img.h" % d.getVar('B')
|
||||
localfiles = d.getVar('SPLASH_LOCALPATHS').split()
|
||||
|
|
|
@ -38,7 +38,7 @@ do_install:append () {
|
|||
rmdir ${D}${datadir}/${BPN} || true
|
||||
|
||||
install -m 0755 -d ${D}${sysconfdir}
|
||||
install -m 0644 ${WORKDIR}/inputrc ${D}${sysconfdir}/inputrc
|
||||
install -m 0644 ${UNPACKDIR}/inputrc ${D}${sysconfdir}/inputrc
|
||||
}
|
||||
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
|
@ -54,4 +54,4 @@ ALTERNATIVE_LINK_NAME[history.3] = "${mandir}/man3/history.3"
|
|||
# OpenSuse injects versions into libreadline leading to conficits between our native one and theirs
|
||||
# see their spec file for where this is injected. Extra versioning is harmless so we just do the same.
|
||||
SRC_URI:append:class-native = " file://rl-native.map"
|
||||
LDFLAGS:append:class-native = " -Wl,--version-script=${WORKDIR}/rl-native.map"
|
||||
LDFLAGS:append:class-native = " -Wl,--version-script=${UNPACKDIR}/rl-native.map"
|
||||
|
|
|
@ -26,7 +26,7 @@ PACKAGECONFIG[systemd] = ",,systemd"
|
|||
|
||||
do_install:append() {
|
||||
if [ "${VIRTUAL-RUNTIME_init_manager}" != "systemd" ]; then
|
||||
install -Dm755 ${WORKDIR}/init ${D}/${sysconfdir}/init.d/seatd
|
||||
install -Dm755 ${UNPACKDIR}/init ${D}/${sysconfdir}/init.d/seatd
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
|
@ -22,18 +22,18 @@ SRC_URI = "\
|
|||
"
|
||||
|
||||
do_install() {
|
||||
install -D -m0644 ${WORKDIR}/journald.conf ${D}${systemd_unitdir}/journald.conf.d/00-${PN}.conf
|
||||
install -D -m0644 ${WORKDIR}/logind.conf ${D}${systemd_unitdir}/logind.conf.d/00-${PN}.conf
|
||||
install -D -m0644 ${WORKDIR}/system.conf ${D}${systemd_unitdir}/system.conf.d/00-${PN}.conf
|
||||
install -D -m0644 ${UNPACKDIR}/journald.conf ${D}${systemd_unitdir}/journald.conf.d/00-${PN}.conf
|
||||
install -D -m0644 ${UNPACKDIR}/logind.conf ${D}${systemd_unitdir}/logind.conf.d/00-${PN}.conf
|
||||
install -D -m0644 ${UNPACKDIR}/system.conf ${D}${systemd_unitdir}/system.conf.d/00-${PN}.conf
|
||||
|
||||
if ${@bb.utils.contains('PACKAGECONFIG', 'dhcp-ethernet', 'true', 'false', d)}; then
|
||||
install -D -m0644 ${WORKDIR}/wired.network ${D}${systemd_unitdir}/network/80-wired.network
|
||||
install -D -m0644 ${UNPACKDIR}/wired.network ${D}${systemd_unitdir}/network/80-wired.network
|
||||
fi
|
||||
}
|
||||
|
||||
# Based on change from YP bug 8141, OE commit 5196d7bacaef1076c361adaa2867be31759c1b52
|
||||
do_install:append:qemuall() {
|
||||
install -D -m0644 ${WORKDIR}/system.conf-qemuall ${D}${systemd_unitdir}/system.conf.d/01-${PN}.conf
|
||||
install -D -m0644 ${UNPACKDIR}/system.conf-qemuall ${D}${systemd_unitdir}/system.conf.d/01-${PN}.conf
|
||||
}
|
||||
|
||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||
|
|
|
@ -293,15 +293,15 @@ do_install() {
|
|||
|
||||
install -d ${D}${sysconfdir}/udev/rules.d/
|
||||
install -d ${D}${nonarch_libdir}/tmpfiles.d
|
||||
for rule in $(find ${WORKDIR} -maxdepth 1 -type f -name "*.rules"); do
|
||||
for rule in $(find ${UNPACKDIR} -maxdepth 1 -type f -name "*.rules"); do
|
||||
install -m 0644 $rule ${D}${sysconfdir}/udev/rules.d/
|
||||
done
|
||||
|
||||
install -m 0644 ${WORKDIR}/00-create-volatile.conf ${D}${nonarch_libdir}/tmpfiles.d/
|
||||
install -m 0644 ${UNPACKDIR}/00-create-volatile.conf ${D}${nonarch_libdir}/tmpfiles.d/
|
||||
|
||||
if ${@bb.utils.contains('DISTRO_FEATURES','sysvinit','true','false',d)}; then
|
||||
install -d ${D}${sysconfdir}/init.d
|
||||
install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/systemd-udevd
|
||||
install -m 0755 ${UNPACKDIR}/init ${D}${sysconfdir}/init.d/systemd-udevd
|
||||
sed -i s%@UDEVD@%${rootlibexecdir}/systemd/systemd-udevd% ${D}${sysconfdir}/init.d/systemd-udevd
|
||||
install -Dm 0755 ${S}/src/systemctl/systemd-sysv-install.SKELETON ${D}${systemd_unitdir}/systemd-sysv-install
|
||||
fi
|
||||
|
@ -372,9 +372,9 @@ do_install() {
|
|||
# request hostname changes via DBUS without elevating its privileges
|
||||
if ${@bb.utils.contains('PACKAGECONFIG', 'polkit_hostnamed_fallback', 'true', 'false', d)}; then
|
||||
install -d ${D}${systemd_system_unitdir}/systemd-hostnamed.service.d/
|
||||
install -m 0644 ${WORKDIR}/00-hostnamed-network-user.conf ${D}${systemd_system_unitdir}/systemd-hostnamed.service.d/
|
||||
install -m 0644 ${UNPACKDIR}/00-hostnamed-network-user.conf ${D}${systemd_system_unitdir}/systemd-hostnamed.service.d/
|
||||
install -d ${D}${datadir}/dbus-1/system.d/
|
||||
install -m 0644 ${WORKDIR}/org.freedesktop.hostname1_no_polkit.conf ${D}${datadir}/dbus-1/system.d/
|
||||
install -m 0644 ${UNPACKDIR}/org.freedesktop.hostname1_no_polkit.conf ${D}${datadir}/dbus-1/system.d/
|
||||
fi
|
||||
|
||||
# create link for existing udev rules
|
||||
|
@ -382,10 +382,10 @@ do_install() {
|
|||
|
||||
# install default policy for presets
|
||||
# https://www.freedesktop.org/wiki/Software/systemd/Preset/#howto
|
||||
install -Dm 0644 ${WORKDIR}/99-default.preset ${D}${systemd_unitdir}/system-preset/99-default.preset
|
||||
install -Dm 0644 ${UNPACKDIR}/99-default.preset ${D}${systemd_unitdir}/system-preset/99-default.preset
|
||||
|
||||
# add a profile fragment to disable systemd pager with busybox less
|
||||
install -Dm 0644 ${WORKDIR}/systemd-pager.sh ${D}${sysconfdir}/profile.d/systemd-pager.sh
|
||||
install -Dm 0644 ${UNPACKDIR}/systemd-pager.sh ${D}${sysconfdir}/profile.d/systemd-pager.sh
|
||||
|
||||
if [ -n "${WATCHDOG_TIMEOUT}" ]; then
|
||||
sed -i -e 's/#RebootWatchdogSec=10min/RebootWatchdogSec=${WATCHDOG_TIMEOUT}/' \
|
||||
|
|
|
@ -97,18 +97,18 @@ do_install () {
|
|||
|
||||
sed -e \
|
||||
's:#PSPLASH_TEXT#:${@bb.utils.contains("PACKAGECONFIG","psplash-text-updates","yes","no", d)}:g' \
|
||||
${WORKDIR}/rcS-default > ${D}${sysconfdir}/default/rcS
|
||||
${UNPACKDIR}/rcS-default > ${D}${sysconfdir}/default/rcS
|
||||
chmod 0644 ${D}${sysconfdir}/default/rcS
|
||||
install -m 0755 ${WORKDIR}/rc ${D}${sysconfdir}/init.d
|
||||
install -m 0755 ${WORKDIR}/rcS ${D}${sysconfdir}/init.d
|
||||
install -m 0755 ${WORKDIR}/bootlogd.init ${D}${sysconfdir}/init.d/bootlogd
|
||||
install -m 0755 ${UNPACKDIR}/rc ${D}${sysconfdir}/init.d
|
||||
install -m 0755 ${UNPACKDIR}/rcS ${D}${sysconfdir}/init.d
|
||||
install -m 0755 ${UNPACKDIR}/bootlogd.init ${D}${sysconfdir}/init.d/bootlogd
|
||||
ln -sf bootlogd ${D}${sysconfdir}/init.d/stop-bootlogd
|
||||
|
||||
update-rc.d -r ${D} bootlogd start 07 S .
|
||||
update-rc.d -r ${D} stop-bootlogd start 99 2 3 4 5 .
|
||||
|
||||
install -d ${D}${sysconfdir}/default/volatiles
|
||||
install -m 0644 ${WORKDIR}/01_bootlogd ${D}${sysconfdir}/default/volatiles
|
||||
install -m 0644 ${UNPACKDIR}/01_bootlogd ${D}${sysconfdir}/default/volatiles
|
||||
|
||||
chown root:shutdown ${D}${base_sbindir}/halt ${D}${base_sbindir}/shutdown
|
||||
chmod o-x,u+s ${D}${base_sbindir}/halt ${D}${base_sbindir}/shutdown
|
||||
|
|
|
@ -42,12 +42,12 @@ PACKAGECONFIG[selinux] = "--enable-selinux,--disable-selinux,libselinux"
|
|||
|
||||
do_install:append() {
|
||||
install -d ${D}${sysconfdir}/init.d
|
||||
install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/udev
|
||||
install -m 0755 ${UNPACKDIR}/init ${D}${sysconfdir}/init.d/udev
|
||||
sed -i s%@UDEVD@%${base_sbindir}/udevd% ${D}${sysconfdir}/init.d/udev
|
||||
sed -i s%@KMOD@%${base_bindir}/kmod% ${D}${sysconfdir}/init.d/udev
|
||||
|
||||
install -d ${D}${sysconfdir}/udev/rules.d
|
||||
install -m 0644 ${WORKDIR}/local.rules ${D}${sysconfdir}/udev/rules.d/local.rules
|
||||
install -m 0644 ${UNPACKDIR}/local.rules ${D}${sysconfdir}/udev/rules.d/local.rules
|
||||
|
||||
# Use classic network interface naming scheme if no 'pni-names' distro feature
|
||||
if ${@bb.utils.contains('DISTRO_FEATURES', 'pni-names', 'false', 'true', d)}; then
|
||||
|
|
|
@ -148,7 +148,7 @@ SYSTEMD_SERVICE:${PN}-fstrim = "fstrim.timer fstrim.service"
|
|||
SYSTEMD_AUTO_ENABLE:${PN}-fstrim = "disable"
|
||||
|
||||
do_compile:append () {
|
||||
cp ${WORKDIR}/fcntl-lock.c ${S}/fcntl-lock.c
|
||||
cp ${UNPACKDIR}/fcntl-lock.c ${S}/fcntl-lock.c
|
||||
${CC} ${CFLAGS} ${LDFLAGS} ${S}/fcntl-lock.c -o ${B}/fcntl-lock
|
||||
}
|
||||
|
||||
|
@ -194,8 +194,8 @@ do_install () {
|
|||
do_install:append:class-target () {
|
||||
if [ "${@bb.utils.filter('PACKAGECONFIG', 'pam', d)}" ]; then
|
||||
install -d ${D}${sysconfdir}/pam.d
|
||||
install -m 0644 ${WORKDIR}/runuser.pamd ${D}${sysconfdir}/pam.d/runuser
|
||||
install -m 0644 ${WORKDIR}/runuser-l.pamd ${D}${sysconfdir}/pam.d/runuser-l
|
||||
install -m 0644 ${UNPACKDIR}/runuser.pamd ${D}${sysconfdir}/pam.d/runuser
|
||||
install -m 0644 ${UNPACKDIR}/runuser-l.pamd ${D}${sysconfdir}/pam.d/runuser-l
|
||||
# Required for "su -" aka "su --login" because
|
||||
# otherwise it uses "other", which has "auth pam_deny.so"
|
||||
# and thus prevents the operation.
|
||||
|
@ -322,7 +322,7 @@ do_install_ptest() {
|
|||
cp ${S}/tests/*.sh ${D}${PTEST_PATH}/tests/
|
||||
cp -pR ${S}/tests/expected ${D}${PTEST_PATH}/tests/expected
|
||||
cp -pR ${S}/tests/ts ${D}${PTEST_PATH}/tests/
|
||||
cp ${WORKDIR}/build/config.h ${D}${PTEST_PATH}
|
||||
cp ${B}/config.h ${D}${PTEST_PATH}
|
||||
|
||||
sed -i 's|@base_sbindir@|${base_sbindir}|g' ${D}${PTEST_PATH}/run-ptest
|
||||
|
||||
|
|
|
@ -132,7 +132,7 @@ do_install () {
|
|||
|
||||
oe_runmake install NO_PYTHON_COMPILE=1
|
||||
install -d ${D}${sysconfdir}/init.d
|
||||
install -m 0755 ${WORKDIR}/bootchartd_stop.sh ${D}${sysconfdir}/init.d
|
||||
install -m 0755 ${UNPACKDIR}/bootchartd_stop.sh ${D}${sysconfdir}/init.d
|
||||
|
||||
echo 'EXIT_PROC="$EXIT_PROC matchbox-window-manager"' >> ${D}${sysconfdir}/bootchartd.conf
|
||||
|
||||
|
|
|
@ -54,9 +54,9 @@ do_install() {
|
|||
# The following codes are here because eSDK needs to provide compatibilty
|
||||
# for SDK. That is, eSDK could also be used like traditional SDK.
|
||||
mkdir -p ${D}${datadir}/cmake
|
||||
install -m 644 ${WORKDIR}/OEToolchainConfig.cmake ${D}${datadir}/cmake/
|
||||
install -m 644 ${UNPACKDIR}/OEToolchainConfig.cmake ${D}${datadir}/cmake/
|
||||
mkdir -p ${D}${base_prefix}/environment-setup.d
|
||||
install -m 644 ${WORKDIR}/environment.d-cmake.sh ${D}${base_prefix}/environment-setup.d/cmake.sh
|
||||
install -m 644 ${UNPACKDIR}/environment.d-cmake.sh ${D}${base_prefix}/environment-setup.d/cmake.sh
|
||||
|
||||
# Help docs create tons of files in the native sysroot and aren't needed there
|
||||
rm -rf ${D}${datadir}/cmake-*/Help
|
||||
|
|
|
@ -48,15 +48,15 @@ EXTRA_OECMAKE=" \
|
|||
|
||||
do_install:append:class-nativesdk() {
|
||||
mkdir -p ${D}${datadir}/cmake
|
||||
install -m 644 ${WORKDIR}/OEToolchainConfig.cmake ${D}${datadir}/cmake/
|
||||
install -m 644 ${UNPACKDIR}/OEToolchainConfig.cmake ${D}${datadir}/cmake/
|
||||
|
||||
mkdir -p ${D}${SDKPATHNATIVE}/environment-setup.d
|
||||
install -m 644 ${WORKDIR}/environment.d-cmake.sh ${D}${SDKPATHNATIVE}/environment-setup.d/cmake.sh
|
||||
install -m 644 ${UNPACKDIR}/environment.d-cmake.sh ${D}${SDKPATHNATIVE}/environment-setup.d/cmake.sh
|
||||
|
||||
# install cmake-setup.py to create arch-specific toolchain cmake file from template
|
||||
install -m 0644 ${WORKDIR}/SDKToolchainConfig.cmake.template ${D}${datadir}/cmake/
|
||||
install -m 0644 ${UNPACKDIR}/SDKToolchainConfig.cmake.template ${D}${datadir}/cmake/
|
||||
install -d ${D}${SDKPATHNATIVE}/post-relocate-setup.d
|
||||
install -m 0755 ${WORKDIR}/cmake-setup.py ${D}${SDKPATHNATIVE}/post-relocate-setup.d/
|
||||
install -m 0755 ${UNPACKDIR}/cmake-setup.py ${D}${SDKPATHNATIVE}/post-relocate-setup.d/
|
||||
}
|
||||
|
||||
FILES:${PN}:append:class-nativesdk = " ${SDKPATHNATIVE}"
|
||||
|
|
|
@ -50,10 +50,10 @@ do_install() {
|
|||
oe_runmake 'DESTDIR=${D}' "GZIP_BIN=gzip -n" install
|
||||
install -d ${D}${sysconfdir}/init.d/
|
||||
install -d ${D}${sysconfdir}/default
|
||||
install -m 0755 ${WORKDIR}/distcc ${D}${sysconfdir}/init.d/
|
||||
install -m 0755 ${WORKDIR}/default ${D}${sysconfdir}/default/distcc
|
||||
install -m 0755 ${UNPACKDIR}/distcc ${D}${sysconfdir}/init.d/
|
||||
install -m 0755 ${UNPACKDIR}/default ${D}${sysconfdir}/default/distcc
|
||||
install -d ${D}${systemd_system_unitdir}/
|
||||
install -m 0644 ${WORKDIR}/distcc.service ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${UNPACKDIR}/distcc.service ${D}${systemd_system_unitdir}
|
||||
sed -i -e 's,@BINDIR@,${bindir},g' ${D}${systemd_system_unitdir}/distcc.service
|
||||
}
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@ do_compile[noexec] = "1"
|
|||
do_install () {
|
||||
install -d ${D}${datadir}/gnu-config \
|
||||
${D}${bindir}
|
||||
cat ${WORKDIR}/gnu-configize.in | \
|
||||
cat ${UNPACKDIR}/gnu-configize.in | \
|
||||
sed -e 's,@gnu-configdir@,${datadir}/gnu-config,g' \
|
||||
-e 's,@autom4te_perllibdir@,${datadir}/autoconf,g' > ${D}${bindir}/gnu-configize
|
||||
# In the native case we want the system perl as perl-native can't have built yet
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
SUMMARY = "Generates Icecream toolchain for SDK"
|
||||
DESCRIPTION = "${SUMMARY}"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://${WORKDIR}/icecc-env.sh;beginline=2;endline=20;md5=dd6b68c1efed8a9fb04e409b3b287d47"
|
||||
LIC_FILES_CHKSUM = "file://${UNPACKDIR}/icecc-env.sh;beginline=2;endline=20;md5=dd6b68c1efed8a9fb04e409b3b287d47"
|
||||
|
||||
INHIBIT_DEFAULT_DEPS = "1"
|
||||
|
||||
|
@ -23,12 +23,12 @@ do_install() {
|
|||
install -d ${D}${SDKPATHNATIVE}${datadir}/icecream/bin
|
||||
|
||||
install -d ${D}${SDKPATHNATIVE}/environment-setup.d/
|
||||
install -m 0644 ${WORKDIR}/icecc-env.sh ${D}${SDKPATHNATIVE}/environment-setup.d/
|
||||
install -m 0644 ${UNPACKDIR}/icecc-env.sh ${D}${SDKPATHNATIVE}/environment-setup.d/
|
||||
sed -i ${D}${SDKPATHNATIVE}/environment-setup.d/icecc-env.sh \
|
||||
-e 's,@TOOLCHAIN_ENV@,${ENV_NAME},g'
|
||||
|
||||
install -d ${D}${SDKPATHNATIVE}/post-relocate-setup.d/
|
||||
install -m 0755 ${WORKDIR}/icecc-setup.sh ${D}${SDKPATHNATIVE}/post-relocate-setup.d/
|
||||
install -m 0755 ${UNPACKDIR}/icecc-setup.sh ${D}${SDKPATHNATIVE}/post-relocate-setup.d/
|
||||
sed -i ${D}${SDKPATHNATIVE}/post-relocate-setup.d/icecc-setup.sh \
|
||||
-e 's,@TOOLCHAIN_ENV@,${ENV_NAME},g'
|
||||
}
|
||||
|
|
|
@ -134,7 +134,7 @@ SYSROOT_PREPROCESS_FUNCS:append:class-target = " llvm_sysroot_preprocess"
|
|||
|
||||
llvm_sysroot_preprocess() {
|
||||
install -d ${SYSROOT_DESTDIR}${bindir_crossscripts}/
|
||||
install -m 0755 ${WORKDIR}/llvm-config ${SYSROOT_DESTDIR}${bindir_crossscripts}/
|
||||
install -m 0755 ${UNPACKDIR}/llvm-config ${SYSROOT_DESTDIR}${bindir_crossscripts}/
|
||||
ln -sf llvm-config ${SYSROOT_DESTDIR}${bindir_crossscripts}/llvm-config${PV}
|
||||
}
|
||||
|
||||
|
|
|
@ -44,8 +44,8 @@ do_install () {
|
|||
install
|
||||
install -d ${D}${libdir}/pkgconfig
|
||||
|
||||
sed -e s/@VERSION@/${PV}/ -e s#@LIBDIR@#${libdir}# -e s#@INCLUDEDIR@#${includedir}# ${WORKDIR}/lua.pc.in > ${WORKDIR}/lua.pc
|
||||
install -m 0644 ${WORKDIR}/lua.pc ${D}${libdir}/pkgconfig/
|
||||
sed -e s/@VERSION@/${PV}/ -e s#@LIBDIR@#${libdir}# -e s#@INCLUDEDIR@#${includedir}# ${UNPACKDIR}/lua.pc.in > ${S}/lua.pc
|
||||
install -m 0644 ${S}/lua.pc ${D}${libdir}/pkgconfig/
|
||||
rmdir ${D}${datadir}/lua/5.4
|
||||
rmdir ${D}${datadir}/lua
|
||||
}
|
||||
|
|
|
@ -132,11 +132,11 @@ do_install:append:class-nativesdk() {
|
|||
install_templates
|
||||
|
||||
install -d ${D}${SDKPATHNATIVE}/post-relocate-setup.d
|
||||
install -m 0755 ${WORKDIR}/meson-setup.py ${D}${SDKPATHNATIVE}/post-relocate-setup.d/
|
||||
install -m 0755 ${UNPACKDIR}/meson-setup.py ${D}${SDKPATHNATIVE}/post-relocate-setup.d/
|
||||
|
||||
# We need to wrap the real meson with a thin env setup wrapper.
|
||||
mv ${D}${bindir}/meson ${D}${bindir}/meson.real
|
||||
install -m 0755 ${WORKDIR}/meson-wrapper ${D}${bindir}/meson
|
||||
install -m 0755 ${UNPACKDIR}/meson-wrapper ${D}${bindir}/meson
|
||||
}
|
||||
|
||||
FILES:${PN}:append:class-nativesdk = "${datadir}/meson ${SDKPATHNATIVE}"
|
||||
|
@ -149,10 +149,10 @@ do_install:append:class-native() {
|
|||
install_templates
|
||||
|
||||
install -d ${D}${datadir}/post-relocate-setup.d
|
||||
install -m 0755 ${WORKDIR}/meson-setup.py ${D}${datadir}/post-relocate-setup.d/
|
||||
install -m 0755 ${UNPACKDIR}/meson-setup.py ${D}${datadir}/post-relocate-setup.d/
|
||||
|
||||
# We need to wrap the real meson with a thin wrapper that substitues native/cross files
|
||||
# when running in a direct SDK environment.
|
||||
mv ${D}${bindir}/meson ${D}${bindir}/meson.real
|
||||
install -m 0755 ${WORKDIR}/meson-wrapper ${D}${bindir}/meson
|
||||
install -m 0755 ${UNPACKDIR}/meson-wrapper ${D}${bindir}/meson
|
||||
}
|
||||
|
|
|
@ -47,7 +47,7 @@ EXTRA_OECONF:append:class-native = " --localstatedir=/${@os.path.relpath('${loca
|
|||
|
||||
do_install:append () {
|
||||
install -d ${D}${sysconfdir}/opkg
|
||||
install -m 0644 ${WORKDIR}/opkg.conf ${D}${sysconfdir}/opkg/opkg.conf
|
||||
install -m 0644 ${UNPACKDIR}/opkg.conf ${D}${sysconfdir}/opkg/opkg.conf
|
||||
echo "option lists_dir ${OPKGLIBDIR}/opkg/lists" >>${D}${sysconfdir}/opkg/opkg.conf
|
||||
echo "option info_dir ${OPKGLIBDIR}/opkg/info" >>${D}${sysconfdir}/opkg/opkg.conf
|
||||
echo "option status_file ${OPKGLIBDIR}/opkg/status" >>${D}${sysconfdir}/opkg/opkg.conf
|
||||
|
|
|
@ -29,18 +29,18 @@ EXTRA_OECONF += "--with-pkg-config-dir='${libdir}/pkgconfig:${datadir}/pkgconfig
|
|||
do_install:append () {
|
||||
# Install a wrapper which deals, as much as possible with pkgconf vs
|
||||
# pkg-config compatibility issues.
|
||||
install -m 0755 "${WORKDIR}/pkg-config-wrapper" "${D}${bindir}/pkg-config"
|
||||
install -m 0755 "${UNPACKDIR}/pkg-config-wrapper" "${D}${bindir}/pkg-config"
|
||||
}
|
||||
|
||||
do_install:append:class-native () {
|
||||
# Install a pkg-config-native wrapper that will use the native sysroot instead
|
||||
# of the MACHINE sysroot, for using pkg-config when building native tools.
|
||||
sed -e "s|@PATH_NATIVE@|${PKG_CONFIG_PATH}|" \
|
||||
< ${WORKDIR}/pkg-config-native.in > ${B}/pkg-config-native
|
||||
< ${UNPACKDIR}/pkg-config-native.in > ${B}/pkg-config-native
|
||||
install -m755 ${B}/pkg-config-native ${D}${bindir}/pkg-config-native
|
||||
sed -e "s|@PATH_NATIVE@|${PKG_CONFIG_PATH}|" \
|
||||
-e "s|@LIBDIR_NATIVE@|${PKG_CONFIG_LIBDIR}|" \
|
||||
< ${WORKDIR}/pkg-config-esdk.in > ${B}/pkg-config-esdk
|
||||
< ${UNPACKDIR}/pkg-config-esdk.in > ${B}/pkg-config-esdk
|
||||
install -m755 ${B}/pkg-config-esdk ${D}${bindir}/pkg-config-esdk
|
||||
}
|
||||
|
||||
|
|
|
@ -51,11 +51,11 @@ RPROVIDES:${PN} += "pkgconfig(pkg-config)"
|
|||
do_install:append:class-native () {
|
||||
sed -e "s|@PATH_NATIVE@|${PKG_CONFIG_PATH}|" \
|
||||
-e "s|@LIBDIR_NATIVE@|${PKG_CONFIG_LIBDIR}|" \
|
||||
< ${WORKDIR}/pkg-config-native.in > ${B}/pkg-config-native
|
||||
< ${UNPACKDIR}/pkg-config-native.in > ${B}/pkg-config-native
|
||||
install -m755 ${B}/pkg-config-native ${D}${bindir}/pkg-config-native
|
||||
sed -e "s|@PATH_NATIVE@|${PKG_CONFIG_PATH}|" \
|
||||
-e "s|@LIBDIR_NATIVE@|${PKG_CONFIG_LIBDIR}|" \
|
||||
< ${WORKDIR}/pkg-config-esdk.in > ${B}/pkg-config-esdk
|
||||
< ${UNPACKDIR}/pkg-config-esdk.in > ${B}/pkg-config-esdk
|
||||
install -m755 ${B}/pkg-config-esdk ${D}${bindir}/pkg-config-esdk
|
||||
}
|
||||
|
||||
|
|
|
@ -133,8 +133,8 @@ do_install:append:class-native () {
|
|||
chrpath ${D}${bindir}/pseudo -r `chrpath ${D}${bindir}/pseudo | cut -d = -f 2 | sed s/XORIGIN/\\$ORIGIN/`
|
||||
install -d ${D}${sysconfdir}
|
||||
# The fallback files should never be modified
|
||||
install -m 444 ${WORKDIR}/fallback-passwd ${D}${sysconfdir}/passwd
|
||||
install -m 444 ${WORKDIR}/fallback-group ${D}${sysconfdir}/group
|
||||
install -m 444 ${UNPACKDIR}/fallback-passwd ${D}${sysconfdir}/passwd
|
||||
install -m 444 ${UNPACKDIR}/fallback-group ${D}${sysconfdir}/group
|
||||
|
||||
# Two native/nativesdk entries below are the same
|
||||
# If necessary install for the alternative machine arch. This is only
|
||||
|
|
|
@ -157,7 +157,7 @@ do_compile:prepend() {
|
|||
}
|
||||
|
||||
do_install:prepend() {
|
||||
${WORKDIR}/check_build_completeness.py ${T}/log.do_compile
|
||||
${UNPACKDIR}/check_build_completeness.py ${T}/log.do_compile
|
||||
}
|
||||
|
||||
do_install:append:class-target() {
|
||||
|
@ -197,7 +197,7 @@ do_install:append:class-native() {
|
|||
|
||||
do_install:append() {
|
||||
for c in ${D}/${libdir}/python${PYTHON_MAJMIN}/_sysconfigdata*.py; do
|
||||
python3 ${WORKDIR}/reformat_sysconfig.py $c
|
||||
python3 ${UNPACKDIR}/reformat_sysconfig.py $c
|
||||
done
|
||||
rm -f ${D}${libdir}/python${PYTHON_MAJMIN}/__pycache__/_sysconfigdata*.cpython*
|
||||
|
||||
|
@ -284,7 +284,7 @@ py_package_preprocess () {
|
|||
# Reformat _sysconfigdata after modifying it so that it remains
|
||||
# reproducible
|
||||
for c in ${PKGD}/${libdir}/python${PYTHON_MAJMIN}/_sysconfigdata*.py; do
|
||||
python3 ${WORKDIR}/reformat_sysconfig.py $c
|
||||
python3 ${UNPACKDIR}/reformat_sysconfig.py $c
|
||||
done
|
||||
|
||||
# Recompile _sysconfigdata after modifying it
|
||||
|
@ -397,6 +397,7 @@ do_create_manifest() {
|
|||
# e.g. BerkeleyDB is an optional build dependency so it may or may not
|
||||
# be present, we must ensure it is.
|
||||
|
||||
cp ${UNPACKDIR}/create_manifest3.py ${WORKDIR}
|
||||
cd ${WORKDIR}
|
||||
# This needs to be executed by python-native and NOT by HOST's python
|
||||
nativepython3 create_manifest3.py ${PYTHON_MAJMIN}
|
||||
|
|
|
@ -17,7 +17,7 @@ PACKAGECONFIG ??= "fdt alsa kvm pie slirp png \
|
|||
PACKAGECONFIG:remove = "${@'kvm' if not os.path.exists('/usr/include/linux/kvm.h') else ''}"
|
||||
|
||||
do_install:append() {
|
||||
install -Dm 0755 ${WORKDIR}/powerpc_rom.bin ${D}${datadir}/qemu
|
||||
install -Dm 0755 ${UNPACKDIR}/powerpc_rom.bin ${D}${datadir}/qemu
|
||||
|
||||
# The following is also installed by qemu-native
|
||||
rm -f ${D}${datadir}/qemu/trace-events-all
|
||||
|
|
|
@ -168,11 +168,11 @@ do_install () {
|
|||
# If we built the guest agent, also install startup/udev rules
|
||||
if [ -e "${D}${bindir}/qemu-ga" ]; then
|
||||
install -d ${D}${sysconfdir}/init.d/
|
||||
install -m 0755 ${WORKDIR}/qemu-guest-agent.init ${D}${sysconfdir}/init.d/qemu-guest-agent
|
||||
install -m 0755 ${UNPACKDIR}/qemu-guest-agent.init ${D}${sysconfdir}/init.d/qemu-guest-agent
|
||||
sed -i 's:@bindir@:${bindir}:' ${D}${sysconfdir}/init.d/qemu-guest-agent
|
||||
|
||||
install -d ${D}${sysconfdir}/udev/rules.d/
|
||||
install -m 0644 ${WORKDIR}/qemu-guest-agent.udev ${D}${sysconfdir}/udev/rules.d/60-qemu-guest-agent.rules
|
||||
install -m 0644 ${UNPACKDIR}/qemu-guest-agent.udev ${D}${sysconfdir}/udev/rules.d/60-qemu-guest-agent.rules
|
||||
|
||||
install -d ${D}${systemd_unitdir}/system/
|
||||
install -m 0644 ${S}/contrib/systemd/qemu-guest-agent.service ${D}${systemd_unitdir}/system
|
||||
|
|
|
@ -22,7 +22,7 @@ do_configure:prepend() {
|
|||
}
|
||||
|
||||
do_install() {
|
||||
install -D ${WORKDIR}/git/repo ${D}${bindir}/repo
|
||||
install -D ${S}/repo ${D}${bindir}/repo
|
||||
}
|
||||
|
||||
RDEPENDS:${PN} = "python3 git"
|
||||
|
|
|
@ -61,7 +61,7 @@ do_configure:append () {
|
|||
|
||||
do_install:append() {
|
||||
install -d ${D}${sysconfdir}
|
||||
install -m 0644 ${WORKDIR}/rsyncd.conf ${D}${sysconfdir}
|
||||
install -m 0644 ${UNPACKDIR}/rsyncd.conf ${D}${sysconfdir}
|
||||
}
|
||||
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
|
|
|
@ -54,9 +54,9 @@ CFLAGS:append:loongarch64 = " ${LCL_STOP_SERVICES}"
|
|||
do_install() {
|
||||
oe_runmake install INSTALLROOT=${D}
|
||||
install -d ${D}${sysconfdir}/init.d/
|
||||
install -m 0755 ${WORKDIR}/tcf-agent.init ${D}${sysconfdir}/init.d/tcf-agent
|
||||
install -m 0755 ${UNPACKDIR}/tcf-agent.init ${D}${sysconfdir}/init.d/tcf-agent
|
||||
install -d ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${WORKDIR}/tcf-agent.service ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${UNPACKDIR}/tcf-agent.service ${D}${systemd_system_unitdir}
|
||||
sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_system_unitdir}/tcf-agent.service
|
||||
}
|
||||
|
||||
|
|
|
@ -55,22 +55,22 @@ SYSTEMD_SERVICE:${PN} = "atd.service"
|
|||
do_patch[postfuncs] += "copy_posix_files"
|
||||
|
||||
copy_posix_files() {
|
||||
cp -f ${WORKDIR}/posixtm.[ch] ${S}
|
||||
cp -f ${UNPACKDIR}/posixtm.[ch] ${S}
|
||||
}
|
||||
|
||||
do_install () {
|
||||
oe_runmake -e "IROOT=${D}" install
|
||||
|
||||
install -d ${D}${sysconfdir}/init.d
|
||||
install -m 0755 ${WORKDIR}/atd.init ${D}${sysconfdir}/init.d/atd
|
||||
install -m 0755 ${UNPACKDIR}/atd.init ${D}${sysconfdir}/init.d/atd
|
||||
|
||||
# install systemd unit files
|
||||
install -d ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${WORKDIR}/atd.service ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${UNPACKDIR}/atd.service ${D}${systemd_system_unitdir}
|
||||
sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_system_unitdir}/atd.service
|
||||
|
||||
if [ "${@bb.utils.filter('DISTRO_FEATURES', 'pam', d)}" ]; then
|
||||
install -D -m 0644 ${WORKDIR}/${BP}/pam.conf ${D}${sysconfdir}/pam.d/atd
|
||||
install -D -m 0644 ${UNPACKDIR}/${BP}/pam.conf ${D}${sysconfdir}/pam.d/atd
|
||||
fi
|
||||
rm -f ${D}${datadir}/at/batch-job
|
||||
}
|
||||
|
|
|
@ -27,7 +27,7 @@ PACKAGECONFIG[readline] = "--with-readline,--without-readline,readline"
|
|||
PACKAGECONFIG[libedit] = "--with-libedit,--without-libedit,libedit"
|
||||
|
||||
do_compile:prepend() {
|
||||
cp -f ${WORKDIR}/libmath.h ${B}/bc/libmath.h
|
||||
cp -f ${UNPACKDIR}/libmath.h ${B}/bc/libmath.h
|
||||
}
|
||||
|
||||
do_install_ptest() {
|
||||
|
|
|
@ -49,18 +49,18 @@ do_install:append () {
|
|||
install -d ${D}${sysconfdir}/sysconfig/
|
||||
install -d ${D}${sysconfdir}/init.d/
|
||||
install -m 0644 ${S}/crond.sysconfig ${D}${sysconfdir}/sysconfig/crond
|
||||
install -m 0755 ${WORKDIR}/crond.init ${D}${sysconfdir}/init.d/crond
|
||||
install -m 0755 ${UNPACKDIR}/crond.init ${D}${sysconfdir}/init.d/crond
|
||||
|
||||
# install systemd unit files
|
||||
install -d ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${WORKDIR}/crond.service ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${UNPACKDIR}/crond.service ${D}${systemd_system_unitdir}
|
||||
sed -i -e 's,@BASE_BINDIR@,${base_bindir},g' \
|
||||
-e 's,@SBINDIR@,${sbindir},g' \
|
||||
${D}${systemd_system_unitdir}/crond.service
|
||||
|
||||
# below are necessary for a complete cron environment
|
||||
install -d ${D}${localstatedir}/spool/cron
|
||||
install -m 0755 ${WORKDIR}/crontab ${D}${sysconfdir}/
|
||||
install -m 0755 ${UNPACKDIR}/crontab ${D}${sysconfdir}/
|
||||
mkdir -p ${D}${sysconfdir}/cron.d
|
||||
mkdir -p ${D}${sysconfdir}/cron.hourly
|
||||
mkdir -p ${D}${sysconfdir}/cron.daily
|
||||
|
|
|
@ -84,11 +84,11 @@ do_install () {
|
|||
rm -rf ${D}${sysconfdir}/init.d/
|
||||
rm -rf ${D}${sysconfdir}/rc*
|
||||
install -d ${D}${sysconfdir}/tmpfiles.d
|
||||
install -m 0644 ${WORKDIR}/cups-volatiles.conf \
|
||||
install -m 0644 ${UNPACKDIR}/cups-volatiles.conf \
|
||||
${D}${sysconfdir}/tmpfiles.d/cups.conf
|
||||
else
|
||||
install -d ${D}${sysconfdir}/default/volatiles
|
||||
install -m 0644 ${WORKDIR}/volatiles.99_cups \
|
||||
install -m 0644 ${UNPACKDIR}/volatiles.99_cups \
|
||||
${D}${sysconfdir}/default/volatiles/99_cups
|
||||
fi
|
||||
}
|
||||
|
|
|
@ -52,10 +52,10 @@ IPTABLES_RULES_DIR ?= "${sysconfdir}/${BPN}"
|
|||
|
||||
do_install:append() {
|
||||
install -d ${D}${IPTABLES_RULES_DIR}
|
||||
install -m 0644 ${WORKDIR}/iptables.rules ${D}${IPTABLES_RULES_DIR}
|
||||
install -m 0644 ${UNPACKDIR}/iptables.rules ${D}${IPTABLES_RULES_DIR}
|
||||
|
||||
install -d ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${WORKDIR}/iptables.service ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${UNPACKDIR}/iptables.service ${D}${systemd_system_unitdir}
|
||||
|
||||
sed -i \
|
||||
-e 's,@SBINDIR@,${sbindir},g' \
|
||||
|
@ -63,8 +63,8 @@ do_install:append() {
|
|||
${D}${systemd_system_unitdir}/iptables.service
|
||||
|
||||
if ${@bb.utils.contains('PACKAGECONFIG', 'ipv6', 'true', 'false', d)} ; then
|
||||
install -m 0644 ${WORKDIR}/ip6tables.rules ${D}${IPTABLES_RULES_DIR}
|
||||
install -m 0644 ${WORKDIR}/ip6tables.service ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${UNPACKDIR}/ip6tables.rules ${D}${IPTABLES_RULES_DIR}
|
||||
install -m 0644 ${UNPACKDIR}/ip6tables.service ${D}${systemd_system_unitdir}
|
||||
|
||||
sed -i \
|
||||
-e 's,@SBINDIR@,${sbindir},g' \
|
||||
|
|
|
@ -47,9 +47,9 @@ SYSTEMD_SERVICE:${PN} = "lighttpd.service"
|
|||
|
||||
do_install:append() {
|
||||
install -d ${D}${sysconfdir}/init.d ${D}${sysconfdir}/lighttpd ${D}${sysconfdir}/lighttpd.d ${D}/www/pages/dav
|
||||
install -m 0755 ${WORKDIR}/lighttpd ${D}${sysconfdir}/init.d
|
||||
install -m 0644 ${WORKDIR}/lighttpd.conf ${D}${sysconfdir}/lighttpd
|
||||
install -m 0644 ${WORKDIR}/index.html.lighttpd ${D}/www/pages/index.html
|
||||
install -m 0755 ${UNPACKDIR}/lighttpd ${D}${sysconfdir}/init.d
|
||||
install -m 0644 ${UNPACKDIR}/lighttpd.conf ${D}${sysconfdir}/lighttpd
|
||||
install -m 0644 ${UNPACKDIR}/index.html.lighttpd ${D}/www/pages/index.html
|
||||
|
||||
install -d ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${S}/doc/systemd/lighttpd.service ${D}${systemd_system_unitdir}
|
||||
|
|
|
@ -37,7 +37,7 @@ do_install() {
|
|||
|
||||
if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then
|
||||
install -d ${D}/etc/default/volatiles
|
||||
install -m 0644 ${WORKDIR}/99_mandb ${D}/etc/default/volatiles
|
||||
install -m 0644 ${UNPACKDIR}/99_mandb ${D}/etc/default/volatiles
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
|
@ -61,7 +61,7 @@ do_install:append() {
|
|||
install -d ${D}/${sysconfdir}/
|
||||
install -m 644 ${S}/mdadm.conf-example ${D}${sysconfdir}/mdadm.conf
|
||||
install -d ${D}/${sysconfdir}/init.d
|
||||
install -m 755 ${WORKDIR}/mdadm.init ${D}${sysconfdir}/init.d/mdmonitor
|
||||
install -m 755 ${UNPACKDIR}/mdadm.init ${D}${sysconfdir}/init.d/mdmonitor
|
||||
}
|
||||
|
||||
do_install:append() {
|
||||
|
|
|
@ -138,16 +138,16 @@ do_install() {
|
|||
rm -rf ${D}${sysconfdir}/init.d/
|
||||
rm -rf ${D}${sysconfdir}/rc*
|
||||
install -d ${D}${nonarch_libdir}/tmpfiles.d
|
||||
install -m 0644 ${WORKDIR}/pam-volatiles.conf \
|
||||
install -m 0644 ${UNPACKDIR}/pam-volatiles.conf \
|
||||
${D}${nonarch_libdir}/tmpfiles.d/pam.conf
|
||||
else
|
||||
install -d ${D}${sysconfdir}/default/volatiles
|
||||
install -m 0644 ${WORKDIR}/99_pam \
|
||||
install -m 0644 ${UNPACKDIR}/99_pam \
|
||||
${D}${sysconfdir}/default/volatiles/
|
||||
fi
|
||||
|
||||
install -d ${D}${sysconfdir}/pam.d/
|
||||
install -m 0644 ${WORKDIR}/pam.d/* ${D}${sysconfdir}/pam.d/
|
||||
install -m 0644 ${UNPACKDIR}/pam.d/* ${D}${sysconfdir}/pam.d/
|
||||
|
||||
# The lsb requires unix_chkpwd has setuid permission
|
||||
chmod 4755 ${D}${sbindir}/unix_chkpwd
|
||||
|
|
|
@ -41,7 +41,7 @@ do_install:append () {
|
|||
fi
|
||||
|
||||
install -d ${D}${sysconfdir}
|
||||
install -m 0644 ${WORKDIR}/sysctl.conf ${D}${sysconfdir}/sysctl.conf
|
||||
install -m 0644 ${UNPACKDIR}/sysctl.conf ${D}${sysconfdir}/sysctl.conf
|
||||
if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then
|
||||
install -d ${D}${sysconfdir}/sysctl.d
|
||||
ln -sf ../sysctl.conf ${D}${sysconfdir}/sysctl.d/99-sysctl.conf
|
||||
|
|
|
@ -46,9 +46,9 @@ do_install:append () {
|
|||
install -d ${D}${sysconfdir}/init.d
|
||||
sed -e 's,/etc/,${sysconfdir}/,g' \
|
||||
-e 's,/sbin/,${sbindir}/,g' \
|
||||
${WORKDIR}/init.d > ${D}${sysconfdir}/init.d/rpcbind
|
||||
${UNPACKDIR}/init.d > ${D}${sysconfdir}/init.d/rpcbind
|
||||
chmod 0755 ${D}${sysconfdir}/init.d/rpcbind
|
||||
install -m 0644 ${WORKDIR}/rpcbind.conf ${D}${sysconfdir}/rpcbind.conf
|
||||
install -m 0644 ${UNPACKDIR}/rpcbind.conf ${D}${sysconfdir}/rpcbind.conf
|
||||
}
|
||||
|
||||
ALTERNATIVE:${PN} = "rpcinfo"
|
||||
|
|
|
@ -36,7 +36,7 @@ EXTRA_OECONF = "--with-pty-mode=0620 --with-pty-group=5 --with-sys-screenrc=${sy
|
|||
do_install:append () {
|
||||
install -D -m 644 ${S}/etc/etcscreenrc ${D}/${sysconfdir}/screenrc
|
||||
if [ "${@bb.utils.filter('DISTRO_FEATURES', 'pam', d)}" ]; then
|
||||
install -D -m 644 ${WORKDIR}/screen.pam ${D}/${sysconfdir}/pam.d/screen
|
||||
install -D -m 644 ${UNPACKDIR}/screen.pam ${D}/${sysconfdir}/pam.d/screen
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
|
@ -111,7 +111,7 @@ do_install() {
|
|||
sed -i 's/^#ENCRYPT_METHOD.*$/ENCRYPT_METHOD SHA512/' ${D}${sysconfdir}/login.defs
|
||||
|
||||
install -d ${D}${sysconfdir}/default
|
||||
install -m 0644 ${WORKDIR}/useradd ${D}${sysconfdir}/default
|
||||
install -m 0644 ${UNPACKDIR}/useradd ${D}${sysconfdir}/default
|
||||
}
|
||||
|
||||
do_install:append() {
|
||||
|
@ -121,11 +121,11 @@ do_install:append() {
|
|||
install -m 0775 -d ${D}${localstatedir}/spool/mail
|
||||
chown root:mail ${D}${localstatedir}/spool/mail
|
||||
|
||||
if [ -e ${WORKDIR}/pam.d ]; then
|
||||
if [ -e ${UNPACKDIR}/pam.d ]; then
|
||||
install -d ${D}${sysconfdir}/pam.d/
|
||||
install -m 0644 ${WORKDIR}/pam.d/* ${D}${sysconfdir}/pam.d/
|
||||
install -m 0644 ${UNPACKDIR}/pam.d/* ${D}${sysconfdir}/pam.d/
|
||||
# Remove defaults that are not used when supporting PAM.
|
||||
sed -i -f ${WORKDIR}/login_defs_pam.sed ${D}${sysconfdir}/login.defs
|
||||
sed -i -f ${UNPACKDIR}/login_defs_pam.sed ${D}${sysconfdir}/login.defs
|
||||
fi
|
||||
|
||||
install -d ${D}${sbindir} ${D}${base_sbindir} ${D}${base_bindir}
|
||||
|
|
|
@ -30,7 +30,7 @@ EXTRA_OECONF += " \
|
|||
|
||||
do_install:append () {
|
||||
if [ "${@bb.utils.filter('DISTRO_FEATURES', 'pam', d)}" ]; then
|
||||
install -D -m 644 ${WORKDIR}/sudo.pam ${D}/${sysconfdir}/pam.d/sudo
|
||||
install -D -m 644 ${UNPACKDIR}/sudo.pam ${D}/${sysconfdir}/pam.d/sudo
|
||||
if ${@bb.utils.contains('PACKAGECONFIG', 'pam-wheel', 'true', 'false', d)} ; then
|
||||
echo 'auth required pam_wheel.so use_uid' >>${D}${sysconfdir}/pam.d/sudo
|
||||
sed -i 's/# \(%wheel ALL=(ALL) ALL\)/\1/' ${D}${sysconfdir}/sudoers
|
||||
|
|
|
@ -24,7 +24,7 @@ do_install:append () {
|
|||
install -d ${D}${sysconfdir}
|
||||
install -m 644 ${S}/syslog.conf ${D}${sysconfdir}/syslog.conf
|
||||
install -d ${D}${sysconfdir}/init.d
|
||||
install -m 755 ${WORKDIR}/sysklogd ${D}${sysconfdir}/init.d/syslog
|
||||
install -m 755 ${UNPACKDIR}/sysklogd ${D}${sysconfdir}/init.d/syslog
|
||||
}
|
||||
|
||||
SYSTEMD_PACKAGES = "${PN}"
|
||||
|
|
|
@ -45,7 +45,7 @@ do_install() {
|
|||
rm -rf ${D}/var
|
||||
if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then
|
||||
install -d ${D}/etc/default/volatiles
|
||||
install -m 0644 ${WORKDIR}/99_sysstat ${D}/etc/default/volatiles
|
||||
install -m 0644 ${UNPACKDIR}/99_sysstat ${D}/etc/default/volatiles
|
||||
fi
|
||||
if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then
|
||||
install -d ${D}${nonarch_libdir}/tmpfiles.d
|
||||
|
@ -56,7 +56,7 @@ do_install() {
|
|||
# systemd unit file. Otherwise the package will install one.
|
||||
if ${@bb.utils.contains('PACKAGECONFIG', 'cron systemd', 'false', 'true', d)}; then
|
||||
install -d ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${WORKDIR}/sysstat.service ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${UNPACKDIR}/sysstat.service ${D}${systemd_system_unitdir}
|
||||
sed -i -e 's#@LIBEXECDIR@#${libexecdir}#g' ${D}${systemd_system_unitdir}/sysstat.service
|
||||
fi
|
||||
fi
|
||||
|
|
|
@ -120,8 +120,8 @@ do_install () {
|
|||
install -m 0644 $m.8 ${D}${mandir}/man8/ || exit 1
|
||||
done
|
||||
|
||||
install -m 0644 ${WORKDIR}/try-from.8 ${D}${mandir}/man8/
|
||||
install -m 0644 ${WORKDIR}/safe_finger.8 ${D}${mandir}/man8/
|
||||
install -m 0644 ${UNPACKDIR}/try-from.8 ${D}${mandir}/man8/
|
||||
install -m 0644 ${UNPACKDIR}/safe_finger.8 ${D}${mandir}/man8/
|
||||
|
||||
install -d ${D}${includedir}
|
||||
install -m 0644 tcpd.h ${D}${includedir}/
|
||||
|
|
|
@ -17,8 +17,8 @@ SRC_URI = " \
|
|||
WATCHDOG_TIMEOUT ??= ""
|
||||
|
||||
do_install() {
|
||||
install -Dm 0644 ${WORKDIR}/watchdog.default ${D}${sysconfdir}/default/watchdog
|
||||
install -Dm 0644 ${WORKDIR}/watchdog.conf ${D}${sysconfdir}/watchdog.conf
|
||||
install -Dm 0644 ${UNPACKDIR}/watchdog.default ${D}${sysconfdir}/default/watchdog
|
||||
install -Dm 0644 ${UNPACKDIR}/watchdog.conf ${D}${sysconfdir}/watchdog.conf
|
||||
|
||||
if [ -n "${WATCHDOG_TIMEOUT}" ]; then
|
||||
echo "watchdog-timeout = ${WATCHDOG_TIMEOUT}" >> ${D}/etc/watchdog.conf
|
||||
|
|
|
@ -50,8 +50,8 @@ do_install:append() {
|
|||
install -m 0644 ${S}/debian/watchdog.service ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${S}/debian/wd_keepalive.service ${D}${systemd_system_unitdir}
|
||||
|
||||
install -Dm 0755 ${WORKDIR}/watchdog.init ${D}/${sysconfdir}/init.d/watchdog
|
||||
install -Dm 0755 ${WORKDIR}/wd_keepalive.init ${D}${sysconfdir}/init.d/wd_keepalive
|
||||
install -Dm 0755 ${UNPACKDIR}/watchdog.init ${D}/${sysconfdir}/init.d/watchdog
|
||||
install -Dm 0755 ${UNPACKDIR}/wd_keepalive.init ${D}${sysconfdir}/init.d/wd_keepalive
|
||||
|
||||
# watchdog.conf is provided by the watchdog-config recipe
|
||||
rm ${D}${sysconfdir}/watchdog.conf
|
||||
|
|
|
@ -37,12 +37,12 @@ CONFFILES:${PN} = "${sysconfdir}/xinetd.conf"
|
|||
do_install:append() {
|
||||
install -d "${D}${sysconfdir}/init.d"
|
||||
install -d "${D}${sysconfdir}/default"
|
||||
install -m 755 "${WORKDIR}/xinetd.init" "${D}${sysconfdir}/init.d/xinetd"
|
||||
install -m 644 "${WORKDIR}/xinetd.default" "${D}${sysconfdir}/default/xinetd"
|
||||
install -m 755 "${UNPACKDIR}/xinetd.init" "${D}${sysconfdir}/init.d/xinetd"
|
||||
install -m 644 "${UNPACKDIR}/xinetd.default" "${D}${sysconfdir}/default/xinetd"
|
||||
|
||||
# Install systemd unit files
|
||||
install -d ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${WORKDIR}/xinetd.service ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${UNPACKDIR}/xinetd.service ${D}${systemd_system_unitdir}
|
||||
sed -i -e 's,@BASE_BINDIR@,${base_bindir},g' \
|
||||
-e 's,@SBINDIR@,${sbindir},g' \
|
||||
${D}${systemd_system_unitdir}/xinetd.service
|
||||
|
|
|
@ -34,5 +34,5 @@ EXTRA_OECONF = " --enable-startup-notification \
|
|||
--with-expat-includes=${STAGING_INCDIR}"
|
||||
|
||||
do_install:prepend() {
|
||||
install ${WORKDIR}/kbdconfig ${S}/data/kbdconfig
|
||||
install ${UNPACKDIR}/kbdconfig ${S}/data/kbdconfig
|
||||
}
|
||||
|
|
|
@ -26,7 +26,7 @@ do_install () {
|
|||
done
|
||||
|
||||
install -d ${D}${sysconfdir}/fonts/conf.d/
|
||||
install -m 0644 ${WORKDIR}/30-liberation-aliases.conf ${D}${sysconfdir}/fonts/conf.d/
|
||||
install -m 0644 ${UNPACKDIR}/30-liberation-aliases.conf ${D}${sysconfdir}/fonts/conf.d/
|
||||
|
||||
install -d ${D}${prefix}/share/doc/${BPN}/
|
||||
install -m 0644 LICENSE ${D}${datadir}/doc/${BPN}/
|
||||
|
|
|
@ -105,18 +105,18 @@ do_install:append() {
|
|||
# If X11, ship a desktop file to launch it
|
||||
if [ "${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)}" ]; then
|
||||
install -d ${D}${datadir}/applications
|
||||
install ${WORKDIR}/weston.desktop ${D}${datadir}/applications
|
||||
install ${UNPACKDIR}/weston.desktop ${D}${datadir}/applications
|
||||
|
||||
install -d ${D}${datadir}/icons/hicolor/48x48/apps
|
||||
install ${WORKDIR}/weston.png ${D}${datadir}/icons/hicolor/48x48/apps
|
||||
install ${UNPACKDIR}/weston.png ${D}${datadir}/icons/hicolor/48x48/apps
|
||||
fi
|
||||
|
||||
if [ "${@bb.utils.contains('PACKAGECONFIG', 'xwayland', 'yes', 'no', d)}" = "yes" ]; then
|
||||
install -Dm 644 ${WORKDIR}/xwayland.weston-start ${D}${datadir}/weston-start/xwayland
|
||||
install -Dm 644 ${UNPACKDIR}/xwayland.weston-start ${D}${datadir}/weston-start/xwayland
|
||||
fi
|
||||
|
||||
if [ "${@bb.utils.contains('PACKAGECONFIG', 'systemd', 'yes', 'no', d)}" = "yes" ]; then
|
||||
install -Dm 644 ${WORKDIR}/systemd-notify.weston-start ${D}${datadir}/weston-start/systemd-notify
|
||||
install -Dm 644 ${UNPACKDIR}/systemd-notify.weston-start ${D}${datadir}/weston-start/systemd-notify
|
||||
fi
|
||||
|
||||
if [ "${@bb.utils.contains('PACKAGECONFIG', 'launch', 'yes', 'no', d)}" = "yes" ]; then
|
||||
|
|
|
@ -27,7 +27,7 @@ do_install:append() {
|
|||
install -m 0755 ${S}/scripts/xinput_calibrator_pointercal.sh ${D}${bindir}/xinput_calibrator_once.sh
|
||||
|
||||
install -d ${D}${sysconfdir}/X11/Xsession.d/
|
||||
install -m 0755 ${WORKDIR}/30xinput_calibrate.sh ${D}${sysconfdir}/X11/Xsession.d/
|
||||
install -m 0755 ${UNPACKDIR}/30xinput_calibrate.sh ${D}${sysconfdir}/X11/Xsession.d/
|
||||
|
||||
install -d ${D}${sysconfdir}/xdg/autostart
|
||||
sed -e 's,^Exec=.*,Exec=${bindir}/xinput_calibrator_once.sh,' ${S}/scripts/xinput_calibrator.desktop > ${D}${sysconfdir}/xdg/autostart/xinput_calibrator.desktop
|
||||
|
|
|
@ -9,9 +9,9 @@ SRC_URI = "file://dt-doc-validate \
|
|||
|
||||
do_install() {
|
||||
install -d ${D}${bindir}/
|
||||
install -m 755 ${WORKDIR}/dt-doc-validate ${D}${bindir}/
|
||||
install -m 755 ${WORKDIR}/dt-mk-schema ${D}${bindir}/
|
||||
install -m 755 ${WORKDIR}/dt-validate ${D}${bindir}/
|
||||
install -m 755 ${UNPACKDIR}/dt-doc-validate ${D}${bindir}/
|
||||
install -m 755 ${UNPACKDIR}/dt-mk-schema ${D}${bindir}/
|
||||
install -m 755 ${UNPACKDIR}/dt-validate ${D}${bindir}/
|
||||
}
|
||||
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
|
|
|
@ -44,15 +44,15 @@ do_compile:prepend() {
|
|||
|
||||
do_install:append () {
|
||||
install -d ${D}${sysconfdir}/sysconfig
|
||||
install -m 0644 ${WORKDIR}/kdump.conf ${D}${sysconfdir}/sysconfig
|
||||
install -m 0644 ${UNPACKDIR}/kdump.conf ${D}${sysconfdir}/sysconfig
|
||||
|
||||
if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then
|
||||
install -D -m 0755 ${WORKDIR}/kdump ${D}${sysconfdir}/init.d/kdump
|
||||
install -D -m 0755 ${UNPACKDIR}/kdump ${D}${sysconfdir}/init.d/kdump
|
||||
fi
|
||||
|
||||
if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then
|
||||
install -D -m 0755 ${WORKDIR}/kdump ${D}${libexecdir}/kdump-helper
|
||||
install -D -m 0644 ${WORKDIR}/kdump.service ${D}${systemd_system_unitdir}/kdump.service
|
||||
install -D -m 0755 ${UNPACKDIR}/kdump ${D}${libexecdir}/kdump-helper
|
||||
install -D -m 0644 ${UNPACKDIR}/kdump.service ${D}${systemd_system_unitdir}/kdump.service
|
||||
sed -i -e 's,@LIBEXECDIR@,${libexecdir},g' ${D}${systemd_system_unitdir}/kdump.service
|
||||
fi
|
||||
}
|
||||
|
|
|
@ -63,7 +63,7 @@ do_install:append () {
|
|||
install -dm755 ${D}${sysconfdir}/modprobe.d
|
||||
|
||||
# install depmod.d file for search/ dir
|
||||
install -Dm644 "${WORKDIR}/depmod-search.conf" "${D}${nonarch_base_libdir}/depmod.d/search.conf"
|
||||
install -Dm644 "${UNPACKDIR}/depmod-search.conf" "${D}${nonarch_base_libdir}/depmod.d/search.conf"
|
||||
|
||||
# Add .debug to the exclude path for depmod
|
||||
echo "exclude .debug" > ${D}${nonarch_base_libdir}/depmod.d/exclude.conf
|
||||
|
|
|
@ -69,7 +69,7 @@ PRIVATE_LIBS:${PN}-ptest = "libfoo.so"
|
|||
do_install:append () {
|
||||
# install systemd unit file
|
||||
install -d ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${WORKDIR}/lttng-sessiond.service ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${UNPACKDIR}/lttng-sessiond.service ${D}${systemd_system_unitdir}
|
||||
}
|
||||
|
||||
do_install_ptest () {
|
||||
|
|
|
@ -23,7 +23,7 @@ UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+\.(\d*[02468])+(\.\d+)+)"
|
|||
ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}"
|
||||
|
||||
do_install:append() {
|
||||
install -m 0644 -D ${WORKDIR}/gst-player.desktop ${D}${datadir}/applications/gst-player.desktop
|
||||
install -m 0644 -D ${UNPACKDIR}/gst-player.desktop ${D}${datadir}/applications/gst-player.desktop
|
||||
}
|
||||
|
||||
RDEPENDS:${PN} = "gstreamer1.0-plugins-base-playback"
|
||||
|
|
|
@ -142,7 +142,7 @@ do_compile:append () {
|
|||
|
||||
do_install:append() {
|
||||
install -d ${D}${sysconfdir}/default/volatiles
|
||||
install -m 0644 ${WORKDIR}/volatiles.04_pulse ${D}${sysconfdir}/default/volatiles/04_pulse
|
||||
install -m 0644 ${UNPACKDIR}/volatiles.04_pulse ${D}${sysconfdir}/default/volatiles/04_pulse
|
||||
}
|
||||
|
||||
USERADD_PACKAGES = "pulseaudio-server"
|
||||
|
|
|
@ -27,7 +27,7 @@ REQUIRED_DISTRO_FEATURES = "x11"
|
|||
|
||||
do_install:append() {
|
||||
install -d ${D}${datadir}/matchbox/vfolders/
|
||||
install -m 0644 ${WORKDIR}/vfolders/* ${D}${datadir}/matchbox/vfolders/
|
||||
install -m 0644 ${UNPACKDIR}/vfolders/* ${D}${datadir}/matchbox/vfolders/
|
||||
}
|
||||
|
||||
FILES:${PN} += "${datadir}/matchbox/vfolders/"
|
||||
|
|
|
@ -47,7 +47,7 @@ FILES:${PN}-applet = "${libdir}/matchbox-panel/*.so"
|
|||
|
||||
do_install:append () {
|
||||
install -d ${D}/${sysconfdir}/X11/Xsession.d/
|
||||
install -m 755 ${WORKDIR}/80matchboxkeyboard.sh ${D}/${sysconfdir}/X11/Xsession.d/
|
||||
install -m 755 ${UNPACKDIR}/80matchboxkeyboard.sh ${D}/${sysconfdir}/X11/Xsession.d/
|
||||
|
||||
rm -f ${D}${libdir}/gtk-2.0/*/immodules/*.la
|
||||
rm -f ${D}${libdir}/gtk-3.0/*/immodules/*.la
|
||||
|
|
|
@ -32,7 +32,7 @@ do_install:append () {
|
|||
install -d ${D}/${datadir}
|
||||
install -d ${D}/${datadir}/pixmaps/
|
||||
|
||||
install -m 0644 ${WORKDIR}/*.png ${D}/${datadir}/pixmaps
|
||||
install -m 0644 ${UNPACKDIR}/*.png ${D}/${datadir}/pixmaps
|
||||
}
|
||||
|
||||
FILES:${PN} += "${libdir}/pcmanfm"
|
||||
|
|
|
@ -51,8 +51,8 @@ do_install:append () {
|
|||
install -d ${D}/${datadir}/applications
|
||||
install -d ${D}/${datadir}/pixmaps/
|
||||
|
||||
install -m 0644 ${WORKDIR}/rxvt.png ${D}/${datadir}/pixmaps
|
||||
install -m 0644 ${WORKDIR}/rxvt.desktop ${D}/${datadir}/applications
|
||||
install -m 0644 ${UNPACKDIR}/rxvt.png ${D}/${datadir}/pixmaps
|
||||
install -m 0644 ${UNPACKDIR}/rxvt.desktop ${D}/${datadir}/applications
|
||||
|
||||
${STAGING_BINDIR_NATIVE}/tic -x ${S}/doc/etc/rxvt-unicode.terminfo -o ${D}${datadir}/terminfo || \
|
||||
${STAGING_BINDIR_NATIVE}/tic ${S}/doc/etc/rxvt-unicode.terminfo -o ${D}${datadir}/terminfo
|
||||
|
|
|
@ -26,5 +26,5 @@ REQUIRED_DISTRO_FEATURES = "x11"
|
|||
|
||||
do_install:append () {
|
||||
install -d ${D}/${sysconfdir}/X11/Xsession.d
|
||||
install -m 755 ${WORKDIR}/70settings-daemon.sh ${D}/${sysconfdir}/X11/Xsession.d/
|
||||
install -m 755 ${UNPACKDIR}/70settings-daemon.sh ${D}/${sysconfdir}/X11/Xsession.d/
|
||||
}
|
||||
|
|
|
@ -50,9 +50,9 @@ do_configure:prepend() {
|
|||
}
|
||||
|
||||
do_install:append() {
|
||||
install -Dm 0644 ${WORKDIR}/default ${D}${sysconfdir}/default/rng-tools
|
||||
install -Dm 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/rng-tools
|
||||
install -Dm 0644 ${WORKDIR}/rng-tools.service \
|
||||
install -Dm 0644 ${UNPACKDIR}/default ${D}${sysconfdir}/default/rng-tools
|
||||
install -Dm 0755 ${UNPACKDIR}/init ${D}${sysconfdir}/init.d/rng-tools
|
||||
install -Dm 0644 ${UNPACKDIR}/rng-tools.service \
|
||||
${D}${systemd_system_unitdir}/rng-tools.service
|
||||
sed -i \
|
||||
-e 's,@SYSCONFDIR@,${sysconfdir},g' \
|
||||
|
|
|
@ -15,7 +15,7 @@ do_compile() {
|
|||
}
|
||||
|
||||
do_install() {
|
||||
install -D -m 0644 ${WORKDIR}/system-xuser.conf ${D}${sysconfdir}/dbus-1/system.d/system-xuser.conf
|
||||
install -D -m 0644 ${UNPACKDIR}/system-xuser.conf ${D}${sysconfdir}/dbus-1/system.d/system-xuser.conf
|
||||
}
|
||||
|
||||
FILES:${PN} = "${sysconfdir}/dbus-1/system.d/system-xuser.conf"
|
||||
|
|
Loading…
Reference in New Issue
Block a user