[bug #49024] gnumach Git repo includes GPLv3+ material but omits GPLv3 text

2018-11-25 Thread Samuel Thibault
Update of bug #49024 (project hurd): Status:None => Fixed Open/Closed:Open => Closed Summary: gnumach links with GPLv3+ material but omits GPLv3 text => gnumach Git repo inclu

Re: [PATCH] Add ACPI translator and shutdown RPC that turns off pc

2018-11-25 Thread Kalle Olavi Niemitalo
Damien Zammit writes: > Surely S5 always has to exist, how else do you power off the machine? There could perhaps be an Else branch with different values.

[gnumach PATCH] Add GPLv3 license text

2018-11-25 Thread Kalle Olavi Niemitalo
To help people satisfy the license when they convey clones of the gnumach Git repository, in which gitlog-to-changelog and some deleted files are licensed under GPLv3-or-later. A normal build does not use the GPLv3-or-later files. "make dist" runs gitlog-to-changelog but does not copy it to gnuma

Re: [PATCH] Add ACPI translator and shutdown RPC that turns off pc

2018-11-25 Thread Damien Zammit
Hi Kalle, On 25/11/18 19:58, Kalle Olavi Niemitalo wrote: > Perhaps this code should first check whether the SCI_EN bit is > already set, as described in ACPI 5.0 section 4.8.2.5 > "Legacy/ACPI Select and the SCI Interrupt", and skip the outb if > so. Section 5.2.9 "Fixed ACPI Description Table (

[bug #49024] gnumach links with GPLv3+ material but omits GPLv3 text

2018-11-25 Thread Kalle Olavi Niemitalo
Follow-up Comment #3, bug #49024 (project hurd): The gsync files were relicensed in commit c8e687cb8a6ba8f278c58bf78126f843ceb292bb on 2016-10-31, and the ACPI files were deleted in commit c387012395ec83dbdad5e9a1e31f3a214337d064 on 2016-11-06. gitlog-to-changelog has not been relicensed nor dele

Re: [PATCH] Add ACPI translator and shutdown RPC that turns off pc

2018-11-25 Thread Kalle Olavi Niemitalo
Damien Zammit writes: > + /* Enable ACPI */ > + outb(acpi_en, smi_cmd); > + for (i = 0; i < 300; i++) > + { > +if ( (inw(pm1a_ctl) & SCI_EN) == SCI_EN) > + break; > + } Perhaps this code should first check whether the SCI_EN bit is already set, as described in ACPI 5.0 section 4.8.