|
Line
Link Here
|
| 0 |
-- scripts/boot-start.sh |
0 |
++ scripts/boot-start.sh |
|
Lines 59-65
Link Here
|
| 59 |
|
59 |
|
| 60 |
# kernel commandline parsing |
60 |
# kernel commandline parsing |
| 61 |
for o in $(cat /proc/cmdline); do |
61 |
for o in $(cat /proc/cmdline); do |
| 62 |
key="${o%=*}" |
62 |
key="${o%%=*}" |
| 63 |
if [ "${key%.*}" != "${key}" ]; then # module parameter |
63 |
if [ "${key%.*}" != "${key}" ]; then # module parameter |
| 64 |
add_module_param "${key%.*}" "${o#*.}" |
64 |
add_module_param "${key%.*}" "${o#*.}" |
| 65 |
else # environment variable |
65 |
else # environment variable |