meta-google: gbmc-ncsi-config: Migrate to common RA handler
This gets rid of our bespoke RA handling code and uses the common RA
code for both RA processes on the NCSI port.
Tested: Ran on a NCSI CN and verified that RAs are still parsed and the
addresses / hostname can still be found with the smartnic WA executed.
Change-Id: Ia9667f9b6ada2668f2096abbced6d8571a686e49
Signed-off-by: William A. Kennington III <wak@google.com>
diff --git a/meta-google/recipes-google/ncsi/ncsid_git.bb b/meta-google/recipes-google/ncsi/ncsid_git.bb
index 6fad50a..d746c27 100644
--- a/meta-google/recipes-google/ncsi/ncsid_git.bb
+++ b/meta-google/recipes-google/ncsi/ncsid_git.bb
@@ -14,7 +14,6 @@
ncsid@.service \
nic-hostful@.target \
nic-hostless@.target \
- update-ra-gw@.service \
"
DEPENDS += " \
@@ -31,3 +30,9 @@
ndisc6-rdisc6 \
systemd \
"
+
+# TODO: Remove when package is bumped to formally delete this service
+do_install:append() {
+ rm ${D}${systemd_system_unitdir}/update-ra-gw@.service
+ rm ${D}${libexecdir}/update_ra_gw.sh
+}