1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-16 20:21:32 +03:00
mobile-nixos/bin/menuconfig
Samuel Dionne-Riel bbc73e40ed bin/menuconfig: Normalize after updating the kernel config
This is needed because the build environment differs in the kernel
normalization step compared to the build step.
2020-09-30 02:11:47 -04:00

78 lines
1.6 KiB
Ruby
Executable File
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env nix-shell
#!nix-shell -p ruby -i ruby
require "shellwords"
ROOT = File.join(__dir__, "..")
def usage()
puts "Usage: #{$PROGRAM_NAME} [--only-save] <device_name>"
end
# Poor approximation to arguments parsing.
params, other_args = ARGV.partition { |s| s.match(/^--/) }
if other_args.empty?
$stderr.puts "Device name required."
usage
exit 1
end
DEVICE = other_args.shift
FILE =
# Is the device a path?
if DEVICE.match(%r{/})
Dir.glob(File.join(DEVICE, "kernel", "config.*")).sort.first
else
Dir.glob(File.join(Dir.pwd, "devices", DEVICE, "kernel", "config.*")).sort.first
end
ONLY_SAVE = !!params.delete("--only-save")
unless params.empty?
$stderr.puts "Unknown parameters #{params.join(", ")}."
usage
exit 1
end
unless other_args.empty?
$stderr.puts "Unexpected arguments #{other_args.join(", ")}."
usage
exit 1
end
unless FILE
$stderr.puts "Could not find kernel configuration file for #{DEVICE}."
usage
exit 1
end
arg =
# Is the device a path?
if DEVICE.match(%r{/})
["--arg", "device", DEVICE]
else
["--argstr", "device", DEVICE]
end
Dir.chdir(ROOT) do
tool = File.join(`#{[
"nix-build",
"--no-out-link",
*arg,
"-A", "config.mobile.boot.stage-1.kernel.package.menuconfig"
].shelljoin}`.strip, "bin/nconf")
if ONLY_SAVE
# Equivalent to F9,Enter
`echo -e "[20~\n" | #{[tool, FILE].shelljoin}`
else
system(tool, FILE)
end
# Force normalize at the end. Otherwise recent kernels (5.8+) will have the wrong compiler data.
exec(File.join(ROOT, "bin", "kernel-normalize-config"), *ARGV)
end
# vim: ft=ruby