Skip to content

reclone/kconfig-frontends-win32

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code
This branch is 11 commits ahead of uvc-ingenieure:master.

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
This package contains the kconfig frontends and parser.

Kconfig is the configuration language used by the Linux kernel. This package
is a simple copy of the frontends and the parser found in the Linux kernel
source tree, with very minor changes to adapt them to being built out of
the kernel build infrastructure.

This package has been ported to Windows, so the code has been changed to get
it work properly. The package also contains a copy PDCurses with some minor
changes. By now only the following tools have been ported:
 - kconfig-conf
 - kconfig-mconf
 - kconfig-tweak (as a .bat file)

Under non Windows platforms use the original package from:
http://ymorin.is-a-geek.org/projects/kconfig-frontends


General Build Instructions

Install MinGW, CMake, and GnuWin32 (using GetGnuWin32).
Add C:\MinGW\bin;C:\gnuwin32\bin to the %Path% environment variable.
Add C:\gnuwin32\include to the %INCLUDE% environment variable.
Add C:\gnuwin32\lib to the %LIB% environemnt variable.

git clone https://github.com/reclone/kconfig-frontends-win32.git
cd kconfig-frontends-win32
mkdir build
cd build
cmake -G "MinGW Makefiles" ..
make

cp ./bin/kconfig-mconf.exe c:/gnuwin32/bin/
cp ./bin/kconfig-conf.exe c:/gnuwin32/bin/
cp ../utils/kconfig-tweak.bat c:/gnuwin32/bin

About

Linux Kernel configuration tools - Windows Port

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 85.0%
  • C++ 3.8%
  • Makefile 3.5%
  • CMake 2.1%
  • M4 1.7%
  • Shell 1.5%
  • Other 2.4%