Skip to content

Commit 37b3d33

Browse files
committed
Use menuconfig for kernel edits
1 parent ca21e60 commit 37b3d33

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

copyImage.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ fi
4343

4444
export SOURCE_TARGET
4545
export BOOT_TARGET
46+
export KERNEL_RELEASE
4647

4748
# E Option carries over environment variables
4849
sudo -E ./scripts/copyImage.sh

editConfig.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ if [ ! -d "$PROPOSED_SRC_PATH" ]; then
4747
fi
4848

4949
cd "$PROPOSED_SRC_PATH"
50-
sudo make gconfig
50+
sudo make menuconfig

scripts/getKernelSources.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
apt-add-repository universe
44
apt-get update
55
apt-get install pkg-config -y
6-
# We use 'make gconfig' to edit the .config file
7-
apt-get install libgtk2.0-dev libglib2.0-dev libglade2-dev
6+
# We use 'make menuconfig' to edit the .config file; install dependencies
7+
apt-get install libncurses5-dev
88
echo "Installing kernel sources in: ""$SOURCE_TARGET"
99
if [ ! -d "$SOURCE_TARGET" ]; then
1010
# Target directory does not exist; create

0 commit comments

Comments
 (0)