Re: Installer loop on apu6b4

2023-08-02 Thread Ronald Dahlgren
On Wed, Aug 2, 2023 at 9:04 PM Chris Cappuccio wrote: > > This should be an FAQ entry. > > You need to setup the serial console in the boot blocks: > boot> stty com0 115200 > boot> set tty com0 > > Chris That solved the problem. Thank you, Chris. Apologies to the list. > > -- RD

Re: Installer loop on apu6b4

2023-08-02 Thread Chris Cappuccio
Ronald Dahlgren [ronald.dahlg...@gmail.com] wrote: > I have a PC Engines apu6b4 that is acting up during the installation > process. I want to see if this group has any insight before I try an RMA > with the seller. > > entry point at 0x8100100PC Engines apu6 This should be an FAQ

Installer loop on apu6b4

2023-08-02 Thread Ronald Dahlgren
I have a PC Engines apu6b4 that is acting up during the installation process. I want to see if this group has any insight before I try an RMA with the seller. The apu6b4 (https://www.pcengines.ch/apu6b4.htm) runs an AMD processor and has the standard ports. It uses a micro-USB serial port rather

Re: ksh bug or just normal behaviour?

2023-08-02 Thread Thomas Frohwein
On Wed, Aug 02, 2023 at 12:14:51PM +, Thomas Schweikle wrote: > > > Am Mi., 02.Aug..2023 um 13:45:26 schrieb Peter N. M. Hansteen: > > On Wed, Aug 02, 2023 at 11:35:39AM +, Ioan Samarul wrote: > > > Can you please tell me if this is a bug or it is considered normal? > > > > > > $ set -A

Re: Installing openBSD

2023-08-02 Thread Abel Abraham Camarillo Ojeda
On Wed, Aug 2, 2023 at 7:31 AM David Demelier wrote: > On Tue, 2023-08-01 at 01:00 +0800, ykla wrote: > > Actually, I think it's a bug that OpenBSD cannot create EFI > > partitions manually. > > I've installed OpenBSD many times in dualboot with linux (for some > things we can't do right now on

Re: unhibernate failed: original kernel changed

2023-08-02 Thread Mike Larkin
On Tue, Aug 01, 2023 at 07:22:04AM -, Piotr Isajew wrote: > Dnia 31.07.2023 Mike Larkin napisał/a: > > > The message explained exactly what happened. What is unclear? > > I understand the message. What I don't undestand is the reason > for it. The message is due to this comparison not

Re: ksh bug or just normal behaviour?

2023-08-02 Thread Thomas Schweikle
Am Mi., 02.Aug..2023 um 13:45:26 schrieb Peter N. M. Hansteen: On Wed, Aug 02, 2023 at 11:35:39AM +, Ioan Samarul wrote: Can you please tell me if this is a bug or it is considered normal? $ set -A test a b c d e f g h i $ echo ${test[07]} h $ echo ${test[08]} ksh: 08: bad number `08' $

Re: Installing openBSD

2023-08-02 Thread David Demelier
On Tue, 2023-08-01 at 01:00 +0800, ykla wrote: > Actually, I think it's a bug that OpenBSD cannot create EFI > partitions manually. I've installed OpenBSD many times in dualboot with linux (for some things we can't do right now on OpenBSD such as ESP32 development). And my take is to install

Re: ksh bug or just normal behaviour?

2023-08-02 Thread Peter N. M. Hansteen
On Wed, Aug 02, 2023 at 11:35:39AM +, Ioan Samarul wrote: > Can you please tell me if this is a bug or it is considered normal? > > $ set -A test a b c d e f g h i > $ echo ${test[07]} > h > $ echo ${test[08]} > ksh: 08: bad number `08' > $ echo ${test[8]} > i I strongly suspect you stumbled

ksh bug or just normal behaviour?

2023-08-02 Thread Ioan Samarul
Hello to you all! Can you please tell me if this is a bug or it is considered normal? $ set -A test a b c d e f g h i $ echo ${test[07]} h $ echo ${test[08]} ksh: 08: bad number `08' $ echo ${test[8]} i Thank you all!