diff options
author | Conrad Pankoff <deoxxa@fknsrs.biz> | 2019-06-04 20:54:27 +1000 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-04 03:54:27 -0700 |
commit | 738f9de9a9e30032183f59416af5695b15ed39fc (patch) | |
tree | 8a8a8012605b30ad6721a306abd0e5fcb375e77b /Kernel/Makefile | |
parent | 042895317df85cb5035c011c9d5bda5a823c971d (diff) | |
download | serenity-738f9de9a9e30032183f59416af5695b15ed39fc.zip |
Kernel: Add KParams class for accessing kernel cmdline parameters (#188)
Diffstat (limited to 'Kernel/Makefile')
-rw-r--r-- | Kernel/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/Makefile b/Kernel/Makefile index ac124001d7..3479d8eed2 100644 --- a/Kernel/Makefile +++ b/Kernel/Makefile @@ -32,6 +32,7 @@ KERNEL_OBJS = \ Scheduler.o \ DoubleBuffer.o \ KSyms.o \ + KParams.o \ SharedMemory.o \ FileSystem/DevPtsFS.o \ Devices/BXVGADevice.o \ |