16 lines
442 B
Bash
Executable File
16 lines
442 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
export BR2_EXTERNAL=/buildroot-v86
|
|
export BR2_PACKAGE_BUSYBOX_CONFIG=/buildroot-v86/configs/busybox.config
|
|
make v86_defconfig
|
|
|
|
make menuconfig
|
|
make busybox-menuconfig
|
|
make linux-menuconfig
|
|
make savedefconfig # /buildroot-v86/configs/v86_defconfig
|
|
make linux-savedefconfig
|
|
make linux-update-defconfig # /buildroot-v86/configs/linux.config
|
|
make busybox-update-defconfig # /buildroot-v86/configs/linux.config
|
|
|
|
make
|