Skip to content

Commit 929bc33

Browse files
committed
Upstream.
1 parent 5356344 commit 929bc33

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

_lib/ubiquitous_bash

ubiquitous_bash.sh

+20-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ _ub_cksum_special_derivativeScripts_contents() {
3636
#export ub_setScriptChecksum_disable='true'
3737
( [[ -e "$0".nck ]] || [[ "${BASH_SOURCE[0]}" != "${0}" ]] || [[ "$1" == '--profile' ]] || [[ "$1" == '--script' ]] || [[ "$1" == '--call' ]] || [[ "$1" == '--return' ]] || [[ "$1" == '--devenv' ]] || [[ "$1" == '--shell' ]] || [[ "$1" == '--bypass' ]] || [[ "$1" == '--parent' ]] || [[ "$1" == '--embed' ]] || [[ "$1" == '--compressed' ]] || [[ "$0" == "/bin/bash" ]] || [[ "$0" == "-bash" ]] || [[ "$0" == "/usr/bin/bash" ]] || [[ "$0" == "bash" ]] ) && export ub_setScriptChecksum_disable='true'
3838
export ub_setScriptChecksum_header='2591634041'
39-
export ub_setScriptChecksum_contents='1537401414'
39+
export ub_setScriptChecksum_contents='2382020892'
4040

4141
# CAUTION: Symlinks may cause problems. Disable this test for such cases if necessary.
4242
# WARNING: Performance may be crucial here.
@@ -13895,6 +13895,19 @@ _kernelConfig_require-convenience() {
1389513895
true
1389613896
}
1389713897

13898+
_kernelConfig_require-embedded() {
13899+
_messagePlain_nominal 'kernelConfig: embedded'
13900+
export kernelConfig_file="$1"
13901+
13902+
# Inspired by discussion with Chris Lombardi .
13903+
# https://github.com/clearchris
13904+
# https://github.com/torvalds/linux/commit/24bc41b4558347672a3db61009c339b1f5692169
13905+
_kernelConfig_warn-y_m CAN_GS_USB
13906+
_kernelConfig_warn-y__ CAN_RX_OFFLOAD
13907+
13908+
true
13909+
}
13910+
1389813911
_kernelConfig_require-special() {
1389913912
_messagePlain_nominal 'kernelConfig: special'
1390013913
export kernelConfig_file="$1"
@@ -14088,6 +14101,8 @@ _kernelConfig_panel() {
1408814101
_kernelConfig_require-investigation "$@"
1408914102

1409014103
_kernelConfig_require-convenience "$@"
14104+
14105+
_kernelConfig_require-embedded "$@"
1409114106

1409214107
_kernelConfig_require-special "$@"
1409314108

@@ -14128,6 +14143,8 @@ _kernelConfig_mobile() {
1412814143
_kernelConfig_require-investigation "$@"
1412914144

1413014145
_kernelConfig_require-convenience "$@"
14146+
14147+
_kernelConfig_require-embedded "$@"
1413114148

1413214149
_kernelConfig_require-special "$@"
1413314150

@@ -14169,6 +14186,8 @@ _kernelConfig_desktop() {
1416914186
_kernelConfig_require-investigation "$@"
1417014187

1417114188
_kernelConfig_require-convenience "$@"
14189+
14190+
_kernelConfig_require-embedded "$@"
1417214191

1417314192
_kernelConfig_require-special "$@"
1417414193

0 commit comments

Comments
 (0)