2024-10-03 12:41:31 +02:00
|
|
|
#!/bin/bash
|
2024-09-11 12:49:50 +02:00
|
|
|
set -e
|
|
|
|
make BR2_EXTERNAL=/buildroot-v86 v86_defconfig
|
|
|
|
mkdir output/legal-info && touch output/legal-info/{host-licenses,licenses,buildroot.config}
|
2024-09-17 19:02:07 +02:00
|
|
|
|
2024-09-11 12:49:50 +02:00
|
|
|
make menuconfig
|
2024-10-03 12:41:31 +02:00
|
|
|
|
|
|
|
test -d output/busybox-1.33.0 || mkdir -p output/busybox-1.33.0
|
|
|
|
cp /buildroot-v86/.config.busybox output/busybox-1.33.0/.config
|
2024-09-17 19:02:07 +02:00
|
|
|
make busybox-menuconfig
|
2024-10-23 18:51:56 +02:00
|
|
|
cp output/build/busybox-1.33.0/.config /buildroot-v86/.config.busybox
|
2024-10-03 12:41:31 +02:00
|
|
|
|
2024-09-11 12:49:50 +02:00
|
|
|
make linux-menuconfig
|
|
|
|
make savedefconfig
|
|
|
|
make linux-savedefconfig
|
|
|
|
make
|