Displaying 20 results from an estimated 20000 matches similar to: "[PATCH] Memory allocator replaced for Mini-os"
2006 Aug 29
10
mini-os: gnttab.c does not compile
Hello,
sorry to bother you with this: while trying to compile mini-os from
xen-unstable.hg, I noticed that compilation failed like this:
gcc -fno-builtin -Wall -Werror -Wredundant-decls -Wno-format
-Wstrict-prototypes -Wnested-externs -Wpointer-arith -Winline -m32
-march=i686 -g -Iinclude -Iinclude/x86 -Iinclude/x86/x86_32 -c gnttab.c
-o gnttab.o
gnttab.c: In Funktion »init_gnttab«:
2006 Jul 25
0
mini-os on ia64
Hi,
I want to port the mini-os to the ia64 architecture.
Therefore I think a restructure of the code is needed to have architecture
specific sub-directories under extras/mini-os,
perhaps:
mini-os/
x86
ia64
....
mini-os/include/
x86
ia64
...
Has anybody thought of such differentiation? Is there a maintainer of
mini-os - I saw lots of patchs from Grzegorz Milos?
What do you think?
2006 May 01
6
[PATCH] Use stddef.h in Mini-OS to define size_t
Please patch Mini-OS so that it uses stddef.h to define size_t and
NULL. This problem fixes errors that occur when linking Mini-OS with
ANSI standard code that uses stddef.h.
John
diff -ur oxen-3.0-testing/extras/mini-os/include/lib.h nxen-3.0-testing/extras/mini-os/include/lib.h
--- oxen-3.0-testing/extras/mini-os/include/lib.h 2006-04-14 22:21:55.000000000 -0400
+++
2012 Nov 26
13
[PATCH 0 of 4] Minios improvements for app development
This patch series contains a set of patches making minios rather easier
to use, from an application development point of view.
Overview of patches:
1 Command line argument parsing support, from Xen.
2 Weak console handler function.
3 Build system tweaks for application directories.
4 Trailing whitespace cleanup. (because it is very messy)
Patch 4 is likely to be more controversial than
2006 Jul 13
0
Re: Xen Roadmap proposal and Mini-OS C library
Ian,
Thank you for your detailed report.
> As a user space application, Qemu can''t run in the stub domain
> directly, but requires an operating system kernel. The neatest way of
> doing this would be to link qemu against `minios'', which is
> effectively a library operating system for just this purpose. Since
> minios makes use of a broad range of libc calls, it
2005 Sep 07
0
[PATCH] mini-os implementation of xenbus, some 64bit fixes
This patch ports the Linux implementation of xenbus, in order to do that
very simple threading support is introduced. Apart of that numerous
fixes for 64 bit are included. Mini-os now compiles (for 64bit) but
requires memory management and threading fixes before it works as well
as 32bit version.
Gregor
_______________________________________________
Xen-devel mailing list
2006 Oct 27
0
[PATCH]mini-os: handle start_info_t pointer
Hi Gregor,
on ia64 the start_info_t pointer is stored within shared_info_t structure.
So it makes sense to initialize the pointer within arch_init(), which is
different from x86.
With this patch the &si is given to arch_init().
Please have a look!
Thanks.
Dietmar.
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
2006 May 11
11
[PATCH] Integrating applications into Mini-OS
I sent this patch directly to Gregor, and neglected to CC this list.
Sorry about that.
I''d like to make it so that there is no need to modify any Mini-OS
source files when extending it with an application. All that is
required is a change to Makefile, and a small change to kernel.c,
printf.c, and string.c. I have enclosed the patch.
With this patch, one could write an application in a
2007 Mar 08
3
Mini-OS: new_pt_frame fails
Hello,
as some might have read in my previous postings, I have a Mini-OS dom0
that constructs a Mini-OS domU on x86 xen-3.0.4-testing. As the memory
layout my Dom0 builds does not guarantee, that pages the DomU Mini-OS
tries to
use as page tables are mapped to existing memory, I changed new_pt_frame
in arch/x86/mm.c in the following way:
The pt_pfn is mapped R/W, then it is zeroed by a
2007 Nov 26
0
[PATCH] [Mini-OS] Make gnttab allocation/free safe
Add a semaphore to protect gnttab_list from exhaustion, and disable
callbacks during allocation/free. Fix the network frontend accordingly.
Signed-off-by: Samuel Thibault <samuel.thibault@citrix.com>
diff -r bb961bda7eff extras/mini-os/gnttab.c
--- a/extras/mini-os/gnttab.c Sun Nov 25 21:24:48 2007 +0000
+++ b/extras/mini-os/gnttab.c Mon Nov 26 11:50:31 2007 +0000
@@ -18,6 +18,7 @@
2007 Feb 15
2
Mapping foreign frames from dom0
Hello,
I am hacking on a Mini-OS that is able to run as domain 0 and is able to
start a guest (another Mini-OS for now). I was able to get a memory
allocated to the guest and am now trying to build its pagetable and
after that copy the kernel to the right places. The problem is:
Given a machine frame number from a memory frame of the guest, how do I
conceptionally map this into
2016 Jul 12
0
Hardware Support of CentOS 6: Mini-PC
On Tue, 12 Jul 2016 10:15, Walter H. wrote:
>
> Hello,
>
> can CentOS 6.8 be run on a mini-PC like this?
> https://www.zotac.com/product/mini_pcs/zbox-ci323-nano
>
> would like to configure this as a Firewall, and this should be instead of
> my router (integratet firewall, NAT) and wlan-ap
>
> Thanks,
> Walter
Well, it's a "Braswell" gen cpu (Intel
2016 Jul 12
2
Hardware Support of CentOS 6: Mini-PC
On Tue, July 12, 2016 10:36, Yamaban wrote:
> On Tue, 12 Jul 2016 10:15, Walter H. wrote:
>>
>> Hello,
>>
>> can CentOS 6.8 be run on a mini-PC like this?
>> https://www.zotac.com/product/mini_pcs/zbox-ci323-nano
>>
>> would like to configure this as a Firewall, and this should be instead
>> of
>> my router (integratet firewall, NAT) and
2012 Dec 21
0
mini-os: Notify shutdown through weak function call instead of wake queue
To allow for more flexibility, this notifies domain shutdown through a
function rather than a wake queue, to let the application use a wake
queue only if it wishes.
Signed-off-by: Samuel Thibault <samuel.thibaut@ens-lyon.org>
diff -r 090cc3e20d3e extras/mini-os/include/kernel.h
--- a/extras/mini-os/include/kernel.h Wed Dec 19 16:04:50 2012 +0000
+++ b/extras/mini-os/include/kernel.h Fri
2013 Apr 17
1
pthreads for mini-os ?
Is there any support for x86_64 pthreads for mini-OS ?
Does the current newlib contains a functional implementation of pthreads ?
--
Karim Allah Ahmed.
LinkedIn <http://eg.linkedin.com/pub/karim-allah-ahmed/13/829/550/>
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel
2007 Nov 15
0
Mini-OS problem
Hey guys,
having some trouble getting Mini-OS to start up. I have xen 3.1 installed and am running dom0 fine. I make the Mini-OS directory and then do the following:
root@localhost mini-os]# xm create domain_config -c
Using config file "./domain_config".
Error: Kernel image does not exist: /home/mcleanap/l4/project/xen-3.0.4_1-src/extras/mini-os/mini-os.elf
The file does exist, and
2010 Aug 25
0
[PATCH 0/7] vtpm Mini-Os domain and vTPM stability fixes
The following are a set of patches to run the berlios tpm emulator
0.6.1 in a mini-os domain, called vtpm-stubdom. Documentation on how to
use this domain is located at stubdom/vtpm/README.
The following are a series of patches that enable this domain and also
add significant stability improvements to the entire vTPM subsystem,
including the original method of using vtpmd as a process.
2013 May 09
4
[PATCH] mini-os: eliminate duplicated definition of spin_unlock_wait
Signed-off-by: Chen Baozi <baozich@gmail.com>
---
extras/mini-os/include/spinlock.h | 2 +-
extras/mini-os/include/x86/arch_spinlock.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/extras/mini-os/include/spinlock.h b/extras/mini-os/include/spinlock.h
index 70cf20f..6604e3c 100644
--- a/extras/mini-os/include/spinlock.h
+++
2006 Jun 06
2
Grant tables and/or network for mini-os
hi,
has anyone attempted to add grant tables, blockfront or netfront
support to mini-os recently?
Jacob
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
2007 Nov 23
0
[PATCH] [Mini-OS] Add init_SEMAPHORE
Add init_SEMAPHORE() to dynamically initialize semaphores.
Signed-off-by: Samuel Thibault <samuel.thibault@citrix.com>
diff -r f2711b7eae95 -r 36bf1e737b87 extras/mini-os/include/semaphore.h
--- a/extras/mini-os/include/semaphore.h Thu Nov 22 19:55:42 2007 +0000
+++ b/extras/mini-os/include/semaphore.h Fri Nov 23 13:21:02 2007 +0000
@@ -41,11 +41,13 @@
#define DECLARE_MUTEX_LOCKED(name)