8000 Upgrade lkvm to fix a 9pfs bug by xelatex · Pull Request #1918 · rkt/rkt · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Feb 24, 2020. It is now read-only.

Upgrade lkvm to fix a 9pfs bug #1918

Merged
merged 1 commit into from
Jan 7, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stage1/usr_from_kvm/lkvm.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ LKVM_BINARY := $(LKVM_SRCDIR)/lkvm-static
LKVM_ACI_BINARY := $(S1_RF_ACIROOTFSDIR)/lkvm
LKVM_GIT := https://kernel.googlesource.com/pub/scm/linux/kernel/git/will/kvmtool
# just last published version (for reproducible builds), not for any other reason
LKVM_VERSION := efcf862611f2498d7b500e46a73d8a008e04325f
LKVM_VERSION := 3c8aec9e2b5066412390559629dabeb7816ee8f2

LKVM_STUFFDIR := $(MK_SRCDIR)/lkvm
LKVM_PATCHESDIR := $(LKVM_STUFFDIR)/patches
Expand Down
4 changes: 2 additions & 2 deletions stage1/usr_from_kvm/lkvm/patches/terminal_late_fix.patch
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ diff --git a/term.c b/term.c
index 9763211..dec0d79 100644
--- a/term.c
+++ b/term.c
@@ -202,10 +202,16 @@ int term_init(struct kvm *kvm)
@@ -202,10 +202,16 @@ static int term_init(struct kvm *kvm)

return 0;
}
Expand All @@ -14,7 +14,7 @@ index 9763211..dec0d79 100644
+//dev_init(term_init);
+firmware_init(term_init);

int term_exit(struct kvm *kvm)
static int term_exit(struct kvm *kvm)
{
return 0;
}
Expand Down
0