-
toasterson
Thats step one I guess. I eventuelly also need to get things into the illumos buildsystem and not hayashis
-
toasterson
but modifying hayashis system first is a good idea
-
dangergrrl
I am having trouble with ipv6 again, at least it's not a kernel panic this time :)
-
danmcd
I can't recall the IPv6 panic... did we fix it (if so, cool, if not do you have a vmdump.N file you can share?)?
-
danmcd
As for now, what's happening? (Pardon latency & jitter 'cause it's a release-week-Wed at month's beginning so it's a chock-full-of-meetings day).
-
dangergrrl
oh, the ipv6 panic was fixed within the day and I almost learned the kernel debugger in the process but it's been months so I've mostly forgotten :)
-
dangergrrl
I can't get ping to work to an ipv6 address and it looks like my routing table is the problem
-
dangergrrl
wgetpoaste
-
dangergrrl
oops]
-
dangergrrl
-
dangergrrl
ifconfig -a
-
dangergrrl
sigh]
-
dangergrrl
-
dangergrrl
rge0:3 has my currently valid ipv6 addr
-
dangergrrl
I'm betting it will work if i reboot and don't have yesterday's addresses still in the kernel
-
danmcd
rge0:3 has a different /64 prefix so it should work, but I can imagine source-address selection takes it rge0:2 first.
-
danmcd
Try this:
-
danmcd
ifconfig rge0:2 down
-
danmcd
That'll take that IPv6 offline.
-
danmcd
It'll save you a reboot until next reboot.
-
danmcd
If you snoop rge0 for IPv6 pings, you can confirm a bad source address selection on those default-route pings (if you haven't already down-ed rge0:2).
-
gitomat
[illumos-gate] 14928 pcieadm rc event collector association decoding -- Robert Mustacchi <rm⊙fo>
-
dangergrrl
thanks, I had already started a reboot and that fixed it :) next time I know to try taking the extra interface down first though, tyvm
-
dangergrrl
it looks like this could turn into an ongoing problem since my ipv6 changes on a near daily basis when i get a new ipv4
-
dangergrrl
i might have to write a script
-
dangergrrl
I do build Illumos on that machine but I also serve some personal web content there for clients to look at.
-
dangergrrl
So, I'm actually working on getting both of my domains to show up on my dyndns provider with both ipv4 and ipv6 addresses
-
gitomat
[illumos-gate] 14951 fix ::sysregs under mdb-bhyve on AMD -- Patrick Mooney <pmooney⊙pc>
-
gitomat
[illumos-gate] 14901 remove remaining a.out support from sgs -- Richard Lowe <richlowe⊙rn>
-
toasterson
Ok, now I have a gnu Makefile question. Does anybody know if... (full message at
libera.ems.host/_matrix/media/r0/do…badd3e5607df27f2cb379d09af66851e7f3)
-
toasterson
modulo missing endif ofcourse
-
toasterson
checkmake says yes gnu make says `make: Fatal error in reader: ../Makefile.master, line 38: Unexpected end of line seen`
-
richlowe
I believe you just have 'ifeq' and have to check it against an empty string
-
richlowe
but I don't know why I think that, what you want to do works for me
-
richlowe
-
richlowe
I don't know what you're doing -- or why you're doing it -- but if this is for ARM, it's almost certainly easier to port our make to your host machine than to port our build, properly, to gmake.
-
richlowe
I know andyjs and some other people had some magic that ports our build improperly to gmake, too, which might help you in the very short term
-
richlowe
but I believe joerg took sun make and did... joerg things to it, which should get you a long way.
-
toasterson
richlowe: it's arm. So the situation right now is Hyashi has ported our whole build to gmake. And I want to build ontop of OI. I got our cross toolchain compiled and want to use that to compile Hyashis build system. It is rebased on latest illumos-gate as of 4 days ago but all gmake.
-
toasterson
I figured I could get away by switching some paths to host tools which linux needs to compile and then use OI to build the existing build. but for whatever reason gmake on OI does not like that line.
-
toasterson
richlowe: i think somehow make is being invoked but I haven't found out how, there is a variable $(MAKE) but that shows gmake in the line before...
-
toasterson
ah found where make gets called
-
toasterson
it's a hardcoded make in the same file as $(MAKE), well that solves the problem :)
-
toasterson
now it's happy :)