|
|
@ -26,6 +26,76 @@ endchoice |
|
|
|
|
|
|
|
if BR2_ROOTFS_SKELETON_CUSTOM |
|
|
|
|
|
|
|
choice |
|
|
|
prompt "Choose Ubuntu or Debian" |
|
|
|
default BR2_ROOTFS_SKELETON_UBUNTU |
|
|
|
|
|
|
|
config BR2_ROOTFS_SKELETON_UBUNTU |
|
|
|
bool "custom target skeleton is ubuntu" |
|
|
|
help |
|
|
|
Custom target skeleton is ubuntu. |
|
|
|
|
|
|
|
if BR2_ROOTFS_SKELETON_UBUNTU |
|
|
|
|
|
|
|
choice |
|
|
|
prompt "Choose Ubuntu version" |
|
|
|
default BR2_ROOTFS_SKELETON_UBUNTU_JAMMY |
|
|
|
|
|
|
|
config BR2_ROOTFS_SKELETON_UBUNTU_JAMMY |
|
|
|
bool "Ubuntu 22.04" |
|
|
|
help |
|
|
|
Ubuntu 22.04 LTS (Jammy Jellyfish) |
|
|
|
|
|
|
|
config BR2_ROOTFS_SKELETON_UBUNTU_FOCAL |
|
|
|
bool "Ubuntu 20.04" |
|
|
|
help |
|
|
|
Ubuntu 20.04 LTS (Focal Fossa) |
|
|
|
|
|
|
|
endchoice |
|
|
|
|
|
|
|
endif |
|
|
|
|
|
|
|
config BR2_ROOTFS_SKELETON_DEBIAN |
|
|
|
bool "custom target skeleton is debian" |
|
|
|
help |
|
|
|
Custom target skeleton is debian. |
|
|
|
|
|
|
|
endchoice |
|
|
|
|
|
|
|
config BR2_PACKAGE_ROOTFS_DESKTOP |
|
|
|
bool "Ubuntu or Debian desktop" |
|
|
|
help |
|
|
|
Ubuntu or Debian desktop. |
|
|
|
|
|
|
|
config BR2_TARGET_GENERIC_HOSTNAME |
|
|
|
string "System hostname" |
|
|
|
default "buildroot" |
|
|
|
help |
|
|
|
Select system hostname to be stored in /etc/hostname. |
|
|
|
|
|
|
|
Leave empty to not create /etc/hostname, or to keep the |
|
|
|
one from a custom skeleton. |
|
|
|
|
|
|
|
config BR2_ROOTFS_LINUX_HEADERS |
|
|
|
bool "custom kernel headers" |
|
|
|
help |
|
|
|
Custom kernel headers for Ubuntu or Debian. |
|
|
|
|
|
|
|
config BR2_ROOTFS_POST_CUSTOM_SKELETON_SCRIPT |
|
|
|
string "Custom scripts to run before using custom skeleton" |
|
|
|
default "" |
|
|
|
help |
|
|
|
Specify a space-separated list of scripts to be run after the download |
|
|
|
and unzip has finished and before Buildroot starts using the custom skeleton. |
|
|
|
|
|
|
|
This gives users the opportunity to do board/skeleton specific configuration, |
|
|
|
add-ons and the like, so the generated files can be used directly |
|
|
|
without further processing. |
|
|
|
|
|
|
|
These scripts are called with the build directory name |
|
|
|
as first argument. Make sure the exit code of those scripts are 0, otherwise |
|
|
|
make will stop after calling them. |
|
|
|
|
|
|
|
config BR2_ROOTFS_SKELETON_CUSTOM_PATH |
|
|
|
string "custom target skeleton path" |
|
|
|
help |
|
|
@ -605,6 +675,10 @@ config BR2_ROOTFS_USERS_TABLES |
|
|
|
|
|
|
|
See manual for details on the usage and syntax of these files. |
|
|
|
|
|
|
|
config BR2_ROOTFS_CHOWN |
|
|
|
bool "Install rootfs-chown service" |
|
|
|
select BR2_PACKAGE_ROOTFS_CHOWN |
|
|
|
|
|
|
|
config BR2_ROOTFS_OVERLAY |
|
|
|
string "Root filesystem overlay directories" |
|
|
|
default "" |
|
|
|