mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 10:55:46 -05:00
Merge branch 'simplify-module-desc'
This commit is contained in:
commit
2fdccdf090
24 changed files with 172 additions and 160 deletions
|
@ -15,7 +15,7 @@ project( calamares CXX )
|
||||||
|
|
||||||
cmake_minimum_required( VERSION 3.2 )
|
cmake_minimum_required( VERSION 3.2 )
|
||||||
|
|
||||||
set( CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMakeModules" )
|
set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/CMakeModules" )
|
||||||
|
|
||||||
set( CMAKE_CXX_STANDARD 14 )
|
set( CMAKE_CXX_STANDARD 14 )
|
||||||
set( CMAKE_CXX_STANDARD_REQUIRED ON )
|
set( CMAKE_CXX_STANDARD_REQUIRED ON )
|
||||||
|
@ -180,12 +180,7 @@ configure_file(
|
||||||
)
|
)
|
||||||
|
|
||||||
# Early configure these files as we need them later on
|
# Early configure these files as we need them later on
|
||||||
configure_file( CalamaresUse.cmake.in "${PROJECT_BINARY_DIR}/CalamaresUse.cmake" @ONLY )
|
set( CALAMARES_CMAKE_DIR "${CMAKE_SOURCE_DIR}/CMakeModules" )
|
||||||
file( COPY CalamaresAddLibrary.cmake DESTINATION "${PROJECT_BINARY_DIR}" )
|
|
||||||
file( COPY CalamaresAddModuleSubdirectory.cmake DESTINATION "${PROJECT_BINARY_DIR}" )
|
|
||||||
file( COPY CalamaresAddPlugin.cmake DESTINATION "${PROJECT_BINARY_DIR}" )
|
|
||||||
file( COPY CalamaresAddBrandingSubdirectory.cmake DESTINATION "${PROJECT_BINARY_DIR}" )
|
|
||||||
|
|
||||||
set( CALAMARES_LIBRARIES calamares )
|
set( CALAMARES_LIBRARIES calamares )
|
||||||
|
|
||||||
set( THIRDPARTY_DIR "${CMAKE_SOURCE_DIR}/thirdparty" )
|
set( THIRDPARTY_DIR "${CMAKE_SOURCE_DIR}/thirdparty" )
|
||||||
|
@ -231,11 +226,10 @@ install(
|
||||||
FILES
|
FILES
|
||||||
"${PROJECT_BINARY_DIR}/CalamaresConfig.cmake"
|
"${PROJECT_BINARY_DIR}/CalamaresConfig.cmake"
|
||||||
"${PROJECT_BINARY_DIR}/CalamaresConfigVersion.cmake"
|
"${PROJECT_BINARY_DIR}/CalamaresConfigVersion.cmake"
|
||||||
"${PROJECT_BINARY_DIR}/CalamaresUse.cmake"
|
"CmakeModules/CalamaresAddPlugin.cmake"
|
||||||
"${PROJECT_BINARY_DIR}/CalamaresAddPlugin.cmake"
|
"CmakeModules/CalamaresAddModuleSubdirectory.cmake"
|
||||||
"${PROJECT_BINARY_DIR}/CalamaresAddModuleSubdirectory.cmake"
|
"CmakeModules/CalamaresAddLibrary.cmake"
|
||||||
"${PROJECT_BINARY_DIR}/CalamaresAddLibrary.cmake"
|
"CmakeModules/CalamaresAddBrandingSubdirectory.cmake"
|
||||||
"${PROJECT_BINARY_DIR}/CalamaresAddBrandingSubdirectory.cmake"
|
|
||||||
DESTINATION
|
DESTINATION
|
||||||
"${CMAKE_INSTALL_CMAKEDIR}"
|
"${CMAKE_INSTALL_CMAKEDIR}"
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,8 +1,13 @@
|
||||||
if(NOT WIN32)
|
if(NOT WIN32)
|
||||||
# [ -t 2 ] tests whether stderr is interactive.
|
set(_use_color ON)
|
||||||
# The negation '!' is because for POSIX shells, 0 is true and 1 is false.
|
if("0" STREQUAL "$ENV{CLICOLOR}")
|
||||||
execute_process(COMMAND test ! -t 2 RESULT_VARIABLE IS_STDERR_INTERACTIVE)
|
set(_use_color OFF)
|
||||||
if(IS_STDERR_INTERACTIVE)
|
endif()
|
||||||
|
if("0" STREQUAL "$ENV{CLICOLOR_FORCE}")
|
||||||
|
set(_use_color OFF)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(_use_color)
|
||||||
string(ASCII 27 Esc)
|
string(ASCII 27 Esc)
|
||||||
set(ColorReset "${Esc}[m")
|
set(ColorReset "${Esc}[m")
|
||||||
set(ColorBold "${Esc}[1m")
|
set(ColorBold "${Esc}[1m")
|
||||||
|
@ -20,5 +25,5 @@ if(NOT WIN32)
|
||||||
set(BoldMagenta "${Esc}[1;35m")
|
set(BoldMagenta "${Esc}[1;35m")
|
||||||
set(BoldCyan "${Esc}[1;36m")
|
set(BoldCyan "${Esc}[1;36m")
|
||||||
set(BoldWhite "${Esc}[1;37m")
|
set(BoldWhite "${Esc}[1;37m")
|
||||||
endif(IS_STDERR_INTERACTIVE)
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
|
@ -1,5 +1,28 @@
|
||||||
|
# Convenience function for creating a C++ (qtplugin) module for Calamares.
|
||||||
|
# This function provides cmake-time feedback about the plugin, adds
|
||||||
|
# targets for compilation and boilerplate information, and creates
|
||||||
|
# a module.desc with standard values if none is provided (which only
|
||||||
|
# happens for very unusual plugins).
|
||||||
|
#
|
||||||
|
# Usage:
|
||||||
|
#
|
||||||
|
# calamaers_add_plugin(
|
||||||
|
# module-name
|
||||||
|
# TYPE <view|job>
|
||||||
|
# EXPORT_MACRO macro-name
|
||||||
|
# SOURCES source-file...
|
||||||
|
# UI ui-file...
|
||||||
|
# LINK_LIBRARIES lib...
|
||||||
|
# LINK_PRIVATE_LIBRARIES lib...
|
||||||
|
# COMPILE_DEFINITIONS def...
|
||||||
|
# RESOURCES resource-file
|
||||||
|
# [NO_INSTALL]
|
||||||
|
# [SHARED_LIB]
|
||||||
|
# )
|
||||||
|
|
||||||
include( CMakeParseArguments )
|
include( CMakeParseArguments )
|
||||||
include( ${CALAMARES_CMAKE_DIR}/CalamaresAddLibrary.cmake )
|
include( CalamaresAddLibrary )
|
||||||
|
include( CMakeColors )
|
||||||
|
|
||||||
function( calamares_add_plugin )
|
function( calamares_add_plugin )
|
||||||
# parse arguments ( name needs to be saved before passing ARGN into the macro )
|
# parse arguments ( name needs to be saved before passing ARGN into the macro )
|
||||||
|
@ -17,7 +40,6 @@ function( calamares_add_plugin )
|
||||||
set( CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" )
|
set( CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" )
|
||||||
set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" )
|
set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" )
|
||||||
|
|
||||||
include( CMakeColors )
|
|
||||||
message( "-- ${BoldYellow}Found ${CALAMARES_APPLICATION_NAME} module: ${BoldRed}${PLUGIN_NAME}${ColorReset}" )
|
message( "-- ${BoldYellow}Found ${CALAMARES_APPLICATION_NAME} module: ${BoldRed}${PLUGIN_NAME}${ColorReset}" )
|
||||||
if( NOT CMAKE_BUILD_TYPE STREQUAL "Release" )
|
if( NOT CMAKE_BUILD_TYPE STREQUAL "Release" )
|
||||||
message( " ${Green}TYPE:${ColorReset} ${PLUGIN_TYPE}" )
|
message( " ${Green}TYPE:${ColorReset} ${PLUGIN_TYPE}" )
|
||||||
|
@ -83,7 +105,15 @@ function( calamares_add_plugin )
|
||||||
|
|
||||||
calamares_add_library( ${calamares_add_library_args} )
|
calamares_add_library( ${calamares_add_library_args} )
|
||||||
|
|
||||||
|
if ( EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${PLUGIN_DESC_FILE} )
|
||||||
configure_file( ${PLUGIN_DESC_FILE} ${PLUGIN_DESC_FILE} COPYONLY )
|
configure_file( ${PLUGIN_DESC_FILE} ${PLUGIN_DESC_FILE} COPYONLY )
|
||||||
|
else()
|
||||||
|
set( _file ${CMAKE_CURRENT_BINARY_DIR}/${PLUGIN_DESC_FILE} )
|
||||||
|
set( _type ${PLUGIN_TYPE} )
|
||||||
|
file( WRITE ${_file} "# AUTO-GENERATED metadata file\n# Syntax is YAML 1.2\n---\n" )
|
||||||
|
file( APPEND ${_file} "type: \"${_type}\"\nname: \"${PLUGIN_NAME}\"\ninterface: \"qtplugin\"\nload: \"lib${target}.so\"\n" )
|
||||||
|
endif()
|
||||||
|
|
||||||
install( FILES ${CMAKE_CURRENT_BINARY_DIR}/${PLUGIN_DESC_FILE}
|
install( FILES ${CMAKE_CURRENT_BINARY_DIR}/${PLUGIN_DESC_FILE}
|
||||||
DESTINATION ${PLUGIN_DESTINATION} )
|
DESTINATION ${PLUGIN_DESTINATION} )
|
||||||
|
|
|
@ -1,12 +0,0 @@
|
||||||
#FIXME: this duplicates top level cmakelists: how can we reduce code duplication?
|
|
||||||
|
|
||||||
find_package( Qt5 5.3.0 CONFIG REQUIRED Core Gui Widgets LinguistTools )
|
|
||||||
|
|
||||||
if(NOT CALAMARES_CMAKE_DIR)
|
|
||||||
set(CALAMARES_CMAKE_DIR ${CMAKE_CURRENT_LIST_DIR})
|
|
||||||
endif()
|
|
||||||
|
|
||||||
include( "${CALAMARES_CMAKE_DIR}/CalamaresAddLibrary.cmake" )
|
|
||||||
include( "${CALAMARES_CMAKE_DIR}/CalamaresAddModuleSubdirectory.cmake" )
|
|
||||||
include( "${CALAMARES_CMAKE_DIR}/CalamaresAddPlugin.cmake" )
|
|
||||||
include( "${CALAMARES_CMAKE_DIR}/CalamaresAddBrandingSubdirectory.cmake" )
|
|
|
@ -1,4 +1,7 @@
|
||||||
include( ${PROJECT_BINARY_DIR}/CalamaresUse.cmake )
|
include( CalamaresAddPlugin )
|
||||||
|
include( CalamaresAddModuleSubdirectory )
|
||||||
|
include( CalamaresAddLibrary )
|
||||||
|
include( CalamaresAddBrandingSubdirectory )
|
||||||
|
|
||||||
include_directories( ${CMAKE_CURRENT_BINARY_DIR}/libcalamares )
|
include_directories( ${CMAKE_CURRENT_BINARY_DIR}/libcalamares )
|
||||||
include_directories( ${CMAKE_CURRENT_LIST_DIR}/libcalamares )
|
include_directories( ${CMAKE_CURRENT_LIST_DIR}/libcalamares )
|
||||||
|
|
|
@ -76,7 +76,7 @@ Module::fromDescriptor( const QVariantMap& moduleDescriptor,
|
||||||
<< instanceId;
|
<< instanceId;
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
if ( typeString == "view" )
|
if ( ( typeString == "view" ) || ( typeString == "viewmodule" ) )
|
||||||
{
|
{
|
||||||
if ( intfString == "qtplugin" )
|
if ( intfString == "qtplugin" )
|
||||||
{
|
{
|
||||||
|
@ -90,6 +90,8 @@ Module::fromDescriptor( const QVariantMap& moduleDescriptor,
|
||||||
cLog() << "PythonQt modules are not supported in this version of Calamares.";
|
cLog() << "PythonQt modules are not supported in this version of Calamares.";
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
cLog() << "Bad interface" << intfString << "for module type" << typeString;
|
||||||
}
|
}
|
||||||
else if ( typeString == "job" )
|
else if ( typeString == "job" )
|
||||||
{
|
{
|
||||||
|
@ -109,7 +111,12 @@ Module::fromDescriptor( const QVariantMap& moduleDescriptor,
|
||||||
cLog() << "Python modules are not supported in this version of Calamares.";
|
cLog() << "Python modules are not supported in this version of Calamares.";
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
cLog() << "Bad interface" << intfString << "for module type" << typeString;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
cLog() << "Bad module type" << typeString;
|
||||||
|
|
||||||
if ( !m )
|
if ( !m )
|
||||||
{
|
{
|
||||||
cLog() << "Bad module type (" << typeString
|
cLog() << "Bad module type (" << typeString
|
||||||
|
|
|
@ -1,60 +1,119 @@
|
||||||
Calamares modules
|
# Calamares modules
|
||||||
===
|
|
||||||
|
Calamares modules are plugins that provide features like installer pages,
|
||||||
|
batch jobs, etc. An installer page (visible to the user) is called a "view",
|
||||||
|
while other modules are "jobs".
|
||||||
|
|
||||||
Calamares modules are plugins that provide features like installer pages, batch jobs, etc.
|
|
||||||
Each Calamares module lives in its own directory.
|
Each Calamares module lives in its own directory.
|
||||||
|
|
||||||
All modules are installed in `$DESTDIR/lib/calamares/modules`.
|
All modules are installed in `$DESTDIR/lib/calamares/modules`.
|
||||||
|
|
||||||
### Module directory and descriptor
|
# Module types
|
||||||
A Calamares module must have a *module descriptor file*, named `module.desc`, this file must be placed in the module's
|
|
||||||
directory.
|
|
||||||
The module descriptor file is a YAML 1.2 document which defines the module's name, type, interface and possibly other
|
|
||||||
properties. The name of the module as defined in `module.desc` must be the same as the name of the module's directory.
|
|
||||||
|
|
||||||
There are two types of Calamares module:
|
There are two types of Calamares module:
|
||||||
* viewmodule,
|
* viewmodule, for user-visible modules. These may be in C++, or PythonQt.
|
||||||
* jobmodule.
|
* jobmodule, for not-user-visible modules. These may be done in C++,
|
||||||
|
Python, or as external processes.
|
||||||
|
|
||||||
There are three interfaces for Calamares modules:
|
# Module interfaces
|
||||||
|
|
||||||
|
There are three (four) interfaces for Calamares modules:
|
||||||
* qtplugin,
|
* qtplugin,
|
||||||
* python,
|
* python (jobmodules only),
|
||||||
* process.
|
* pythonqt (optional),
|
||||||
|
* process (jobmodules only).
|
||||||
|
|
||||||
### Module-specific configuration
|
# Module directory
|
||||||
A Calamares module *may* read a module configuration file, named `<modulename>.conf`. If such a file is present in the
|
|
||||||
|
Each Calamares module lives in its own directory. The contents
|
||||||
|
of the directory depend on the interface and type of the module.
|
||||||
|
|
||||||
|
## Module descriptor
|
||||||
|
|
||||||
|
A Calamares module must have a *module descriptor file*, named
|
||||||
|
`module.desc`. For C++ (qtplugin) modules using CMake as a build-
|
||||||
|
system and using the calamares_add_plugin() function -- this is the
|
||||||
|
recommended way to create such modules -- the module descriptor
|
||||||
|
file is optional, since it can be generated by the build system.
|
||||||
|
For other module interfaces, the module descriptor file is required.
|
||||||
|
|
||||||
|
The module descriptor file must be placed in the module's directory.
|
||||||
|
The module descriptor file is a YAML 1.2 document which defines the
|
||||||
|
module's name, type, interface and possibly other properties. The name
|
||||||
|
of the module as defined in `module.desc` must be the same as the name
|
||||||
|
of the module's directory.
|
||||||
|
|
||||||
|
## Module-specific configuration
|
||||||
|
|
||||||
|
A Calamares module *may* read a module configuration file,
|
||||||
|
named `<modulename>.conf`. If such a file is present in the
|
||||||
module's directory, it is shipped as a *default* configuration file.
|
module's directory, it is shipped as a *default* configuration file.
|
||||||
The module configuration file, if it exists, is a YAML 1.2 document which contains a YAML map of anything.
|
The module configuration file, if it exists, is a YAML 1.2 document
|
||||||
All default module configuration files are installed in `$DESTDIR/share/calamares/modules` but can be overridden by
|
which contains a YAML map of anything.
|
||||||
files with the same name placed manually (or by the packager) in `/etc/calamares/modules`.
|
|
||||||
|
|
||||||
### Qt plugin viewmodules
|
All default module configuration files are installed in
|
||||||
|
`$DESTDIR/share/calamares/modules` but can be overridden by
|
||||||
|
files with the same name placed manually (or by the packager)
|
||||||
|
in `/etc/calamares/modules`.
|
||||||
|
|
||||||
Currently the only way to write a module which exposes one or more installer pages (viewmodule) is through a Qt plugin.
|
## C++ modules
|
||||||
Viewmodules should implement `Calamares::ViewStep`. They can also implement `Calamares::Job` to provide jobs.
|
|
||||||
|
|
||||||
To add a Qt plugin module, put it in a subdirectory and make sure it has a `module.desc` and a `CMakeLists.txt` with a
|
Currently the recommended way to write a module which exposes one or more
|
||||||
`calamares_add_plugin` call. It will be picked up automatically by our CMake magic.
|
installer pages (viewmodule) is through a C++ and Qt plugin. Viewmodules must
|
||||||
|
implement `Calamares::ViewStep`. They can also implement `Calamares::Job`
|
||||||
|
to provide jobs.
|
||||||
|
|
||||||
|
To add a Qt plugin module, put it in a subdirectory and make sure it has
|
||||||
|
a `CMakeLists.txt` with a `calamares_add_plugin` call. It will be picked
|
||||||
|
up automatically by our CMake magic. The `module.desc` file is optional.
|
||||||
|
|
||||||
### Python and process jobmodules
|
## Python modules
|
||||||
|
|
||||||
Batch jobs for Calamares can be written as Python scripts or as generic commands (shell scripts, external programs, etc.).
|
Modules may use one of the python interfaces, which may be present
|
||||||
To add a Python or process jobmodule, put it in a subdirectory and make sure it has a `module.desc`.
|
in a Calamares installation (but also may not be). These modules must have
|
||||||
It will be picked up automatically by our CMake magic.
|
a `module.desc` file. The Python script must implement one or more of the
|
||||||
|
Python interfaces for Calamares -- either the python jobmodule interface,
|
||||||
|
or the experimental pythonqt job- and viewmodule interfaces.
|
||||||
|
|
||||||
|
To add a Python or process jobmodule, put it in a subdirectory and make sure
|
||||||
|
it has a `module.desc`. It will be picked up automatically by our CMake magic.
|
||||||
|
|
||||||
`CMakeLists.txt` is *not* used for Python and process jobmodules.
|
`CMakeLists.txt` is *not* used for Python and process jobmodules.
|
||||||
|
|
||||||
A Python jobmodule is a Python program which imports libcalamares and has a function `run()` as entry point.
|
Calamares offers a Python API for module developers, the core Calamares
|
||||||
`run()` must return `None` if everything went well, or a tuple `(str,str)` with an error message and description if
|
functionality is exposed as `libcalamares.job` for job data,
|
||||||
something went wrong.
|
`libcalamares.globalstorage` for shared data and `libcalamares.utils` for
|
||||||
|
generic utility functions. Documentation is inline.
|
||||||
|
|
||||||
Calamares offers a Python API for module developers, the core Calamares functionality is exposed as `libcalamares.job`
|
All code in Python job modules must obey PEP8, the only exception are
|
||||||
for job data, `libcalamares.globalstorage` for shared data and `libcalamares.utils` for generic utility functions.
|
`libcalamares.globalstorage` keys, which should always be
|
||||||
Documentation is inline.
|
camelCaseWithLowerCaseInitial to match the C++ identifier convention.
|
||||||
|
|
||||||
All code in Python job modules must obey PEP8, the only exception are `libcalamares.globalstorage` keys, which should
|
For testing and debugging we provide the `testmodule.py` script which
|
||||||
always be camelCaseWithLowerCaseInitial.
|
fakes a limited Calamares Python environment for running a single jobmodule.
|
||||||
|
|
||||||
|
### Python Jobmodule
|
||||||
|
|
||||||
|
A Python jobmodule is a Python program which imports libcalamares and has a
|
||||||
|
function `run()` as entry point. The function `run()` must return `None` if
|
||||||
|
everything went well, or a tuple `(str,str)` with an error message and
|
||||||
|
description if something went wrong.
|
||||||
|
|
||||||
|
### PythonQt Jobmodule
|
||||||
|
|
||||||
|
A PythonQt jobmodule implements the experimental Job interface by defining
|
||||||
|
a subclass of something.
|
||||||
|
|
||||||
|
### PythonQt Viewmodule
|
||||||
|
|
||||||
|
A PythonQt viewmodule implements the experimental View interface by defining
|
||||||
|
a subclass of something.
|
||||||
|
|
||||||
|
## Process jobmodules
|
||||||
|
|
||||||
|
A process jobmodule runs a (single) command. The interface is "process",
|
||||||
|
while the module type must be "job" or "jobmodule".
|
||||||
|
|
||||||
|
The key *command* should have a string as value, which is passed to the
|
||||||
|
shell -- remember to quote it properly.
|
||||||
|
|
||||||
For testing and debugging we provide the `testmodule.py` script which fakes a limited Calamares Python environment for
|
|
||||||
running a single jobmodule.
|
|
|
@ -1,7 +0,0 @@
|
||||||
# Module metadata file for dracutlukscfg job
|
|
||||||
# Syntax is YAML 1.2
|
|
||||||
---
|
|
||||||
type: "job"
|
|
||||||
name: "dracutlukscfg"
|
|
||||||
interface: "qtplugin"
|
|
||||||
load: "libcalamares_job_dracutlukscfg.so"
|
|
|
@ -1,5 +1,18 @@
|
||||||
# Module metadata file for dummycpp job
|
# Module metadata file for dummycpp job
|
||||||
|
#
|
||||||
|
# The metadata for C++ (qtplugin) plugins is almost never interesting:
|
||||||
|
# the CMakeLists.txt should be using calamares_add_plugin() which will
|
||||||
|
# generate the metadata file during the build. Only C++ plugins that
|
||||||
|
# have strange settings should have a module.desc (non-C++ plugins,
|
||||||
|
# on the other hand, must have one, since they don't have CMakeLists.txt).
|
||||||
|
#
|
||||||
# Syntax is YAML 1.2
|
# Syntax is YAML 1.2
|
||||||
|
#
|
||||||
|
# All four keys are mandatory. For C++ (qtplugin) modules, the interface
|
||||||
|
# value must be "qtplugin"; type is one of "job" or "view"; the name
|
||||||
|
# is the machine-identifier for the module and the load value should
|
||||||
|
# be the filename of the library that contains the implementation.
|
||||||
|
#
|
||||||
---
|
---
|
||||||
type: "job"
|
type: "job"
|
||||||
name: "dummycpp"
|
name: "dummycpp"
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
# Module metadata file for greeting viewmodule
|
|
||||||
# Syntax is YAML 1.2
|
|
||||||
---
|
|
||||||
type: "view" #core or view
|
|
||||||
name: "finished" #the module name. must be unique and same as the parent directory
|
|
||||||
interface: "qtplugin" #can be: qtplugin, python, process, ...
|
|
||||||
load: "libcalamares_viewmodule_finished.so"
|
|
|
@ -1,7 +0,0 @@
|
||||||
# Module metadata file for interactiveterminal viewmodule
|
|
||||||
# Syntax is YAML 1.2
|
|
||||||
---
|
|
||||||
type: "view"
|
|
||||||
name: "interactiveterminal"
|
|
||||||
interface: "qtplugin"
|
|
||||||
load: "libcalamares_viewmodule_interactiveterminal.so"
|
|
|
@ -1,7 +0,0 @@
|
||||||
# Module metadata file for keyboard viewmodule
|
|
||||||
# Syntax is YAML 1.2
|
|
||||||
---
|
|
||||||
type: "view"
|
|
||||||
name: "keyboard"
|
|
||||||
interface: "qtplugin"
|
|
||||||
load: "libcalamares_viewmodule_keyboard.so"
|
|
|
@ -1,7 +0,0 @@
|
||||||
# Module metadata file for keyboard viewmodule
|
|
||||||
# Syntax is YAML 1.2
|
|
||||||
---
|
|
||||||
type: "view"
|
|
||||||
name: "license"
|
|
||||||
interface: "qtplugin"
|
|
||||||
load: "libcalamares_viewmodule_license.so"
|
|
|
@ -1,7 +0,0 @@
|
||||||
# Module metadata file for locale viewmodule
|
|
||||||
# Syntax is YAML 1.2
|
|
||||||
---
|
|
||||||
type: "view"
|
|
||||||
name: "locale"
|
|
||||||
interface: "qtplugin"
|
|
||||||
load: "libcalamares_viewmodule_locale.so"
|
|
|
@ -1,7 +0,0 @@
|
||||||
# Module metadata file for netinstall module
|
|
||||||
# Syntax is YAML 1.2
|
|
||||||
---
|
|
||||||
type: "view"
|
|
||||||
name: "netinstall"
|
|
||||||
interface: "qtplugin"
|
|
||||||
load: "libcalamares_viewmodule_netinstall.so"
|
|
|
@ -1,7 +0,0 @@
|
||||||
# Module metadata file for partition viewmodule
|
|
||||||
# Syntax is YAML 1.2
|
|
||||||
---
|
|
||||||
type: "view" #core or view
|
|
||||||
name: "partition" #the module name. must be unique and same as the parent directory
|
|
||||||
interface: "qtplugin" #can be: qtplugin, python, process, ...
|
|
||||||
load: "libcalamares_viewmodule_partition.so"
|
|
|
@ -1,12 +0,0 @@
|
||||||
# Module metadata file for summary viewmodule
|
|
||||||
#
|
|
||||||
# The summary module tells the user what is going to happen (next)
|
|
||||||
# during the installation. Each other step is responsible for
|
|
||||||
# creating a summary widget that this step can display.
|
|
||||||
#
|
|
||||||
# Syntax is YAML 1.2
|
|
||||||
---
|
|
||||||
type: "view"
|
|
||||||
name: "summary"
|
|
||||||
interface: "qtplugin"
|
|
||||||
load: "libcalamares_viewmodule_summary.so"
|
|
|
@ -1,7 +0,0 @@
|
||||||
# Module metadata file for users viewmodule
|
|
||||||
# Syntax is YAML 1.2
|
|
||||||
---
|
|
||||||
type: "view" #core or view
|
|
||||||
name: "users" #the module name. must be unique and same as the parent directory
|
|
||||||
interface: "qtplugin" #can be: qtplugin, python, process, ...
|
|
||||||
load: "libcalamares_viewmodule_users.so"
|
|
|
@ -1,7 +0,0 @@
|
||||||
# Module metadata file for welcome viewmodule
|
|
||||||
# Syntax is YAML 1.2
|
|
||||||
---
|
|
||||||
type: "view" #core or view
|
|
||||||
name: "webview" #the module name. must be unique and same as the parent directory
|
|
||||||
interface: "qtplugin" #can be: qtplugin, python, process, ...
|
|
||||||
load: "libcalamares_viewmodule_webview.so"
|
|
|
@ -3,6 +3,8 @@ include_directories( ${PROJECT_BINARY_DIR}/src/libcalamaresui )
|
||||||
find_package( LIBPARTED REQUIRED )
|
find_package( LIBPARTED REQUIRED )
|
||||||
find_package( Qt5 ${QT_VERSION} CONFIG REQUIRED DBus Network )
|
find_package( Qt5 ${QT_VERSION} CONFIG REQUIRED DBus Network )
|
||||||
|
|
||||||
|
include_directories( ${PROJECT_BINARY_DIR}/src/libcalamaresui )
|
||||||
|
|
||||||
set_source_files_properties( checker/partman_devices.c PROPERTIES LANGUAGE CXX )
|
set_source_files_properties( checker/partman_devices.c PROPERTIES LANGUAGE CXX )
|
||||||
|
|
||||||
set( CHECKER_SOURCES
|
set( CHECKER_SOURCES
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
# Module metadata file for welcome viewmodule
|
|
||||||
# Syntax is YAML 1.2
|
|
||||||
---
|
|
||||||
type: "view" #core or view
|
|
||||||
name: "welcome" #the module name. must be unique and same as the parent directory
|
|
||||||
interface: "qtplugin" #can be: qtplugin, python, process, ...
|
|
||||||
load: "libcalamares_viewmodule_welcome.so"
|
|
Loading…
Add table
Reference in a new issue