Skip to content
Snippets Groups Projects
Commit 7be58a5d authored by Hannes Feldt's avatar Hannes Feldt
Browse files

bump

parent 48b3a769
No related branches found
No related tags found
3 merge requests!15Resolve L2SS-2305 "Add hawkbit support",!8Work in progress adding publish distro,!4L2SS-2305: Add Hawkbit support
Pipeline #121375 skipped
...@@ -97,7 +97,7 @@ local_conf_header: ...@@ -97,7 +97,7 @@ local_conf_header:
ENABLE_DWC2_HOST = "1" ENABLE_DWC2_HOST = "1"
CMDLINE_ROOT_PARTITION = "/dev/mmcblk0p3" CMDLINE_ROOT_PARTITION = "/dev/mmcblk0p3"
KERNEL_MODULE_AUTOLOAD:rpi += "i2c-dev i2c-bcm2708 i2c-gpio" KERNEL_MODULE_AUTOLOAD:rpi += "i2c-dev i2c-bcm2708 i2c-gpio"
RPI_EXTRA_CONFIG = "dtoverlay=disable-bt\ndtoverlay=disable-wifi\ndtoverlay=i2c-gpio,bus=3,i2c_gpio_delay_us=2,i2c_gpio_sda=17,i2c_gpio_scl=27\ndtoverlay=i2c-gpio,bus=4,i2c_gpio_delay_us=2,i2c_gpio_sda=10,i2c_gpio_scl=9\ndtoverlay=i2c-gpio,bus=5,i2c_gpio_delay_us=2,i2c_gpio_sda=5,i2c_gpio_scl=6\ndtparam=i2c_vc=on" RPI_EXTRA_CONFIG = "dtoverlay=disable-bt\ndtoverlay=disable-wifi\ndtoverlay=halibut\ndtoverlay=i2c-gpio,bus=3,i2c_gpio_delay_us=2,i2c_gpio_sda=17,i2c_gpio_scl=27\ndtoverlay=i2c-gpio,bus=4,i2c_gpio_delay_us=2,i2c_gpio_sda=10,i2c_gpio_scl=9\ndtoverlay=i2c-gpio,bus=5,i2c_gpio_delay_us=2,i2c_gpio_sda=5,i2c_gpio_scl=6\ndtparam=i2c_vc=on"
LICENSE_FLAGS_ACCEPTED = "synaptics-killswitch" LICENSE_FLAGS_ACCEPTED = "synaptics-killswitch"
WKS_FILE = "image-halibutpi.wks" WKS_FILE = "image-halibutpi.wks"
SWUPDATE_IMAGES = "core-image-full-cmdline" SWUPDATE_IMAGES = "core-image-full-cmdline"
......
CONFIG_GPIOLIB=y
CONFIG_GPIO_AGGREGATOR=y
\ No newline at end of file
...@@ -2,6 +2,7 @@ FILESEXTRAPATHS:prepend := "${THISDIR}/files:" ...@@ -2,6 +2,7 @@ FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
SRC_URI:append := " \ SRC_URI:append := " \
file://dts/overlays/halibut-overlay.dts;subdir=git/arch/${ARCH}/boot \ file://dts/overlays/halibut-overlay.dts;subdir=git/arch/${ARCH}/boot \
file://halibut-pi.cfg \
" "
KERNEL_DEVICETREE:append := " \ KERNEL_DEVICETREE:append := " \
......
ACTION=="add", KERNEL=="lmp", SUBSYSTEM=="platform", ATTR{driver_override}="gpio-aggregator", RUN+="/bin/bash -c 'echo $kernel > /sys/bus/platform/drivers/gpio-aggregator/bind'"
...@@ -10,15 +10,17 @@ BB_STRICT_CHECKSUM = "0" ...@@ -10,15 +10,17 @@ BB_STRICT_CHECKSUM = "0"
# http checkout not working atm. rev should be removed # http checkout not working atm. rev should be removed
#SRCREV = "${AUTOREV}" #SRCREV = "${AUTOREV}"
#PV = "0.0.1+git${SRCPV}" #PV = "0.0.1+git${SRCPV}"
FILESEXTRAPATHS:prepend := "${THISDIR}/files:" FILESEXTRAPATHS:prepend := "${THISDIR}:${THISDIR}/files:"
SRC_URI = " \ SRC_URI = " \
git://git.astron.nl/lofar2.0/halibut-ipconfig.git;branch=L2SS-2336-set_ip;rev=c509e2384c55242bbe7980994210cee58c943b58 \ git://git.astron.nl/lofar2.0/halibut-ipconfig.git;branch=L2SS-2336-set_ip;rev=84c7556e07848927b727e1701f21e18b3f3934fe \
file://files/lofar.rules \
" "
S = "${WORKDIR}/git" S = "${WORKDIR}/git"
FILES:${PN} += "\ FILES:${PN} += "\
${systemd_unitdir}/system/*.service \ ${systemd_unitdir}/system/*.service \
${systemd_unitdir}/system/multi-user.target.wants/halibut-ipconfig.service \ ${systemd_unitdir}/system/multi-user.target.wants/halibut-ipconfig.service \
/etc/udev/rules.d/lofar.rules \
" "
DEPENDS += "python3-setuptools-scm-native" DEPENDS += "python3-setuptools-scm-native"
...@@ -48,4 +50,7 @@ do_install:append () { ...@@ -48,4 +50,7 @@ do_install:append () {
install -d ${D}${systemd_unitdir}/system/multi-user.target.wants install -d ${D}${systemd_unitdir}/system/multi-user.target.wants
ln -sf ../halibut-ipconfig.service ${D}${systemd_unitdir}/system/multi-user.target.wants/halibut-ipconfig.service ln -sf ../halibut-ipconfig.service ${D}${systemd_unitdir}/system/multi-user.target.wants/halibut-ipconfig.service
echo "install LOFAR udev rules"
install -d ${D}/etc/udev/rules.d
install -m 0666 ${WORKDIR}/files/lofar.rules ${D}/etc/udev/rules.d/lofar.rules
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment