Merge branch 'master' into coreboot_talos_2

pull/61/head
James Kulina 2 days ago
commit fb964759eb

@ -1,6 +1,8 @@
#!Makefile

HUGO=hugo-extended
HUGO_NUMWORKERMULTIPLIER=64
HUGO_MEMORYLIMIT=32
BUILDNAME:=$(shell git rev-parse --abbrev-ref HEAD)
BASEURL:=$(shell basename `pwd` | sed 's/_/./g')
BRANCHES:=$(shell git branch -r | sed 's/origin\///g' | sed 's/pr\//pr-/' | sed '/HEAD/d' | sed '/master/d' | sed '/main/d')
@ -28,7 +30,7 @@ build-staging:

.PHONY: test
test: clean
$(HUGO) --environment=development --minify --templateMetrics --templateMetricsHints --memstats hug_mem_log
HUGO_NUMWORKERMULTIPLIER=$(HUGO_NUMWORKERMULTIPLIER) HUGO_MEMORYLIMIT=$(HUGO_MEMORYLIMIT) $(HUGO) --environment=development --minify --printMemoryUsage --printPathWarnings --printUnusedTemplates --templateMetrics --templateMetricsHints

.PHONY: draft
draft:

@ -22,6 +22,14 @@ enableEmoji = true
noJSConfigInAssets = false
# useResourceCacheWhen = 'always'
writeStats = true
[build.buildStats]
enable = true
disableClasses = false
disableIDs = false
disableTags = false
[[build.cacheBusters]]
source = '(postcss|tailwind)\.config\.js'
target = '(css|styles|scss|sass)'

[outputs]
home = [ "HTML" , "RSS" ]
@ -141,20 +149,20 @@ enableEmoji = true
[caches]
[caches.assets]
dir = ':resourceDir/_gen'
maxAge = "5m"
maxAge = -1
[caches.getcsv]
dir = ':cacheDir/:project'
maxAge = "5m"
maxAge = -1
[caches.getjson]
dir = ':cacheDir/:project'
maxAge = "5m"
dir = ':cacheDir/:project'
maxAge = -1
ttl = 300
[caches.getresource]
dir = ':cacheDir/:project'
maxAge = "5m"
maxAge = -1
[caches.images]
dir = ':resourceDir/_gen'
maxAge ="5m"
maxAge = -1
[caches.modules]
dir = ':cacheDir/modules'
maxAge = "5m"
maxAge = -1

@ -0,0 +1,25 @@
---
title: "IBM TechXchange 2024"
eventdates:
from: 2024-10-21
eventplace: San Jose, CA
register: https://reg.tools.ibm.com/flow/ibm/techxchange24/reg/
schedule: https://reg.tools.ibm.com/flow/ibm/techxchange24/sessioncatalog/page/sessioncatalog?tab.sessioncatalogtabs=option_1601178495160
date: 2024-10-17
draft: false
---

The OpenPOWER Foundation is participating at [IBM TechXchange 2024 event](https://www.ibm.com/community/ibm-techxchange-conference/). We will be giving a talk on in the OSS track with our member company [Solid Silicon](https://solidsilicon.com/desktop/index.html), who is developing next generation POWER processors.

Come to our talk on Monday Oct. 21st.
[Open Comuting Built on OpenPOWER](https://reg.tools.ibm.com/flow/ibm/techxchange24/sessioncatalog/page/sessioncatalog?search=open%20source&tab.sessioncatalogtabs=option_1601178495160#:~:text=computing%20built%20on-,OpenPOWER,-%5B4158%5D)

OpenPOWER will also be showcasing within the IBM POWER booth. Please stop by and say Hello!








@ -2,7 +2,7 @@
title: "Instruction Set Architecture"
group: isa
publicreview: false
feedback:
feedbackprocess:
- title: Request For Change Feedback for "non ISA TWG members"
description: "This feedback process uses the RFC method, which we divide in 3 types : _minor changes_, _formal proposal_, or _RFC_."
url: /isarfc/

@ -0,0 +1,32 @@
---
title: PowerVM on POWER Architecture Reference
group: IBM
tags:
- powervm
- hypervisor
- software
- linux
- unix
- operatingsystem
- distribution
- architecture
feedback:
queue: PAPR
date: 2024-10-28
draft: false
---


## Power Architecture Platform Requirements. ##

The purpose of this document is to detail a stable platform architecture to be used by:

- Platforms defined by the POWER ISA Specification that desire to be compatible with operating systems that run on the PowerVM Hypervisor.
- Operating systems that desire to be compatible with running on the PowerVM Hypervisor.

This architecture specification provides a comprehensive computer system platform-to-software interface definition.
It documents minimum system requirements, enabling the development and porting of software to a range of compatible industry-standard computer systems from workstations through servers based on the PowerISA.


This document is maintained by IBM and is made available through the OpenPOWER Foundation to support the work of the OpenPOWER Foundation and open source communities in supporting the POWER platform.
Comments, questions, and suggestions can be submitted through the OpenPOWER Foundation Request Tracker.

@ -0,0 +1,4 @@
versions:
- number: "1.0.0"
date: 2024-1-11
download:

@ -0,0 +1,55 @@
<script>
var formname = "form.contactForm";
var submiturl = "{{ .Site.Params.forms.contact.URI }}";
{{ if .Site.Params.forms.contact.goal }}
var goal = "{{ .Site.Params.forms.contact.goal }}";
{{ end }}
{{ $feedbackqueue := .Param "feedback.queue" }}
</script>
<section id="contact">
<div class="container"><div class="row wow fadeInUp">
<div class="col-lg-12 col-md-12"><div class="form">
<div id="sendmessage">Your message has been sent. Thank you!</div>
<div id="errormessage">Error</div>
<form role="form" name="contactForm" class="contactForm" id="contactForm" action="" method="post">
<div class="form-row">
<div class="form-group col-lg-12">
<input type="text" name="name" class="form-control" id="name" placeholder="Your Name" data-rule="minlen:4" data-msg="Please enter at least 4 characters" />
<div class="validation"></div>
</div>
</div>
<div class="form-row">
<div class="form-group col-lg-12">
<input type="email" class="form-control" name="email" id="email" placeholder="Your Email" data-rule="email" data-msg="Please enter a valid email address" />
<div class="validation"></div>
</div>
</div>
<div class="form-row">
<div class="form-group col-lg-12">
<input type="text" class="form-control" name="subject" id="subject" placeholder="Subject" data-rule="minlen:4" data-msg="Please enter at least 8 characters" />
<div class="validation"></div>
</div>
</div>
<div class="form-row">
<div class="form-group col-lg-12">
<textarea class="form-control" name="message" rows="5" data-rule="required" data-msg="Please write something for us" placeholder="Message"></textarea>
<div class="validation"></div>
</div>
</div>
<div class="form-row">
<div class="form-group col-lg-12">
By submitting this form, I acknowledge that my information is subject
to the <a href="{{ "/policy/privacy" | relURL }}">OpenPOWER Foundation's Privacy Policy</a>.
</div>
</div>
<div class="form-row">
<div class="form-group col-lg-12 text-center">
<input type="hidden" name="contact" value="{{ $feedbackqueue }}" />
<input type="hidden" name="url" value="{{ $.Page.RelPermalink | absURL }}" />
<button class="btn btn-outline-primary mb-4 mt-4" type="submit" title="Send Message">Send Message</button>
</div>
</div>
</form>
</div></div>
</div></div>
</section>

@ -38,14 +38,17 @@
<div class="col-lg-3"></div>
<div class="col-lg-6 content">
<div><p>{{ .Content }}</p></div>
{{ if .Param "feedback"}}
{{ range $feedback := (.Param "feedback") }}
<a href="{{ $feedback.url }}"><div class="feedback btn btn-outline-primary">
<h3>{{ $feedback.title }}</h3>
{{ $feedback.description | markdownify }}
{{ if .Param "feedbackprocess"}}
{{ range $feedbackprocess := (.Param "feedbackprocess") }}
<a href="{{ $feedbackprocess.url }}"><div class="feedback btn btn-outline-primary">
<h3>{{ $feedbackprocess.title }}</h3>
{{ $feedbackprocess.description | markdownify }}
</div></a><br><br>
{{ end }}
{{ end }}
{{ if .Param "feedback" }}
{{ partial "feedbackform.html" . }}
{{ end }}
</div>
<div class="col-lg-3">
{{ if .Param "group" }}

Loading…
Cancel
Save