Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
sleepy-monax committed Jul 28, 2024
1 parent ab2eb72 commit 4f17a11
Show file tree
Hide file tree
Showing 47 changed files with 307 additions and 504 deletions.
12 changes: 1 addition & 11 deletions meta/image/boot/loader.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,16 @@
"name": "skiftOS",
"kernel": "bundle://hjert/_bin",
"blobs": [
"bundle://grund-audio/_bin",
"bundle://grund-audio/_meta.json",
"bundle://grund-av/_bin",
"bundle://grund-conf/_bin",
"bundle://grund-conf/_meta.json",
"bundle://grund-device/_bin",
"bundle://grund-device/_meta.json",
"bundle://grund-dhcp/_bin",
"bundle://grund-dhcp/_meta.json",
"bundle://grund-dns/_bin",
"bundle://grund-dns/_meta.json",
"bundle://grund-echo/_bin",
"bundle://grund-echo/_meta.json",
"bundle://grund-fs/_bin",
"bundle://grund-fs/_meta.json",
"bundle://grund-net/_bin",
"bundle://grund-net/_meta.json",
"bundle://grund-seat/_bin",
"bundle://grund-seat/_meta.json",
"bundle://grund-shell/_bin",
"bundle://grund-shell/_meta.json",
"bundle://grund-bus/_bin",
"bundle://skift-wallpapers/images/abstract.qoi",
"bundle://fonts-inter/fonts/Inter-Regular.ttf",
Expand Down
2 changes: 1 addition & 1 deletion meta/plugins/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

ensure((0, 7, 0))

from . import idl, start, tools # noqa E402, F401: Needed for side effect
from . import start, tools # noqa E402, F401: Needed for side effect
17 changes: 0 additions & 17 deletions meta/plugins/idl.py

This file was deleted.

1 change: 0 additions & 1 deletion meta/plugins/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
python-magic ~= 0.4.27
git+https://github.com/cute-engineering/[email protected]
git+https://github.com/cute-engineering/chatty
2 changes: 1 addition & 1 deletion src/impls/impl-skift/entry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
#include <handover/hook.h>
#include <hjert-api/api.h>
#include <karm-base/panic.h>
#include <karm-ipc/hook.h>
#include <karm-logger/logger.h>
#include <karm-sys/context.h>
#include <karm-sys/ipc.h>

#include "fd.h"

Expand Down
5 changes: 3 additions & 2 deletions src/libs/karm-io/pack.h
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,9 @@ struct Packer<T> {

static Res<T> unpack(PackScan &s) {
T res;
try$(iterFields(res, [&](auto, auto const &v) {
return Io::unpack(s, v);
try$(iterFields(res, [&]<typename U>(auto, U &v) -> Res<> {
v = try$(Io::unpack<U>(s));
return Ok();
}));
return Ok(res);
}
Expand Down
12 changes: 0 additions & 12 deletions src/libs/karm-ipc/base.h

This file was deleted.

15 changes: 0 additions & 15 deletions src/libs/karm-ipc/hook.h

This file was deleted.

84 changes: 0 additions & 84 deletions src/libs/karm-ipc/ipc.cpp

This file was deleted.

138 changes: 0 additions & 138 deletions src/libs/karm-ipc/ipc.h

This file was deleted.

9 changes: 0 additions & 9 deletions src/libs/karm-ipc/manifest.json

This file was deleted.

Loading

0 comments on commit 4f17a11

Please sign in to comment.