aboutsummaryrefslogtree2010-10-25iptables: update package LICENSEChase Maupin
2010-08-25iptables 1.4.9.1: DEPENDS on libnfnetlinkRoman I Khimov
2010-08-22iptables: dont fail do_install if there is no /xtables/*Martin Jansa
2010-08-22iptables: add 1.4.9.1 versionRoman I Khimov
2010-06-10recipes: bump PR/INC_PR for packages changed in RDEPENDS/RRECOMMENDS/RSUGGEST...Martin Jansa
2010-06-03recipes: conform to OE packaging guidelines with RDEPENDS/RRECOMMENDSMartin Jansa
2010-05-25Make the do_patch apply=yes param implicit if extension is .diff/.patchChris Larson
2010-05-25Rename url params patch=<ignored>/pnum=<n> to apply={yes,no}/striplevel=<n>Chris Larson
2010-04-12recipes: move checksums to recipes from checksums.iniMartin Jansa
2010-03-25iptables: update to version 1.4.7Roman I Khimov
2010-01-22iptables: unbork the 1.3.8 build, merge iptables-utils into iptables.Chris Larson
2009-12-30iptables: fix packaging of ${libexec}/xtables modulesJeremy Lainé
2009-12-16iptables_1.4.6.bb: Recipe for version 1.4.6.Khem Raj
2009-08-27iptables: Add patch to use cross ar and ranlib.Jeremy Puhlman
2009-03-17rename packages/ to recipes/ per earlier agreementDenys Dmytriyenko
ommon-licenses/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6" PR = "r3" SERIAL_CONSOLE ?= "115200 ttyS0" SRC_URI = "file://serial-getty@.service" do_install() { if [ ! -z "${SERIAL_CONSOLES}" ] ; then default_baudrate=`echo "${SERIAL_CONSOLES}" | sed 's/\;.*//'` install -d ${D}${systemd_unitdir}/system/ install -d ${D}${sysconfdir}/systemd/system/getty.target.wants/ install -m 0644 ${WORKDIR}/serial-getty@.service ${D}${systemd_unitdir}/system/ sed -i -e s/\@BAUDRATE\@/$default_baudrate/g ${D}${systemd_unitdir}/system/serial-getty@.service tmp="${SERIAL_CONSOLES}" for entry in $tmp ; do baudrate=`echo $entry | sed 's/\;.*//'` ttydev=`echo $entry | sed -e 's/^[0-9]*\;//' -e 's/\;.*//'` if [ "$baudrate" = "$default_baudrate" ] ; then # enable the service ln -sf ${systemd_unitdir}/system/serial-getty@.service \ ${D}${sysconfdir}/systemd/system/getty.target.wants/serial-getty@$ttydev.service else # install custom service file for the non-default baudrate install -m 0644 ${WORKDIR}/serial-getty@.service ${D}${systemd_unitdir}/system/serial-getty$baudrate@.service sed -i -e s/\@BAUDRATE\@/$baudrate/g ${D}${systemd_unitdir}/system/serial-getty$baudrate@.service # enable the service ln -sf ${systemd_unitdir}/system/serial-getty$baudrate@.service \ ${D}${sysconfdir}/systemd/system/getty.target.wants/serial-getty$baudrate@$ttydev.service fi done fi } RDEPENDS_${PN} = "systemd" # This is a machine specific file FILES_${PN} = "${systemd_unitdir}/system/*.service ${sysconfdir}" PACKAGE_ARCH = "${MACHINE_ARCH}" # As this package is tied to systemd, only build it when we're also building systemd. python () { if not oe.utils.contains ('DISTRO_FEATURES', 'systemd', True, False, d): raise bb.parse.SkipPackage("'systemd' not in DISTRO_FEATURES") }