mirror of
https://github.com/hermitcore/libhermit.git
synced 2025-03-09 00:00:03 +01:00
rename temporary files
This commit is contained in:
parent
2cd1580fce
commit
1f2e2ac657
2 changed files with 5 additions and 3 deletions
2
hermit/.gitignore
vendored
2
hermit/.gitignore
vendored
|
@ -6,6 +6,8 @@
|
|||
*.elf32
|
||||
*.sym
|
||||
*.bin
|
||||
initrd.cpio
|
||||
qemu-vlan0.pcap
|
||||
autom4te.cache
|
||||
documentation/html/
|
||||
include/hermit/config.inc
|
||||
|
|
|
@ -120,13 +120,13 @@ veryclean: clean
|
|||
@echo Very cleaned
|
||||
|
||||
ramfs: hermit.elf
|
||||
touch myinitrd.cpio
|
||||
touch initrd.cpio
|
||||
cp hermit.bin $(INITRAMFS)
|
||||
cd $(INITRAMFS); \
|
||||
find . -print0 | cpio --null -ov --format=newc > $(TOPDIR)/myinitrd.cpio
|
||||
find . -print0 | cpio --null -ov --format=newc > $(TOPDIR)/initrd.cpio
|
||||
|
||||
qemu:
|
||||
$(QEMU) -smp 8 -kernel ../linux/arch/x86/boot/bzImage -initrd myinitrd.cpio -append "root=/dev/ram0 rootfstype=ramfs init=init console=ttyS0 maxcpus=1" -net nic,model=rtl8139 -net user -net dump -nographic -monitor telnet:127.0.0.1:1234,server,nowait -m 8G #-numa node,nodeid=0,cpus=0-3 -numa node,nodeid=1,cpus=4-7
|
||||
$(QEMU) -smp 8 -kernel ../linux/arch/x86/boot/bzImage -initrd initrd.cpio -append "root=/dev/ram0 rootfstype=ramfs init=init console=ttyS0 maxcpus=1" -net nic,model=rtl8139 -net user -net dump -nographic -monitor telnet:127.0.0.1:1234,server,nowait -m 8G #-numa node,nodeid=0,cpus=0-3 -numa node,nodeid=1,cpus=4-7
|
||||
|
||||
doc:
|
||||
@echo Create documentation...
|
||||
|
|
Loading…
Add table
Reference in a new issue