Don't use ``grep | sed'' in the example for INCLUDE_CONFIG_FILE
when sed can do both.
This commit is contained in:
parent
b42135dee3
commit
b44dfc0d29
@ -80,7 +80,7 @@ options PQ_LARGECACHE # color for 512k/16k cache
|
||||
|
||||
# This allows you to actually store this configuration file into
|
||||
# the kernel binary itself, where it may be later read by saying:
|
||||
# strings -aout -n 3 /kernel | grep ^___ | sed -e 's/^___//' > MYKERNEL
|
||||
# strings -n 3 /kernel | sed -n 's/^___//p' > MYKERNEL
|
||||
#
|
||||
options INCLUDE_CONFIG_FILE # Include this file in kernel
|
||||
|
||||
|
@ -80,7 +80,7 @@ options PQ_LARGECACHE # color for 512k/16k cache
|
||||
|
||||
# This allows you to actually store this configuration file into
|
||||
# the kernel binary itself, where it may be later read by saying:
|
||||
# strings -aout -n 3 /kernel | grep ^___ | sed -e 's/^___//' > MYKERNEL
|
||||
# strings -n 3 /kernel | sed -n 's/^___//p' > MYKERNEL
|
||||
#
|
||||
options INCLUDE_CONFIG_FILE # Include this file in kernel
|
||||
|
||||
|
@ -80,7 +80,7 @@ options PQ_LARGECACHE # color for 512k/16k cache
|
||||
|
||||
# This allows you to actually store this configuration file into
|
||||
# the kernel binary itself, where it may be later read by saying:
|
||||
# strings -aout -n 3 /kernel | grep ^___ | sed -e 's/^___//' > MYKERNEL
|
||||
# strings -n 3 /kernel | sed -n 's/^___//p' > MYKERNEL
|
||||
#
|
||||
options INCLUDE_CONFIG_FILE # Include this file in kernel
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user