mirror of
https://github.com/commaai/agnos-builder.git
synced 2026-08-07 09:15:44 +08:00
a765dc1759
* cleanup apt hook * Move VERSION into rootfs overlay * Use broad rootfs overlay copy
18 lines
394 B
Plaintext
18 lines
394 B
Plaintext
APT::Install-Suggests “0”;
|
|
APT::Install-Recommends “0”;
|
|
|
|
APT::Install {
|
|
Pre-Invoke { "/usr/comma/apt_setup.sh"; };
|
|
Post-Invoke { "/usr/comma/apt_teardown.sh"; };
|
|
};
|
|
|
|
APT::Update {
|
|
Pre-Invoke { "/usr/comma/apt_setup.sh"; };
|
|
Post-Invoke { "/usr/comma/apt_teardown.sh"; };
|
|
};
|
|
|
|
DPkg {
|
|
Pre-Invoke { "/usr/comma/apt_setup.sh"; };
|
|
Post-Invoke { "/usr/comma/apt_teardown.sh"; };
|
|
};
|