linux-qubasis

linux oasis port as a qubes template

git clone https://9o.is/git/linux-qubasis.git

commit edf6cc845722bd997e095f8e00f004f09ec4b587
parent 0eda8d2f06d06f6a9eef5349ca93f0910ea002dd
Author: Jul <jul@9o.is>
Date:   Sun, 19 Oct 2025 14:15:21 -0400

fix VIS_PATH ordering

Diffstat:
Apkg/vis/patch/0004-fix-VIS_PATH-load-ordering.patch | 33+++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+), 0 deletions(-)

diff --git a/pkg/vis/patch/0004-fix-VIS_PATH-load-ordering.patch b/pkg/vis/patch/0004-fix-VIS_PATH-load-ordering.patch @@ -0,0 +1,33 @@ +From 35da55ed065b50549d44d42bc4acbe5779c33a20 Mon Sep 17 00:00:00 2001 +From: Jul <jul@qh.is> +Date: Sun, 19 Oct 2025 14:04:34 -0400 +Subject: [PATCH] fix VIS_PATH load ordering + +--- + vis-lua.c | 3 +-- + 1 file changed, 1 insertion(+), 2 deletions(-) + +diff --git a/vis-lua.c b/vis-lua.c +index f7e9001..8b3faaf 100644 +--- a/vis-lua.c ++++ b/vis-lua.c +@@ -3170,6 +3170,7 @@ static void vis_lua_init(Vis *vis) { + */ + char path[PATH_MAX]; + ++ vis_lua_path_add(vis, getenv("VIS_PATH")); + vis_lua_path_add(vis, VIS_PATH); + + /* try to get users home directory */ +@@ -3207,8 +3208,6 @@ static void vis_lua_init(Vis *vis) { + } + } + +- vis_lua_path_add(vis, getenv("VIS_PATH")); +- + /* table in registry to lookup object type, stores metatable -> type mapping */ + lua_newtable(L); + lua_setfield(L, LUA_REGISTRYINDEX, "vis.types"); +-- +2.51.0 +