Re: Missing libraries.

2019-02-11 Thread Janne Johansson
Den mån 11 feb. 2019 kl 06:15 skrev Kihaguru Gathura : > Hi, > Any ideas on how to fix the missing libraries, > www# pkg_add -v mini_sendmail-chroot > Can't install mini_sendmail-chroot-1.3.9 because of libraries > |library c.95.0 not found > | /usr/lib/libc.so.92.6 (system): bad major > It reall

Re: Discuss UEFI settings in arm64.html/INSTALL.arm64

2020-08-24 Thread Janne Johansson
> > > > Diffs below. I posted the arm64.html diff before but it was at the end > > of another thread so it may not have been noticed... > > I'm not necessarily against adding this, but a lot of this information > isn't really OpenBSD-specific and adding text about all the different > quirks of all

Re: vmd support on arm

2021-02-17 Thread Janne Johansson
Den tors 18 feb. 2021 kl 05:24 skrev Fabio Martins < fm+obsd+arm+l...@phosphorusnetworks.com>: > Hi arm, > > Out of curiosity for future projects and being lazy by not installing an > arm image, is vmd supported in armv7/armv8 cpus? > No, vmm is x86(_64) only. > I saw in the 6.8 release a menti

Re: Reliable fs

2022-10-24 Thread Janne Johansson
Den mån 24 okt. 2022 kl 17:37 skrev Jean-François SIMON : > I have an inquiry regarding robust filesystem in a sense that it mostly > always mount > after unclean power off shutdown. Any fs that is mounted readonly would be safe for nasty shutdowns, so one idea would be to try to make many partiti

Re: Allwinner 10

2013-09-09 Thread Janne Johansson
Sending a box or three to the arm devs could actually work. 2013/9/9 Patrick Wildt > Hi, > > a port to the Cubieboard(s) is in progress, which includes Allwinner A10 > and A20. > > Not sure though if and how many changes will be needed for your box. > > \Patrick > > Am 07.09.2013 um 14:38 schri

Re: BeagleBone Black SCADA Worthy?

2013-10-26 Thread Janne Johansson
2013/10/26 Byron Klippert > - Taking into account section 5.6 of the FAQ on custom kernels; will > disabling certain hardware increase the reliability of the system? ie: > in a SCADA application it's unlikely HDMI will be needed. > > The general view from all other platforms is that disabling var

Re: Cubietruck support

2013-12-02 Thread Janne Johansson
I don't think there is a long list of stuff planned to be worked on, the arm guys work on stuff they have, rather than make plans and papers about what the plans should have in what order. If you really desire cubieboard3 support, buy one or more extra and ship to the arm devs, that would probably

Re: OpenBSD on Olinuxino-Lime2

2015-10-20 Thread Janne Johansson
cross-building in order to get the basics up should be doable, not for general stuff or ports. cd /usr/src make cross-tools TARGET=armv7 then cross compiler stuff ends up under /usr/cross/armv7 (make sure you have room to spare in /usr) 2015-10-20 10:35 GMT+02:00 Petr Ročkai : > Hi, > > Alexande

Re: X windows FAIL

2016-09-27 Thread Janne Johansson
2016-09-27 23:28 GMT+02:00 Tuyosi T : > > but X windows does not come . > > > anyway how to start x windows ? > > The nitpicker elders of old awakens to quote the manpage: The X.Org Foundation requests that the following names be used when referring to this software:

Re: Support for ARM9T --- ARMv4T family architecture

2017-02-24 Thread Janne Johansson
There is a lot more to supporting a computer architecture than just the actual CPU. Yes, the cpu must of course have support, but all the chips around it for disk,console,net and how to find where in RAM they are mapped and so on is equally important, so if your device isn't on this list, https://w

rpi3 doesn't want to boot from my usb anymore.

2017-02-27 Thread Janne Johansson
I installed from the miniroot on a SD card to a USB stick (after figuring out that the SD isn't visible inside the bsd.rd kernel) and ran it for a few days. After an upgrade or two, an unfortunate power-off and then new attempts to reinstall, it would not see the USB from the obsd boot prompt any m

Re: aarch64 assembly "hello world"

2025-03-14 Thread Janne Johansson
A working but not simple solution is to make a simple hello.c, and compile it with --save-temps. This means you get a hello.s in there too, and you can build that with cc -O2 -pipe -o hello hello.s and you have a working binary, with the correct ELF sections and everything. It becomes some 5200 b

Re: apple m4 hardware compatibility

2025-04-09 Thread Janne Johansson
Den ons 9 apr. 2025 kl 23:35 skrev : > > Nuts. Do you mean that the arm port won't run on an M4 processor in general? > Why is that, out of curiosity? Running on a new arch or a new device is so much more than just being able to compile code for the cpu. If you can't find the console device, the

Re: aarch64 assembly "hello world"

2025-03-15 Thread Janne Johansson
alls\", \"\",@progbits\n" " .p2align 2\n" " .long _w, 4\n" " .long _x, 1\n" " .popsection\n"); and compile line would be something like: cc -c hello.c && ld -e start --eh-frame-hdr -Bstatic -o hello hello.o && ./he

Re: aarch64 assembly "hello world"

2025-03-15 Thread Janne Johansson
This might also help: https://flak.tedunangst.com/post/dude-where-are-your-syscalls Den fre 14 mars 2025 kl 11:47 skrev Computer Planet : > > Hi guys! > Please, could someone tell me how to print a very simple "Hello, world!" in > assembly for aarch64? > Thanks for reply. > -- May the most sig

Re: aarch64 assembly "hello world"

2025-03-15 Thread Janne Johansson
Den lör 15 mars 2025 kl 09:17 skrev Janne Johansson : > > This might also help: > https://flak.tedunangst.com/post/dude-where-are-your-syscalls > And the text hints at it, but the exact trick to figure out the offsets to put in the "what" ELF section is to compile and