Skip to content
forked from lua/lua

Lua in Kernel is a fork of the Lua interpreter for OS kernels

Notifications You must be signed in to change notification settings

luainkernel/lua

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Lua in Kernel

This is a fork of the Lua repository. For more information about Lua in Kernel, visit the Lunatik repository.

Here is a small guide on how to keep track of upstream changes:

export VERSION_BRANCH="v5.4"
export HEAD="e0efebdbe4e4053c6fb78588c546f1dc23aa964a" #v5.4.7-rc2

git fetch upstream ${VERSION_BRANCH}
git fetch origin lunatik

git checkout ${VERSION_BRANCH}-kernel
git pull origin ${VERSION_BRANCH}-kernel

git rebase origin/lunatik

git checkout -b tmp/${VERSION_BRANCH}
git branch -f ${VERSION_BRANCH}-kernel upstream/${VERSION_BRANCH}
git rebase --onto tmp/${VERSION_BRANCH} ${HEAD}~1 ${VERSION_BRANCH}-kernel

git branch -D tmp/${VERSION_BRANCH}

git checkout lunatik
git merge --ff-only ${VERSION_BRANCH}-kernel

About

Lua in Kernel is a fork of the Lua interpreter for OS kernels

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 67.3%
  • Lua 32.1%
  • Makefile 0.6%