2017-12-12 15:20:36 -05:00
|
|
|
|
2018-02-12 22:11:33 -05:00
|
|
|
hostname="subgraph"
|
2017-12-12 15:20:36 -05:00
|
|
|
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
|
2018-01-18 18:11:46 -05:00
|
|
|
SRC_URI += "\
|
|
|
|
file://locale.conf \
|
|
|
|
file://environment.sh \
|
|
|
|
file://fstab \
|
2018-01-22 22:04:36 -05:00
|
|
|
file://99-grsec-debootstrap.conf \
|
2018-01-18 18:11:46 -05:00
|
|
|
"
|
2017-12-12 15:20:36 -05:00
|
|
|
|
|
|
|
do_install_append () {
|
|
|
|
install -m 0755 -d ${D}/storage
|
2018-01-22 22:04:36 -05:00
|
|
|
install -m 0755 -d ${D}/var/lib/machines
|
2018-01-18 18:11:46 -05:00
|
|
|
install -m 0755 -d ${D}${sysconfdir}/profile.d
|
|
|
|
install -m 0644 ${WORKDIR}/locale.conf ${D}${sysconfdir}/locale.conf
|
|
|
|
install -m 0644 ${WORKDIR}/environment.sh ${D}${sysconfdir}/profile.d/environment.sh
|
|
|
|
install -m 0644 ${WORKDIR}/fstab ${D}${sysconfdir}/fstab
|
2018-01-22 22:04:36 -05:00
|
|
|
|
|
|
|
# disable some pax and grsecurity features so that debootstrap will work
|
|
|
|
# this should be removed later
|
|
|
|
install -d ${D}${libdir}/sysctl.d
|
|
|
|
install -m 0644 ${WORKDIR}/99-grsec-debootstrap.conf ${D}${libdir}/sysctl.d/
|
2017-12-12 15:20:36 -05:00
|
|
|
}
|