Bruce Leidl
be34ea65f3
- removed layers meta-rust and meta-clang - added new dependencies to Makefile - changed override syntax across all recipe files - updated conf files from hardknott to kirkstone - SRC_URI git URLS fixed to always include branch and protocol - LICENSE fields updated with new naming convention - updated citadel-tools dependencies - upgraded mozjs to mozjs-91 No longer needed because poky includes newer version (or new enough): - glib-2.0 - libgudev - xorgproto - libxfixes - libinput - wayland-protocols - vte
20 lines
794 B
Plaintext
20 lines
794 B
Plaintext
hostname="subgraph"
|
|
|
|
dirs1777:remove = "${localstatedir}/volatile/tmp"
|
|
|
|
dirs755="/boot /dev /usr/bin /usr/sbin /usr/lib /etc /etc/default /etc/skel /usr/lib /mnt /proc /home/root /run /usr /usr/bin /usr/share/doc/base-files-3.0.14 /usr/include /usr/lib /usr/sbin /usr/share /usr/share/common-licenses /usr/share/info /usr/share/man /usr/share/misc /var /sys /home /media"
|
|
|
|
volatiles = ""
|
|
|
|
FILESEXTRAPATHS:prepend := "${THISDIR}/base-files:"
|
|
SRC_URI += "file://profile"
|
|
|
|
do_install:append () {
|
|
rm ${D}${sysconfdir}/fstab
|
|
rm ${D}${sysconfdir}/skel/.bashrc
|
|
rm ${D}${sysconfdir}/skel/.profile
|
|
install -m 0644 ${WORKDIR}/profile ${D}${sysconfdir}/profile
|
|
sed -i 's#ROOTHOME#${ROOT_HOME}#' ${D}${sysconfdir}/profile
|
|
sed -i 's#@BINDIR@#${bindir}#g' ${D}${sysconfdir}/profile
|
|
}
|